Steady State Analysis of 'Complex' Circuit - Part 2

Consider the arrangement above.

V S = V o sin ( ω t ) V_S = V_o \sin(\omega t)

The following function is defined: f ( ω ) = Z ( ω ) 10 f(\omega) = \lvert Z(\omega)\rvert - 10

Here, Z ( ω ) Z(\omega) is the circuit impedance and Z ( ω ) \lvert Z(\omega)\rvert is its magnitude. Find the area A A bounded by this curve, the horizontal ' ω \omega ' axis and the vertical line ω = 0 \omega = 0 . Enter your answer as 100 A \lfloor 100A \rfloor .

Bonus: In the previous problem , the qualitative behaviour of the circuit was understood for large frequencies. This time, describe the circuit behaviour at very low frequencies.


The answer is 7.

This section requires Javascript.
You are seeing this because something didn't load right. We suggest you, (a) try refreshing the page, (b) enabling javascript if it is disabled on your browser and, finally, (c) loading the non-javascript version of this page . We're sorry about the hassle.

1 solution

Steven Chase
Oct 13, 2020

At DC, the capacitor is effectively open, and the effective impedance is 40 Ω 40 \Omega . The attached code sweeps the angular frequency and plots the function f f . It also accumulates area.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
import math

# Constants

R1 = 10.0
R2 = 30.0
C = 30.0

dw = 10.0**(-6.0)

#############################################

A = 0.0

w = dw
count = 0

while w <= 10.0:

    ZC = complex(0.0,-1.0/(w*C)) # capacitor impedance

    ZP = R2*ZC/(R2+ZC)  # parallel of ZC and R2

    Z = R1 + ZP  # total impedance

    f = abs(Z) - 10.0  # function f

    dA = f*dw    # accumulate area
    A = A + dA

    w = w + dw
    count = count + 1

    #print w,f

#############################################

print dw
print w
print A
print math.floor(100.0*A)

#>>> 
#1e-05
#1.00001
#0.0765975575078
#7.0
#>>> ================================ RESTART ================================
#>>> 
#1e-05
#10.0000099998
#0.076680890202
#7.0
#>>> ================================ RESTART ================================
#>>> 
#1e-06
#10.0000009993
#0.0768158901978
#7.0
#>>> 

0 pending reports

×

Problem Loading...

Note Loading...

Set Loading...