1answer.
Ask question
Login Signup
Ask question
All categories
  • English
  • Mathematics
  • Social Studies
  • Business
  • History
  • Health
  • Geography
  • Biology
  • Physics
  • Chemistry
  • Computers and Technology
  • Arts
  • World Languages
  • Spanish
  • French
  • German
  • Advanced Placement (AP)
  • SAT
  • Medicine
  • Law
  • Engineering
musickatia [10]
2 years ago
6

A coil having resistance of 7 ohms and inductance of 31.8 mh is connected to 230v,50hz supply.calculate 1. The circuit current 2

.the phase angle, 3.power factor, 4 the power consumed
Engineering
1 answer:
lora16 [44]2 years ago
5 0

(1) The current in the circuit is 18.87 A,

(2) The phase angle is 54.97°

(3) The power factor is 0.574

(4) The power consumed is 2491.2 W

(1) To calculate the current in the circuit, first, we need to find the overall impedance of the circuit.

We can calculate the overall impendence of the circuit using the formula below.

  • Z = √[R²+(2πfL)²]........................ Equation 1

Where:

  • R = resistance of the coil
  • f = Frequency
  • L = Inductance of the coil
  • Z = Overall impedance of the circuit

From the question,

Given:

  • R = 7 ohms
  • L = 31.8 mH = 0.0318 H
  • f = 50 Hz
  • π = 3.14

Substitute these values into equation 1

  • Z = √[7²+(2×3.14×50×0.0318)²]
  • Z = √(49+99.7)
  • Z = √(148.7)
  • Z = 12.19 ohms.

Therefore we use the formula below to calculate the current in the circuit.

  • I = V/Z.................. Equation 2

Where:

  • V = Voltage
  • I = current in the circuit.

Given:

  • V = 230 V.

Substitute into equation 2

  • I = 230/12.19
  • I = 18.87 A

(2) To calculate the phase angle, we use the formula below.

  • ∅ = tan⁻¹(2πfL/R)............... Equation 3

Where:

  • ∅ = Phase angle.


Substitute into equation 3

  • ∅ = tan⁻¹(2×3.14×50×0.0318/7)
  • ∅ = tan⁻¹(9.9852/7)
  • ∅ = tan⁻¹(1.426)
  • ∅ = 54.97°

(3) To calculate the power factor, we use the formula below.

  • pf = cos∅............ Equation 4

Where:

  • pf = power factor.

Substitute the value of ∅ into equation 4

  • pf = cos(54.97°)
  • pf = 0.574.

(4) And Finally to calculate the power consumed we use the formula below.

  • P = V×I×pf................ Equation 5

Where:

  • P = The power consumed

Substitute the values into equation 5

  • P = 230(18.87)(0.574)
  • P = 2491.22 W


Hence, (1) The current in the circuit is 18.87 A, (2) The phase angle is 54.97° (3) The power factor is 0.574 (4) The power consumed is 2491.2 W

Learn more about Impedance here: brainly.com/question/13134405

You might be interested in
A cylinder with a piston restrained by a linear spring contains 2 kg of carbon dioxide at 500 kPa and 400°C. It is cooled to 40°
leonid [27]

Answer:

heat transfer for the process is - 643.3 kJ

Explanation:

given data

mass m = 2 kg

pressure p1 = 500 kPa

temperature t1 = 400°C = 673.15 K

temperature t2 = 40°C = 313.15 K

pressure p2 = 300 kPa

to find out

heat transfer for the process

solution

we know here mass is constant so

m1 = m2

so by energy equation

m ( u2 - u1 ) = Q - W

Q is heat transfer

and in process  P =  A+ N that is linear spring

so

W = ∫PdV

= 0.5 ( P1+P2) ( V1 - V2)

so for case 1

P1V1 = mRT

put here value

500 V1 = 2 (0.18892) (673.15)

V1 = 0.5087 m³

and

for case 2

P2V2 = nRT

300 V2 = 2 (0.18892) (313.15)

V2 = 0.3944 m³

and

here W will be

W = 0.5 ( 500 + 300 ) ( 0.3944 - 0.5087 )

W = -45.72 kJ

and

Q is here for Cv = 0.83 from ideal gas table

Q = mCv ( T2-T1 ) + W

Q = 2 × 0.83 ( 40 - 400 ) - 45.72

Q = - 643.3 kJ

heat transfer for the process is - 643.3 kJ

7 0
3 years ago
JAVA HADOOP MAPREDUCE
taurus [48]

Answer:

Explanation:

package PackageDemo;

import java.io.IOException;

import org.apache.hadoop.conf.Configuration;

import org.apache.hadoop.fs.Path;

import org.apache.hadoop.io.IntWritable;

import org.apache.hadoop.io.LongWritable;

import org.apache.hadoop.io.Text;

import org.apache.hadoop.mapreduce.Job;

import org.apache.hadoop.mapreduce.Mapper;

import org.apache.hadoop.mapreduce.Reducer;

