Problems about Zin in complex circuit analysis

In summary: The problem is my answer for question (a) is not the same as the answer provided by the question, i get 2.81 - j4.49 Ω while the answer demands 2.81 + j4.49 ΩIn summary, the problem is that the homework equation for question (c) is incorrect, and requires the addition of a 10Ω resistor in series with a 20Ω inductor to get the correct result.
  • #1
e0ne199
52
1


1. Homework Statement

scr1.png

the problem is my answer for question (a) is not the same as the answer provided by the question, i get 2.81 - j4.49 Ω while the answer demands 2.81 + j4.49 Ω

Homework Equations


simplifying the circuit, details can be seen below

The Attempt at a Solution


XL1=jωL1=j*20e-3*1000=j20Ω
XL2=jωL2=j*5e-3*1000=j5Ω
XC1=1/(-jωC1)=1/(j*100e-6*1000)=-j10Ω
XC2=1/(-jωC2)=1/(j*200e-6*1000)=-j5Ω

solving Zpar1:
Zpar1 = XL1 * XC1 /(XL1 + XC1)
Zpar1 = -j10Ω * j20Ω /(-j10Ω + j20Ω) = -j20Ω

solving Zser1:
Zser1 = -j20Ω - j5Ω = -j25Ω

solving Zin:
Zin = 1/((1/10)+(1/(j5))-(1/(j25))) = 2.81 - j4.49 Ω
 

Attachments

  • scr1.png
    scr1.png
    11.4 KB · Views: 1,166
Physics news on Phys.org
  • #2
e0ne199 said:
Zin = 1/((1/10)+(1/(j5))-(1/(j25))) = 2.81 - j4.49 Ω
I believe that you are making some arithmetical mistake in evaluating the above expression. When I type the same thing into Mathcad I see:

upload_2018-11-26_14-58-24.png
 

Attachments

  • upload_2018-11-26_14-58-24.png
    upload_2018-11-26_14-58-24.png
    721 bytes · Views: 864
  • #3
gneill said:
I believe that you are making some arithmetical mistake in evaluating the above expression. When I type the same thing into Mathcad I see:

View attachment 234677
i don't know if mathcad can give result like that because i calculated using ti-89 emulator and got result like what i posted above... you can see the screenshot on my attachmet
Screenshot_20181127-103405.jpeg
 

Attachments

  • Screenshot_20181127-103405.jpeg
    Screenshot_20181127-103405.jpeg
    39.1 KB · Views: 601
  • #4
does the use of i or j symbol affect the calculation?
 
  • #5
What you've just shown me is :

upload_2018-11-26_21-45-9.png


Not the same.
 

Attachments

  • upload_2018-11-26_21-45-9.png
    upload_2018-11-26_21-45-9.png
    722 bytes · Views: 751
  • #6
e0ne199 said:
does the use of i or j symbol affect the calculation?
No.
 
  • #7
gneill said:
What you've just shown me is :

View attachment 234700

Not the same.
ok i think i have the solution... i did not input the equation into my calculator properly, i have achieved the same result after adding more bracket symbol into my equation... thanks for the guidance
 
  • Like
Likes gneill
  • #8
Glad to have helped.
 
  • #9
The answers provided for questions (a) and (b) in problem 10.9 are easily arrived at, however the answer given for question (c) doesn't make sense to me. Can someone clarify?
 
  • #10
The part (c) result matches what I came up with.

You have a delta configuration to start, with the capacitance from a to b across the top.
The left leg of the delta is an L-R combination. The right leg is an L-C combo.

For the L-R combo, I got a value of 2 + j4. For the L-C combo, I got a value of -j20.

Keep in mind that the L-R part and the L-C part are in series with each other and this series (L-R + L-C) is in parallel with the capacitance.

As I said, the results agree with what is shown for part (c).
 
  • Like
Likes berkeman
  • #11
I confirm the answer for (c). I took the 10Ω resistor in parallel with the j5Ω inductor as Zleft. Then took -j10Ω cap in parallel with the j20Ω inductor as Zright.
Then Zleft in series with Zright.
Then that result in parallel with the -j5Ω cap.
 
  • Like
Likes berkeman
  • #12
I don't want to ignite a battle, but looking at all of those parenthesis on the calculator screenshot makes me glad I have an RPN calculator. :smile:

It's a good idea to break it up into smaller equivalent impedances, then parallel those.
 
  • #13
upload_2019-1-25_19-2-38.png
 

Attachments

  • upload_2019-1-25_19-2-38.png
    upload_2019-1-25_19-2-38.png
    18.2 KB · Views: 583
  • Like
Likes scottdave
  • #14
All the required impedances can be obtained in one go using a little linear algebra. Choose the bottom node (g) of the circuit to be the reference node. Label the other two nodes 1 and 2.

scr1.png


