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
Jlenok [28]
3 years ago
9

Calculate the impedance of a 20 mH inductor at a frequency of 100 radians/s. Calculate the impedance of a 500 µF inductor at a f

requency of 100 radians/s. What is the equivalent impedance of the inductor and capacitor connected in series? What is the equivalent impedance of the inductor and capacitor connected in parallel?
Engineering
2 answers:
Naily [24]3 years ago
7 0

Given Information:  

Capacitance = C = 500 μF

Inductance = L = 20 mH

Frequency = ω = 100 rad/sec

Required Information:  

Capacitive reactance = Xc = ?

Inductive reactance = XL = ?

Equivalent series impedance = Zseries = ?

Equivalent parallel impedance = Zparallel = ?

Answer:

Capacitive reactance = Xc = -j20 Ω  

Inductive reactance = XL = j2 Ω

Equivalent series impedance = Zseries = -j18 Ω

Equivalent parallel impedance = Zparallel = j2.22 Ω

Explanation:

The capacitive reactance is calculated using

Xc = 1/jω*C

Where ω is the frequency in rad/sec and C is the capacitance of the capacitor

Xc = 1/j100*500x10⁻⁶

Xc = -j20 Ω

The inductive reactance is calculated using

XL = jω*L

Where ω is the frequency in rad/sec and L is the inductance of the inductor

XL = j100*0.02

XL = j2 Ω

The equivalent series impedance an can be calculated as

Zseries = XL + Xc

Zseries = j2 - j20 Ω

Zseries = -j18 Ω

The equivalent parallel impedance an can be calculated as

1/Zparallel = 1/XL + 1/Xc

Simplifying the above equation yields,

Zparallel = (XL*Xc)  / (XL+ Xc)

Zparallel = (j2*-j20)/(j2-j20)     ( j*j = -1)

Zparallel = 40/-j18     (1/-j = j)

Zparallel = j2.22 Ω

Helga [31]3 years ago
3 0

Answer:

a) Zinductor = j2 Ohm

b) Zcapacitor = -j20 Ohm

c) Zseries = -j18 Ohm

d) Zparallel = -j2.22 Ohm

Explanation:

The inductor impedance is directly proportional to the frequency, therefore:

a) frequency = 100 rad/s inductor = 20mH

Zinductor = j*frequency*inductor = j*100*20*10^(-3) = j2 Ohm

b) The capacitor inductance is inversely proportional to the frequency and it's also negative, therefore:

frequency = 100 rad/s capacitor = 500 uF

Zcapacitor = j*frequency*capacitor = -j/(100*500*10^(-6)) = -j/(0.05) = -j20 Ohm

c) The equivalent impedance of these two components in series is the sum of each part, wich goes as follow:

Zseries = Zinductor + Zcapacitor = j2 -j20 = -j18 Ohm

d) The equivalent impedance of these two components in parallel is given by the following equation:

Zparallel = (Zinductor*Zcapacitor)/(Zinductor+Zcapacitor)

Zparallel = [j2*(-j20)]/(j2-j20)

Zparallel = [-40]/(-j18) = 2.22/j = -j2.22 Ohm