import org.apache.hadoop.mapreduce.lib.input.FileInputFormat;

import org.apache.hadoop.mapreduce.lib.output.FileOutputFormat;

import org.apache.hadoop.util.GenericOptionsParser;

public class WordCount {

public static void main(String [] args) throws Exception

{

Configuration c=new Configuration();

String[] files=new GenericOptionsParser(c,args).getRemainingArgs();

Path input=new Path(files[0]);

Path output=new Path(files[1]);

Job j=new Job(c,"wordcount");

j.setJarByClass(WordCount.class);

j.setMapperClass(MapForWordCount.class);

j.setReducerClass(ReduceForWordCount.class);

j.setOutputKeyClass(Text.class);

j.setOutputValueClass(IntWritable.class);

FileInputFormat.addInputPath(j, input);

FileOutputFormat.setOutputPath(j, output);

System.exit(j.waitForCompletion(true)?0:1);

}

public static class MapForWordCount extends Mapper<LongWritable, Text, Text, IntWritable>{

public void map(LongWritable key, Text value, Context con) throws IOException, InterruptedException

{

String line = value.toString();

String[] words=line.split(",");

for(String word: words )

{

Text outputKey = new Text(word.toUpperCase().trim());

IntWritable outputValue = new IntWritable(1);

con.write(outputKey, outputValue);

}

}

}

public static class ReduceForWordCount extends Reducer<Text, IntWritable, Text, IntWritable>

{

public void reduce(Text word, Iterable<IntWritable> values, Context con) throws IOException, InterruptedException

{

int sum = 0;

for(IntWritable value : values)

{

sum += value.get();

}

con.write(word, new IntWritable(sum));

}

}

}

3 0
3 years ago
In highways the far left lane is usually the _____
Ivan
Fastest


(Known as the fast lane)
8 0
3 years ago
Read 2 more answers
Close to 16 billion pounds of ethylene glycol (EG) were produced in 2013. It previously ranked as the twenty-sixth most produced
bekas [8.4K]

Answer:

a) 0.684

b) 0.90

Explanation:

Catalyst

EO + W → EG

<u>a) calculate the conversion exiting the first reactor </u>

CAo = 16.1 / 2   mol/dm^3

Given that there are two stream one  contains 16.1 mol/dm^3 while the other contains   0.9 wt% catalyst

Vo = 7.24 dm^3/s

Vm = 800 gal = 3028 dm^3

hence Im = Vin/ Vo = (3028 dm^3) / (7.24dm^3/s) = 418.232 secs = 6.97 mins

next determine the value of conversion exiting the reactor ( Xai ) using the relation below

KIm = \frac{Xai}{1-Xai}  ------ ( 1 )

make Xai subject of the relation

Xai = KIm / 1 + KIm  ---  ( 2 )

<em>where : K = 0.311 ,  Im = 6.97   ( input values into equation 2 )</em>

Xai = 0.684

<u>B) calculate the conversion exiting the second reactor</u>

CA1 = CA0 ( 1 - Xai )

therefore CA1 = 2.5438 mol/dm^3

Vo = 7.24 dm^3/s

To determine the value of the conversion exiting the second reactor  ( Xa2 ) we will use the relation below

XA2 = ( Xai + Im K ) / ( Im K + 1 ) ----- ( 3 )

<em> where : Xai = 0.684 , Im = 6.97,  and K = 0.311  ( input values into equation 3 )</em>

XA2 = 0.90

<u />

<u />

<u />

4 0
3 years ago
Any one here play animal crossing new horizons<br> if so wanna play
Oksanka [162]

Answer:

That's your Q seriously. Your funny. I don't have animal crossing but I do have league of legends.

Explanation:

8 0
3 years ago
Read 2 more answers
Other questions:
  • - if `check_1` and `check_2` variables are both True, it should set the value of a variable `outcome` to the string 'BOTH' - eli
    12·1 answer
  • Our goal is to design a traffic-light controller with the following properties; it lights up the green light (output G) for 15 s
    7·1 answer
  • Rolling and Shearing are the types of a)-Bulk Deformation Process b)- Sheet Metal Process c)- Machining Process d)- Both a &amp;
    7·1 answer
  • Air is compressed in an isentropic process from an initial pressure and temperature of P1 = 90 kPa and T1=22°C to a final pressu
    7·1 answer
  • Simplify the following expressions, then implement them using digital logic gates. (a) f = A + AB + AC (b) f = AB + AC + BC (c)
    5·1 answer
  • Of the core elements of successful safety and health programs,management leadership,worker participation and what else directly
    6·1 answer
  • An air-conditioning system operates at a total pressure of 1 atm and consists of a heating section and a humidifier that supplie
    15·1 answer
  • Which happens when a wave passes through an opening
    12·2 answers
  • Hey answer quick for 20 points
    7·2 answers
  • Describe two fundamental reasons why flexural strength should depend on porosity
    14·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!