Write the admittance matrix (Y) by inspection.
Invert the Y matrix to obtain the impedance (Z) matrix. Two of the elements of the Z matrix are directly the impedances Z(ag) (shown in red) and Z(bg) (shown in magenta). The impedance Z(ab) is the sum of Z(ag) and Z(bg) minus the two transfer impedances:

GetZ.png
 

Attachments

  • scr1.png
    scr1.png
    12.1 KB · Views: 565
  • GetZ.png
    GetZ.png
    6.8 KB · Views: 526
  • #15
By the way, it is easier-in my opinion-to use Excel complex:
Define Name:
ZR=COMPLEX(10,0)
ZLa=COMPLEX(0,5)
ZLb=COMPLEX(0,20)
ZCa=COMPLEX(0,-5)
ZCb=COMPLEX(0,-10)
Z1=ZLa*ZR/(ZLa+ZR)=IMDIV(IMPRODUCT(ZLa,ZR),IMSUM(ZLa,ZR))
Z2=ZLb*ZCb/(ZLb+ZCb)=IMDIV(IMPRODUCT(ZLb,ZCb),IMSUM(ZLb,ZCb))
ZA=IMSUM(Z1,Z2); ZB=IMSUM(Z2,ZCa);ZC=IMSUM(Z1,ZCa)
Zab=ZA*ZCa/(ZA+ZCa)=IMDIV(IMPRODUCT(ZCa,ZA),IMSUM(ZCa,ZA))
Zag=Z1*ZB/(Z1+ZB)=IMDIV(IMPRODUCT(Z1,ZB),IMSUM(Z1,ZB)
Zbg=Z2*ZC/(ZC+Z2)=IMDIV(IMPRODUCT(Z2,ZC),IMSUM(Z2,ZC))

upload_2019-1-28_8-29-5.png
 

Attachments

  • upload_2019-1-28_8-29-5.png
    upload_2019-1-28_8-29-5.png
    27.6 KB · Views: 475
  • Like
Likes scottdave
  • #16
Wow! @Babadag that was kind of impressive. I do remember using Excel to attempt complex number mathematics, but found other methods.

If you are familiar with Python, it easily handles complex numbers.
note that Python uses the letter j after a number to indicate the imaginary component.
Code:
# Here is a simple function in Python, using a lambda function.
# it will calculate the parallel equivalent of two impedances.
#
zpar2 = (lambda x,y: x*y /(x+y))
print(zpar2(1,2j))
# here is the output
(0.8+0.4j)

R is another popular interpreted programming language, which is also available for free.
It also handles complex and imaginary (using the traditional i )
Code:
# R code for parallel impedances.
par2 <- function(a,b) { return (a*b / (a+b))}
par2(1,1i)
# here is the output
[1] 0.5+0.5i

Note these are simple calculations. I didn't put in any handling for when the denominator to be zero.
 
  • Like
Likes Babadag
  • #17
Thank you very much, scottdave! It is very interesting, indeed.
 

Related to Problems about Zin in complex circuit analysis

1. What is Zin in complex circuit analysis?

Zin, also known as input impedance, is a measure of how much a circuit resists the flow of current when a voltage is applied to it. It is an important parameter in complex circuit analysis as it helps determine the behavior of the circuit and how it interacts with other components.

2. Why is Zin important in circuit analysis?

Zin is important in circuit analysis because it affects the overall performance and stability of the circuit. It can also impact the accuracy of the analysis and the design of the circuit. Additionally, Zin can help determine the maximum power transfer and the frequency response of the circuit.

3. How is Zin calculated in complex circuit analysis?

Zin can be calculated by using Ohm's Law (Zin = V/I), where V is the voltage and I is the current at the input. In more complex circuits, Zin can be calculated using various circuit analysis techniques such as Thevenin's theorem or nodal analysis.

4. What are some common problems associated with Zin in complex circuits?

Some common problems associated with Zin in complex circuits include impedance mismatch, distortion of signals, and instability. These problems can arise due to mismatched components, incorrect calculations, and poor design choices.

5. How can problems with Zin in complex circuits be solved?

Problems with Zin can be solved by carefully selecting components with matching impedance, using proper circuit analysis techniques, and making accurate calculations. Additionally, simulation tools can be used to identify and troubleshoot any issues with Zin in a complex circuit.

Similar threads

  • Engineering and Comp Sci Homework Help
Replies
4
Views
1K
  • Engineering and Comp Sci Homework Help
Replies
26
Views
2K
  • Engineering and Comp Sci Homework Help
Replies
20
Views
3K
  • Engineering and Comp Sci Homework Help
Replies
1
Views
1K
  • Engineering and Comp Sci Homework Help
Replies
9
Views
1K
  • Engineering and Comp Sci Homework Help
Replies
2
Views
1K
  • Engineering and Comp Sci Homework Help
Replies
1
Views
2K
  • Engineering and Comp Sci Homework Help
Replies
2
Views
3K
  • Engineering and Comp Sci Homework Help
Replies
2
Views
2K
  • Engineering and Comp Sci Homework Help
Replies
2
Views
2K
Back
Top