You might be interested in
Unit for trigonometric functions is always "radian". 1. 10 points: Do NOT submit your MATLAB code for this problem (a) Given f(x
RoseWind [281]

Answer:

Below is the required code.

Explanation:

%% Newton Raphson Method

clear all;

clc;

x0=input('Initial guess:\n');

x=x0;

f=exp(-x)-sin(x)-0.2;

g=-exp(-x)-cos(x);

ep=10;

i=0;

cc=input('Condition of convergence:\n');

while ep>=cc

i=i+1;

temp=x;

x=x-(f/g);

f=exp(-x)-sin(x)-0.2;

g=-exp(-x)-cos(x);

ep=abs(x-temp);

fprintf('x = %6f and error = %6f at iteration = %2f \n',x,ep,i);

end

fprintf('The solution x = %6f \n',x);

%% End of MATLAB Program

Command Window:

(a) First Root:

Initial guess:

1.5

Condition of convergence:

0.01

x = -1.815662 and error = 3.315662 at iteration = 1.000000

x = -0.644115 and error = 1.171547 at iteration = 2.000000

x = 0.208270 and error = 0.852385 at iteration = 3.000000

x = 0.434602 and error = 0.226332 at iteration = 4.000000

x = 0.451631 and error = 0.017029 at iteration = 5.000000

x = 0.451732 and error = 0.000101 at iteration = 6.000000

The solution x = 0.451732

>>

Second Root:

Initial guess:

3.5

Condition of convergence:

0.01

x = 3.300299 and error = 0.199701 at iteration = 1.000000

x = 3.305650 and error = 0.005351 at iteration = 2.000000

The solution x = 3.305650

>>

(b) Guess x=0.5:

Initial guess:

0.5

Condition of convergence:

0.01

x = 0.450883 and error = 0.049117 at iteration = 1.000000

x = 0.451732 and error = 0.000849 at iteration = 2.000000

The solution x = 0.451732

>>

Guess x=1.75:

Initial guess:

1.75

Condition of convergence:

0.01

x = 227.641471 and error = 225.891471 at iteration = 1.000000

x = 218.000998 and error = 9.640473 at iteration = 2.000000

x = 215.771507 and error = 2.229491 at iteration = 3.000000

x = 217.692636 and error = 1.921130 at iteration = 4.000000

x = 216.703197 and error = 0.989439 at iteration = 5.000000

x = 216.970438 and error = 0.267241 at iteration = 6.000000

x = 216.971251 and error = 0.000813 at iteration = 7.000000

The solution x = 216.971251

>>

Guess x=3.0:

Initial guess:

3

Condition of convergence:

0.01

x = 3.309861 and error = 0.309861 at iteration = 1.000000

x = 3.305651 and error = 0.004210 at iteration = 2.000000

The solution x = 3.305651

>>

Guess x=4.7:

Initial guess:

4.7

Condition of convergence:

0.01

x = -1.916100 and error = 1.051861 at iteration = 240.000000

x = -0.748896 and error = 1.167204 at iteration = 241.000000

x = 0.162730 and error = 0.911626 at iteration = 242.000000

x = 0.428332 and error = 0.265602 at iteration = 243.000000

x = 0.451545 and error = 0.023212 at iteration = 244.000000

x = 0.451732 and error = 0.000187 at iteration = 245.000000

The solution x = 0.451732

>>

Explanation:

The two solutions are x =0.451732 and 3.305651 within the range 0 < x< 5.

The initial guess x = 1.75 fails to determine the solution as it's not in the range. So the solution turns to unstable with initial guess x = 1.75.

7 0
3 years ago
Gtjffs
grandymaker [24]

the required documents is 3000

4 0
2 years ago
Do YOU have big brain?
KatRina [158]

Answer:

The average adult brain is about 15 cm and weighs from 1300 to 1400 grams. So around 3 pounds

So not yet, im not an adult yet

5 0
3 years ago
Read 2 more answers
A transmission line with an imperfect dielectric is connected to an ideal time-invariant voltage generator. The other end of the
kari74 [83]

Answer and Explanation:

O decreases linearly with the distance from the generator

4 0
3 years ago
What do you think of this schematic diagram?​
Sholpan [36]

Explanation:

A schematic diagram is a picture that represents the components of a process, device, or other object using abstract, often standardized symbols and lines. ... Schematic diagrams do not include details that are not necessary for comprehending the information that the diagram was intended to convey.

5 0
2 years ago
Other questions:
  • Explain the differences between 1- Energy 2- Power 3- Work 4- Heat Your answer should explain the mathematica and physical meani
    5·1 answer
  • WHEN WAS THE FIRST CAR INVENTED?
    13·2 answers
  • 1- A square-wave inverter has a dc source of 96 V and an output frequency of 60 Hz. The load is a series RL load with R = 5 Ohm
    7·1 answer
  • An electric current of transports of charge. Calculate the time this took. Be sure your answer has the correct unit symbol and s
    5·1 answer
  • A ceramic material can be defined as an organic compound consisting of a metal or semimetal and one or more nonmetals: (a) true
    9·1 answer
  • Define Plastic vs elastic deformation.
    13·1 answer
  • A piston having a diameter of 5.48 inches and a length of 9.50 in slides downward with a
    13·1 answer
  • Output all combinations of character variables a, b, and c. If a = 'x', b = 'y', and c = 'z', then the output is: xyz xzy yxz yz
    14·1 answer
  • A mechanical system comprises three subsystems in series with reliabilities of 98, 96, and 94 percent. What is the overall relia
    10·1 answer
  • If you log into the admin account on windows 10, will the admin be notified ? ​
    14·2 answers
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!