Electric Circuits, Global Edition by James W. Nilsson, Susan A. Riedel-748-819
Electric Circuits, Global Edition by James W. Nilsson, Susan A. Riedel-748-819
Once the equations are in this standard form, you can write the
equations using matrix notation as
21 - 9 - 12 i1 - 33
£ - 3 6 - 2 § £ i2 § = £ 3 § .
- 8 - 4 22 i3 50
X = A - 1B.
746
A.2 Calculator and Computer Methods 747
2v1 - v2 = 4,
7v1 + 2v3 = 5;
2v1 - v2 + 0v3 = 4,
3 - 1 0 v1 4
£0 4 3 § £ v2 § = £ 16 § .
7 0 2 v3 5
Using Excel
Figure A.1 uses Excel to solve the simultaneous equations given in
Eqs. A.1. Note that Excel can only solve simultaneous equations whose
coefficients are real numbers. To begin, enter the A matrix in a square
collection of cells and enter the B vector in a column of cells. You can
748 The Solution of Linear Simultaneous Equations
Figure A.1 ▲ Using Excel to solve the simultaneous equations in Eqs. A.1.
label the matrix and vector, as shown in the figure, but this is not required.
Then highlight a column of cells for the vector X, which will contain the
values of the unknowns. The number of cells in this column must equal
the number of unknowns. Type the following function in the function box:
Using MATLAB
There are several ways to solve a system of simultaneous equations using
MATLAB. Figure A.2 illustrates one method to solve Eqs. A.1. It begins
>> syms il i2 i3
>> eq1=21*i1 - 9*i2 - 12*i3 == -33;
>> eq2=-3*i1 + 6*i2 - 2*i3 ==3;
>> eq3=-8*i1 - 4*i2 + 22*i3 == 50;
>> [A,B] = equationsToMatrix([eq1, eq2, eq3], [i1, i2, i3])
A =
B =
-33
3
50
>> X = linsolve(A,B)
X =
1
2
3
Figure A.2 ▲ Using MATLAB to solve the simultaneous equations in Eqs. A.1.
A.3 Paper-and-Pencil Methods 749
by defining the three unknown variables and the three simultaneous equa-
tions. Then, the function equationsToMatrix(eq, var) constructs the A
matrix and the B vector from the equations supplied in the function’s first
argument, using the variables specified in the function’s second argument.
Finally, the function linsolve(A, B) calculates the values of the unknowns
by inverting the matrix supplied in the function’s first argument and then mul-
tiplying by the vector supplied in the function’s second argument. Note that,
unlike Excel, the simultaneous equations specified in MATLAB can have
complex numbers as coefficients on the left-hand side and constants on the
right-hand side.
Back-Substitution
The back-substitution method picks one equation and solves it for one un-
known in terms of the remaining unknowns. The solution is used to eliminate
that unknown in the remaining equations. This process is repeated until only
one equation and one unknown remain. To illustrate, we will solve Eqs. A.2
using back-substitution. Begin by solving the third equation for v3, to get
v3 = 2.5 - 3.5v1.
2v1 - v2 = 4,
Next, solve the first of the two remaining equations for v2, to get
v2 = 2v1 - 4.
the resulting equations are added together, one of the unknowns is elim-
inated. For example, consider the first two equations in Eqs. A.3. If we
multiply the first equation by the constant 4 and add the resulting equa-
tion to the second equation, we eliminate v2:
Now multiply this new equation by 2, and multiply the third equation in
Eqs. A.3 by -3. Then add the two equations together to eliminate v3:
16v1 + 6v3 = 64
+ -21v1 + -6v3 = -15
-5v1 + 0v3 = 49.
Therefore,
49
v1 = = -9.8 V.
-5
We can substitute the value of v1 back into the first equation in Eqs. A.3 to
find v2 and then substitute the value of v2 back into the second equation in
Eqs. A.3 to find v3. You should complete these final steps to verify the values.
Cramer’s Method
We can also use Cramer’s method to solve a set of simultaneous equations.
The value of each unknown variable is the ratio of two determinants. If we let
N, with an appropriate subscript, represent the numerator determinant and ∆
represent the denominator determinant, then the kth unknown xk is
Nk
xk = . (A.4)
∆
The denominator determinant ∆ is the same for every unknown variable
and is called the characteristic determinant of the set of equations. The
numerator determinant Nk varies with each unknown.
The characteristic determinant is the determinant of the A matrix.
For example, the characteristic determinant of Eqs. A.3 is
2 -1 0
∆ = †0 4 3†.
7 0 2
To find the determinant, rewrite the first two columns to the right of the
determinant to get
2 -1 0 2 -1
∆ = †0 4 3† 0 4 .
7 0 2 7 0
There are now five columns. Sum the products of the left-to-right diago-
nals for the first three columns; then subtract the sum of products of the
right-to-left diagonals for the last three columns:
∆ = (2 # 4 # 2) + (-1 # 3 # 7) + (0 # 0 # 0) - (0 # 4 # 7) - (2 # 3 # 0) - (-1 # 0 # 2)
= 16 - 21 + 0 - 0 - 0 - 0 = -5.
A.4 Applications 751
Note that this shortcut method for finding a determinant works only for
square matrices of dimension 3. To find the determinant for a matrix
whose dimension is larger than 3, consult a reference on determinants.
To construct the numerator determinant Nk, replace the kth col-
umn in the characteristic determinant with the values in the B vector.
For example, the numerator determinants for evaluating v1, v2, and v3 in
Eqs. A.3 are
4 -1 0
N1 = † 16 4 3†
5 0 2
= (4 # 4 # 2) + (-1 # 3 # 5) + (0 # 16 # 0) - (0 # 4 # 5) - (4 # 3 # 0) - (-1 # 16 # 2)
= 49,
2 4 0
N2 = † 0 16 3†
7 5 2
= (2 # 16 # 2) + (4 # 3 # 7) + (0 # 0 # 5) - (0 # 16 # 7) - (2 # 3 # 5) - (4 # 0 # 2)
= 118,
and
2 -1 4
N3 = † 0 4 16 †
7 0 5
= (2 # 4 # 5)+ ( -1 # 16 # 7) + (4 # 0 # 0) - (4 # 4 # 7) - (2 # 16 # 0) - ( -1 # 0 # 5)
= -184.
Using Cramer’s method in Eq. A.4, we can solve for v1, v2, and v3:
N1 49
v1 = = = -9.8 V,
∆ - 5
N2 118
v2 = = = -23.6 V,
∆ - 5
and
N3 - 184
v3 = = = 36.8 V.
∆ - 5
A.4 Applications
The following examples demonstrate the various techniques for solving a
system of simultaneous equations generated from circuit analysis.
752 The Solution of Linear Simultaneous Equations
EXAMPLE A.1
EXAMPLE A.2
Use Excel to find the three mesh currents in the cir- Putting these four equations in standard form, we get
cuit in Fig. 4.24.
25i1 - 5i2 - 20i3 + 0if = 50,
Solution -5i1 + 10i2 - 4i3 + 0if = 0,
The equations that describe the circuit in Fig. 4.24 -20i1 - 4i2 + 24i3 + 15if = 0,
were derived in Example 4.7. There are three KVL i1 - 0i2 - i3 - if = 0.
equations:
Rewriting this set of equations in AX = B format
5(i1 - i2) + 20(i1 - i3) - 50 = 0, gives us
The Excel solution is shown in Fig. A.3. The mesh and the controlling current for the dependent
currents are i1 = 29.6 A, i2 = 26 A, and i3 = 28 A, source is if = 1.6 A.
Figure A.3 ▲ Using Excel to solve the simultaneous equations in Example A.2.
EXAMPLE A.3
Use MATLAB to find the phasor mesh currents I1 The current controlling the dependent voltage
and I2 in the circuit in Fig. 9.40. source is
Ix = (I1 - I2).
Solution
Converting these three equations into standard
Summing the voltages around mesh 1 generates the form, we get
equation
(13 + j14)I1 + ( -12 + j16)I2 + 0Ix =150,
(1 + j2)I1 + (12 - j16)(I1 - I2) = 150l0°. ( -12 + j16)I1 + (13 + j13)I2 + 39Ix = 0,
Summing the voltages around mesh 2 produces the I1 - I2 - Ix = 0.
equation
The MATLAB commands used to solve this set of si-
(12 - j16)(I2 - I1) + (1 + j3)I2 + 39Ix = 0. multaneous equations are shown in Fig. A.4. Note the
>> syms il i2 ix
>> eq1 = complex(13,-14)*i1 + complex(-12,16)*i2 == 150;
>> eq2 = complex(-12,16)*i1 + complex(13,-13)*i2 + 39*ix == 0;
>> eq3 = i1 - i2 - ix ==0,
>> [A,B] = equationsToMatrix([eq1, eq2, eq3], [i1, i2, ix])
A =
[ 13 - 14i, - 12 + 16i, 0]
[ -12 + 16i, 13 - 13i, 39]
[ 1, -1, -1]
B =
150
0
0
>> X = linsolve(A,B)
X =
- 26 - 52i
- 24 - 58i
- 2 + 6i
Figure A.4 ▲ Using MATLAB to solve the simultaneous equations in Example A.3.
754 The Solution of Linear Simultaneous Equations
use of the complex(a, b) function to construct the I1 = ( -26 - j52) = 58.14l -116.57° A,
complex coefficients, where a is the real part of the co-
efficient and b is the imaginary part of the coefficient.
I2 = ( -24 - j58) = 62.77 l -122.48° A.
MATLAB gives us the solution
In the first three examples, the matrix elements have been numbers—
real numbers in Examples A.1 and A.2, and complex numbers in
Example A.3. It is also possible for the elements to be symbols.
Example A.4 illustrates the use of back substitution in a circuit problem
where the elements in the coefficient matrix are symbols.
EXAMPLE A.4
Use back-substitution to derive expressions for the Substitute this expression into the second equation
node voltages V1 and V2 in the circuit in Fig. A.5. to eliminate V2:
1 (G + 2sC) G
-sCV1 + (G + 2sC) c V1 - V d = sCVg.
sC sC sC g
1 Rearrange and simplify this equation to find the
R sC expression for V1:
1 2
1 1
(G + 2sC)2 - (sC)2 G(G + 2sC) + (sC)2
1 1 V1 = Vg ,
Vg V1 V2 R sC sC
2 sC
2 2 so
Figure A.5 ▲ The circuit for Example A.4. G(G + 2sC) + (sC)2
V1 = Vg
(G + 2sC)2 - (sC)2
Solution (G 2 + 2sCG + s2C 2)
= Vg.
Summing the currents leaving nodes 1 and 2 gener- (G 2 + 4sCG + 3s2C 2)
ates the following set of equations:
V1 - Vg Finally, substitute this expression for V1 into the
+ V1sC + (V1 - V2)sC = 0, equation for V2; rearrange and simplify to find the
R
expression for V2:
V2
+ (V2 - V1)sC + (V2 - Vg)sC = 0. (G + 2sC) (G 2 + 2sCG + s2C 2) G
R V2 = c 2 Vg d - V,
sC 2
(G + 4sCG + 3s C ) 2 sC g
Let G = 1>R and collect the coefficients of V1 and
V2 to get so
(G + 2sC)V1 - sCV2 = GVg, (G + 2sC)(G 2 + 2sCG + s2C 2) -G(G 2 + 4sCG+3s2C 2)
V2 = c dVg
-sCV1 + (G + 2sC)V2 = sCVg. sC(G 2 + 4sCG + 3s2C 2)
Solve the first equation for V2 to get
2sC(G + sC)
(G + 2sC) G = Vg.
V2 = V1 - V. (G + 4sCG + 3s2C 2)
2
sC sC g
APPENDIX
B Complex Numbers
Complex numbers allow us to find the square root of negative numbers. For
example, consider the equation x 2 + 8x + 41 = 0. From the quadratic for-
mula, we know that the two values of x that satisfy this equation are
-8 { 282 - 4(41)
x1,2 = = -4 { 1-25.
2
Therefore, this equation has no solution in a number system that ex-
cludes complex numbers. Complex numbers, and the ability to manipu-
late them algebraically, are extremely useful in circuit analysis.
B.1 Notation
There are two ways to designate a complex number: with the cartesian,
or rectangular, form or with the polar, or trigonometric, form. In rectan-
gular form, a complex number is written as a sum of a real component
and an imaginary component; hence
n = a + jb,
n = ce ju
where c is the magnitude, u is the angle, e is the base of the natural log-
arithm, and, as before, j = 1-1. The symbol lu° is frequently used in
place of e ju, so the polar form can also be written as
n = c lu .
1
You may be more familiar with the notation i = 1 - 1. In electrical engineering, i is used
as the symbol for current, and hence in electrical engineering literature, j is used to denote
1 - 1.
755
756 Complex Numbers
Since there are two ways of expressing the same complex number, we
need to relate one form to the other. The transition from polar to rectan-
gular form makes use of Euler’s identity:
e { ju = cos u { j sin u.
ce ju = c( cos u + jc sin u)
= c( cos u + jc sin u)
= a + jb.
a + jb = 1 2a2 + b2 2 e ju
= ce ju,
where
tan u = b>a.
The expression for tan u does not specify the quadrant where the angle u
is located. We can determine the location of u using a graphical represen-
tation of the complex number.
Im
b c
B.2 The Graphical Representation of
a Complex Number
u
0 a Re
A complex number is represented graphically on a complex-number
plane, where the horizontal axis represents the real component and the
Figure B.1 ▲ The graphical representation of a 1 jb vertical axis represents the imaginary component. The angle of the com-
when a and b are both positive. plex number is measured counterclockwise from the positive real axis.
The plot of the complex number n = a + jb = c lu, assuming that a and
Im Im b are both positive, is shown in Fig. B.1.
5 36.878 5 143.138
3 3 This plot makes very clear the relationship between the rectangular
u u and polar forms. Any point in the complex-number plane is uniquely de-
4 Re 24 Re fined by giving either its distance from each axis (that is, a and b) or its ra-
dial distance from the origin (c) and the angle with respect to the positive
real axis, u.
4 1j3 5 5 36.878 241j 3 5 5 143.138 It follows from Fig. B.1 that u is in the first quadrant when a and b are
(a) (b) both positive, in the second quadrant when a is negative and b is positive, in
Im Im the third quadrant when a and b are both negative, and in the fourth quad-
rant when a is positive and b is negative. These observations are illustrated
u u in Fig. B.2, where we have plotted 4 + j3, -4 + j3, -4 - j3, and 4 - j3.
Re Re
Note that we can also specify u as a clockwise angle from the pos-
24 4
itive real axis. Thus, in Fig. B.2(c), we could also designate -4 - j3 as
5l -143.13°. In Fig. B.2(d), we observe that 5 l323.13° = 5 l -36.87°. It is
23 23
5 216.878 5 323.138
24 2j3 5 5 216.878 4 2j 3 5 5 323.138
customary to express u in terms of negative values when u lies in the third
or fourth quadrant, so that -180° … u … 180°.
(c) (d)
The conjugate of a complex number is formed by reversing the sign
Figure B.2 ▲ The graphical representation of four of its imaginary component. Thus, the conjugate of a + jb is a - jb, and
complex numbers. the conjugate of -a + jb is -a - jb. When we write a complex number in
B.3 Arithmetic Operations 757
polar form, we construct its conjugate by reversing the sign of the angle u. Im
Therefore, the conjugate of clu is cl -u. The conjugate of a complex n2 5 2a1jb5c u2 n1 5 a1jb5c u1
b
number is designated with an asterisk, so n* is understood to be the con-
jugate of n. Figure B.3 shows two complex numbers and their conjugates u2
u1
plotted on the complex-number plane. Note that conjugation reflects a
2a 2u1 a Re
complex number about the real axis. 2u2
2b
n*2 5 2a2jb5c 2u2 n*1 5 a2jb5c 2u1
B.3 Arithmetic Operations Figure B.3 ▲ The complex numbers n1 and n2 and
their conjugates n*1 and n*2.
Addition (Subtraction)
When adding or subtracting complex numbers, we express the numbers in
rectangular form. Addition involves adding the real parts of the complex
numbers to form the real part of the sum and adding the imaginary parts
to form the imaginary part of the sum. Thus, if we are given
n1 = 8 + j16
and
n2 = 12 - j3,
then
If the numbers to be added or subtracted are given in polar form, they are
first converted to rectangular form. For example, if
n1 = 10 l53.13°
and
n2 = 5 l -135°,
then
n1 + n2 = 6 + j8 - 3.535 - j3.535
and
n1 - n2 = 6 + j8 - ( -3.535 - j3.535)
= 9.535 + j11.535
= 14.966 l50.42°.
758 Complex Numbers
Multiplication (Division)
When multiplying or dividing complex numbers, the numbers can be writ-
ten in either rectangular or polar form. In most cases, polar form is more
convenient. As an example, let’s find the product n1n2 when n1 = 8 + j10
and n2 = 5 - j4. Using rectangular form, we have
= 80 + j18
= 82l12.68°.
If we use polar form, we find the product of two complex numbers by mul-
tiplying their magnitudes and adding their angles. For example,
= 82l12.68°
= 80 + j18.
n1 6 + j3 (6 + j3)(3 + j1)
= =
n2 3 - j1 (3 - j1)(3 + j1)
18 + j6 + j9 - 3
=
9 + 1
15 + j15
= = 1.5 + j1.5
10
= 2.12 l45°.
n1 6.71 l26.57°
= = 2.12 l45°
n2 3.16 l -18.43°
= 1.5 + j1.5.
{j 2 = |1,
( -j)(j) = 1,
B.6 The Roots of a Complex Number 759
1
j = ,
-j
e { jp = -1,
e { jp>2 = { j.
nn* = a2 + b2 = c 2,
n + n* = 2a,
n - n* = j2b,
n>n* = 1l2u.
nk = (a + jb)k
For example,
= 16 + j27.71,
and
= 625e j212.52°
= -527 - j336.
x k - ce ju = 0,
c
ce ju = ce j(u + 2p) = ce j(u + 4p) = .
It follows that
f.
We continue this process until the roots start repeating. This will happen
when the multiple of p is equal to 2k. For example, let’s find the four roots
of 81e j60°. We have
di1 di2
v1 = L1 + M (C.1)
dt dt
and
di1 di2
v2 = M + L2 . (C.2)
dt dt
R1 a L12M L22M c R2
The T-Equivalent Circuit
1 i1 i2 1
How can we arrange uncoupled inductors in a circuit that can be
v1 M v2
described by Eqs. C.1 and C.2? If we regard Eqs. C.1 and C.2 as
2 2 mesh-current equations with i1 and i2 as the mesh currents, we need
b d
one mesh with a total inductance of L1 and a second mesh with a total
inductance of L2. Also, the two meshes must have a common induc-
Figure C.2 ▲ The T-equivalent circuit for the tance of M. The T-equivalent circuit shown in Fig. C.2 satisfies these
magnetically coupled coils of Fig. C.1. requirements.
You should verify that the equations relating v1 and v2 to i1 and i2
reduce to Eqs. C.1 and C.2. Note the absence of magnetic coupling be-
tween the inductors and the zero voltage between b and d.
761
762 More on Magnetically Coupled Coils and Ideal Transformers
v M
` 1 `
di1 v2 L2 L2 M
= = v -
2 1
v2; (C.3)
dt L M L1 L2 - M L1 L2 - M 2
` 1 `
M L2
L1 v1
` `
di2 M - M
v2 L1
= = v1 + v2. (C.4)
dt L1 L2 - M 2 L1 L2 - M 2 L1 L2 - M 2
Now we solve for i1 and i2 by multiplying both sides of Eqs. C.3 and C.4 by
dt and then integrating:
t t
L2
L1L2 - M L0 L1L2 - M L0
M
i1 = i1(0) + 2
v1 dt - 2
v2 dt (C.5)
and
t t
L1
L1L2 - M L0 L1L2 - M L0
M
i2 = i2(0) - 2
v1 dt + 2
v2 dt. (C.6)
If we regard v1 and v2 as node voltages, Eqs. C.5 and C.6 describe a circuit
like the one shown in Fig. C.3.
To find LA, LB, and LC as functions of L1, L2, and M, write the equa-
tions for i1 and i2 in Fig. C.3 and compare them with Eqs. C.5 and C.6.
Thus
t t
LA L0 LB L0 1
1 1
i1 = i1(0) + v1 dt + (v - v2) dt
t t
LB L0 1 LB L0 2
1 1 1
= i1(0) + a + b v dt - v dt
LA
and
t t
LC L0 LB L0 1
1 1
i2 = i2(0) + v2dt + (v - v2) dt
t t
LB L0 LC L0 2
1 1 1
= i2(0) + v1dt + a + b v dt.
LB
i1 LB i2
a c
1 1
v1 i1(0) LA LC i2(0) v2
2 2
b d
Figure C.3 ▲ The circuit used to derive the -equivalent circuit for magnetically
coupled coils.
C.1 Equivalent Circuits for Magnetically Coupled Coils 763
Then
1 M
= ,
LB L1 L2 - M 2
1 L2 - M
= ,
LA L1 L2 - M 2
1 L1 - M
= .
LC L1 L2 - M 2
Incorporate the expressions for LA, LB, and LC into the circuit shown in
Fig. C.3 to get the p-equivalent circuit for the magnetically coupled coils
shown in Fig. C.1. The result is shown in Fig. C.4.
L1L22M2
R1 a M c R2
1 L1L22M2 1
i1 i2
L22M
v1 i1(0) i2(0) v2
L1L22M2
2 L12M 2
b d
Figure C.4 ▲ The p-equivalent circuit for the magnetically coupled coils of Fig. C.1.
Note that the initial values of i1 and i2 are explicit in the p-equiva-
lent circuit but implicit in the T-equivalent circuit. If we want to find the
sinusoidal steady-state behavior of circuits containing mutual inductance,
L1L2 2 M2
we can assume that the initial values of i1 and i2 are zero. We can thus
R1 a M c R2
eliminate the current sources in the p-equivalent circuit, and the circuit
2
shown in Fig. C.4 simplifies to the one shown in Fig. C.5. 1 L1L2 2 M 1 i
i1 2
The mutual inductance carries its own algebraic sign in the T- and p- L2 2 M
v1 v2
equivalent circuits. In other words, if the magnetic polarity of the cou- L1L2 2 M2
pled coils is reversed from that given in Fig. C.1, the algebraic sign of M 2 L1 2 M 2
reverses. A reversal in magnetic polarity requires moving one polarity b d
dot without changing the reference polarities of the terminal currents and
voltages. Figure C.5 ▲ The p-equivalent circuit used for
Example C.1 illustrates the application of the T-equivalent circuit. sinusoidal steady-state analysis.
EXAMPLE C.1
a) Replace the magnetically coupled coils shown in b) Repeat (a), but with the polarity dot on the sec-
Fig. C.6 with a T-equivalent circuit. Then find the ondary winding moved to the lower terminal.
phasor currents I1 and I2. The source frequency
is 400 rad>s. j100 V
500 V a 200 V j1200 V 100 V 800 V
I1 1 1
1
300 08 V V1 j 3600 V j1600 V V2 I2 2j 2500 V
2
2 2
b
Figure C.6 ▲ The frequency-domain equivalent circuit for Example C.1.
764 More on Magnetically Coupled Coils and Ideal Transformers
Solution Then
a) For the polarity dots shown in Fig. C.6, M has a 300 - (136 - j8)
I1 = = 63.25 l -71.57° mA
value of +3 H in the T-equivalent circuit. There- 700 + j2500
fore, the three inductances in the equivalent
and
circuit are
136 - j8
L1 - M = 9 - 3 = 6 H; I2 = = 59.63 l63.43° mA.
900 - j2100
L2 - M = 4 - 3 = 1 H;
b) When the polarity dot is moved to the lower
M = 3 H. terminal of the secondary coil, M has a value of
-3 H in the T-equivalent circuit. Before analyz-
Figure C.7 shows the T-equivalent circuit, and
ing the new T-equivalent circuit, we note that re-
Fig. C.8 shows the frequency-domain equivalent
versing the algebraic sign of M has no effect on
circuit at a frequency of 400 rad>s.
the solution for I1 and shifts I2 by 180°. Therefore,
we anticipate that
6H 1H
I1 = 63.25 l -71.57° mA
3H and
500 V j 100 V 200 V j 2400 V j400 V 100 V The resulting frequency-domain circuit for
the original system appears in Fig. C.11. As be-
I1 1 I2 fore, we first find the voltage across the center
1 800 V branch, which contains a capacitive reactance of
300 08 V j 1200 V V
2 -j1200 Ω. If we use the lower node as the refer-
2j2500 V
2 ence, the KCL equation is
500 V j100 V 200 V j4800 V j 2800 V 100 V
Figure C.9 ▲ The circuit of Fig. C.6, with the magnetically
coupled coils replaced by their T-equivalent circuit. I1 1 I2
1 800 V
V - 300 V V 300 08 V 2j1200 V V
+ + = 0. 2
700 + j2500 j1200 900 - j2100 2
2j 2500 V
V - 300 V V and
+ + = 0.
700 + j4900 - j1200 900 + j300 -8 - j56
I2 =
Solving for V gives 900 + j300
V = -8 - j56 = 59.63 l -116.57° mA.
= 56.57 l -98.13° V.
Then
300 - ( -8 - j56)
I1 =
700 + j4900
= 63.25 l -71.57° mA.
M L2 M
L1 2 a 2 a i2 i1 a2L1 2 Ma L2 2 Ma
a2
1:a 1:a
1 i1 1 1 i2 1
v1 M v2 v1 Ma v2
a
2 Ideal 2 2 Ideal 2
(a) (b)
L1L2 2 M 2 a(L1L2 2 M 2)
i1 i2 i1 i2
Ma M
1:a 1:a
1 1 1 1
2 2
L2L1 2 M L1L2 2 M a2(L1L2 2 M 2) a 2(L1L2 2 M 2)
v1 v2 v1 v2
L2 2 Ma a2L1 2 Ma L2 2 Ma a2L1 2 Ma
2 Ideal 2 2 Ideal 2
(c) (d)
Figure C.12 ▲ The four ways of using an ideal transformer in the T- and p-equivalent
circuit for magnetically coupled coils.
L2 M We redrew the circuit shown in Fig. C.12(a) as Fig. C.13, adding the
M 2 a i2
L1 2 a a2 variables i0 and v0 to aid the discussion. From this circuit,
1 1 N1 N2 1 M di1 M d
i1 i0 v1 = a L1 - b + (i + i0)
v1 M v0 v2 a dt a dt 1
a
2 2 Ideal 2
and
(a)
Figure C.13 ▲ The circuit of Fig. C.12(a) with i0 and
L2 M di0 M d
v0 = a - b + (i + i1).
v0 defined. a2 a dt a dt 0
The ideal transformer imposes constraints on v0 and i0:
v2
v0 = ;
a
i0 = ai2.
di1 M d
v1 = L1 + (ai )
dt a dt 2
and
v2 L2 d M di1
= 2 (ai2) + .
a a dt a dt
Simplifying, we get,
di1 di2
v1 = L1 + M
dt dt
C.2 The Need for Ideal Transformers in the Equivalent Circuits 767
and
di1 di2
v2 = M + L2 .
dt dt
These expressions for v1 and v2 are identical to Eqs. C.1 and C.2. Thus, the
circuit shown in Fig. C.13 is equivalent to the magnetically coupled coils
shown inside the box in Fig. C.1 because the terminal behavior of these
two circuits is the same.
When we showed that the circuit in Fig. C.13 is equivalent to the mag- 1
i1 L1 21 i2
netically coupled coils in Fig. C.1, we placed no restrictions on the turns k2
ratio a. Therefore, an infinite number of equivalent circuits are possible. 1 1:a 1
However, we can always find a turns ratio that makes all of the induc-
v1 L1 v2
tances positive. Two values of a are of particular interest:
2 2
Ideal
M
a = , (C.7) (a)
L1
and i1 (1 2 k2)L2
1 1:a 1
L2 i2
a = . (C.8) v1 2
k L2 v2
M
2 2
The value of a given by Eq. C.7 eliminates the inductances L1 - M>a Ideal
and a2L1 - aM from the T-equivalent circuits and the inductances (b)
(L1L2 - M 2)>(a 2L1 - aM) and a2(L1L2 - M 2)>(a2L1 - aM) from the
p-equivalent circuits. The value of a given by Eq. C.8 eliminates the induc- Figure C.14 ▲ Two equivalent circuits when
tances (L2 >a2) - (M>a) and L2 - aM from the T-equivalent circuits and a 5 MNL1.
the inductances (L1L2 - M 2)>(L2 - aM) and a2(L1L2 - M 2)>(L2 - aM)
from the p-equivalent circuits.
Also note that when a = M>L1, the circuits in Figs. C.12(a) and (c) L1(1 2 k2) i2
are identical, and when a = L2 >M, the circuits in Figs. C.12(b) and (d) 1:a
1 i1 1
are identical. Figures C.14 and C.15 summarize these observations. We
can use the relationship M = k 1L1L2 to derive the inductor values in v1 2
k L1 v2
Figs. C.14 and C.15 as functions of the self-inductances L1 and L2, and the 2 2
Ideal
coupling coefficient k. Then, the values of a given by Eqs. C.7 and C.8 will
reduce the number of inductances needed in the equivalent circuit and (a)
guarantee that all the inductances will be positive.
1
The values of a given by Eqs. C.7 and C.8 can be determined exper- i1 L2 21 i2
k2
imentally from the magnetically coupled coils. To find the ratio M>L1,
drive the coil with N1 turns using a sinusoidal voltage source and leave 1 1:a 1
the N2 coil open. Use a source frequency that guarantees vL1 W R1. v1 L2 v2
Figure C.16 shows the resulting circuit.
Because the N2 coil is open, 2 2
Ideal
(b)
V2 = jvMI1.
Figure C.15 ▲ Two equivalent circuits when
Since vL1 W R1, the current I1 is a = L2NM.
V1
I1 = . I1
jvL1
Substituting the expression for I1 into the equation for V2 and rearranging 1
yields 1
V1 jwL1 jwL2 V2
2
V2 M N1 N2 2
a b = .
V1 I2 = 0 L1
Figure C.16 ▲ Experimental determination of the
Thus, the ratio M>L1 equals the ratio of the terminal voltages when I2 = 0. ratio MNL1.
768 More on Magnetically Coupled Coils and Ideal Transformers
L2 V2
= a b .
M V1 I1 = 0
EXAMPLE C.2
Consider the circuit we analyzed in part (b) of equivalent circuit in Fig. C.14(a). Remember that
Example C.1, which replaced the magnetically cou- the source frequency is 400 rad > sec. The result is
pled coils in Fig. C.6 (with the polarity dot on the sec- the circuit in Fig. C.17. We have defined the cur-
ondary winding moved to the bottom terminal) with rents and voltages for the ideal transformer, so we
a T-equivalent circuit. The equivalent circuit is shown can write the equations for this circuit. There are
in Fig. C.11 and must use a capacitor to represent the three meshes, so we will write three KVL equations
negative reactance. Repeat the analysis in Example using the mesh currents I1, Ia, and Ib. Then we use
C.1(b). but now replace the magnetically coupled the dot convention for ideal transformers to write
coils with the equivalent circuit in Fig. C.14(a). the equations relating the phasor currents Ia and Ib,
and the phasor voltages Va and Vb:
Solution
(700 + j3700)I1 - j3600Ia - 300 = 0,
From Example C.1(b) we know that L1 = 9 H,
L2 = 4 H, and M = -3 H. We need to calculate -j3600I1 - j14,400Ia + Va = 0,
the coupling coefficient k, the turns ratio a, and
the inductor values for the equivalent circuit in (900 - j2500)Ib + Vb = 0,
Fig. C.14(a):
Vb
M 3 Va = ,
k = = = 0.5, - (1>3)
1L1L2 1(9)(4)
1
M -3 1 Ia = I .
a = = = - , 3 b
L1 9 3
Solving for I1 and Ib,
1 1
L1 a - 1b = 9a 2 - 1b = 27 H.
k 2
0.5 I1 = 0.02 - j0.06 = 63.25l -71.57° mA,
Note that in calculating the coupling coefficient, we
Ib = 0.0267 + j0.0533 = 59.63l63.43° mA.
ignore the sign of the mutual inductance because
this sign represents the location of the polarity Because I2 = -Ib,
marks and has no effect on the amount of coupling
I2 = -0.0267 - j0.0533 = 59.63l -116.57° mA.
between the coils.
Using the values we calculated, we can replace The values for I1 and I2 match those found in
the magnetically coupled coils in Fig. C.6 with the part (b) of Example C.1.
I1 Ia 1 1 :21N3 1 Ib I2
1 800 V
300 08 V j3600 V Va Vb
2
2j2500 V
2 Ideal 2
Figure C.17 ▲ The circuit of Fig. C.6, with the magnetically coupled coils replaced by the equivalent circuit in Fig. C.14(a)
APPENDIX
D The Decibel
The decibel was introduced by telephone engineers to characterize the
power loss across the cascaded circuits used to transmit telephone sig-
nals. Figure D.1 defines the problem.
There, pi is the power input to the system, p1 is the power output of
circuit A, p2 is the power output of circuit B, and po is the power output
of the system. The power gain of each circuit is the ratio of the power
out to the power in. Thus
pi A p1 B p2 C po p1 p2 po
sA = , sB = , and sC = .
pi p1 p2
Figure D.1 ▲ Three cascaded circuits. The overall power gain of the system is the product of the individual
gains, or
po p1 p2 po
= = sAsBsC.
pi pi p1 p2
po
log10 = log10sA + log10sB + log10sC.
pi
The log of a power ratio was named the bel, in honor of Alexander
Graham Bell. Thus, we calculate the overall power gain, in bels, by
summing the power gains, also in bels, of each segment of the trans-
mission system. In practice, the bel is an inconveniently large quantity.
One-tenth of a bel is a more useful measure of power gain—hence the
decibel. The number of decibels equals 10 times the number of bels, so
po
Number of decibels = 10 log10 .
pi
769
770 The Decibel
The decibel is also used as a unit of power when it expresses the ratio
of a known power to a reference power. Usually, the reference power is
1 mW, and the power unit is written dBm, which stands for “decibels rel-
ative to one milliwatt.” For example, a power of 20 mW corresponds to
{13 dBm.
AC voltmeters commonly provide dBm readings that assume not only
a 1 mW reference power but also a 600 Ω reference resistance (a value
commonly used in telephone systems). Since a power of 1 mW in 600 Ω
corresponds to 0.7746 V (rms), that voltage is read as 0 dBm on the meter.
For analog meters, there usually is exactly a 10 dB difference between
adjacent ranges. Although the scales may be marked 0.1, 0.3, 1, 3, 10, and
so on, in fact 3.16 V on the 3 V scale lines up with 1 V on the 1 V scale.
Some voltmeters provide a switch to choose a reference resistance (50,
135, 600, or 900 Ω) or to select dBm or dBV (decibels relative to one volt).
APPENDIX
E Bode Diagrams
The frequency response plot is a very important tool for analyzing a
circuit’s behavior. Up to this point, we have shown qualitative sketches
of the frequency response without discussing how to create these plots.
The best way to generate and plot the amplitude and phase data is to
use a computer; we can rely on it to give us accurate numerical plots of
0 H(jv) 0 and u(jv) versus v. But we can create preliminary sketches of
the frequency response using Bode diagrams.
A Bode diagram is a graphical technique that approximates a sys-
tem’s frequency response. These diagrams are named to recognize the
pioneering work of H. W. Bode.1 They are most useful for systems
whose transfer function poles and zeros are reasonably well separated.
A Bode diagram consists of two separate plots: One shows how the
transfer function amplitude varies with frequency, and the other shows
how the transfer function phase angle varies with frequency. The Bode
diagram plots are constructed using semilog graph paper to accommo-
date a wide range of frequencies. In both the amplitude and phase plots,
the frequency is plotted on the horizontal log scale. The amplitude and
phase angle are plotted on the linear vertical scale.
K(s + z1)
H(s) = ,
s(s + p1)
from which
K(jv + z1)
H(jv) = .
jv(jv + p1)
Kz1(1 + jv>z1)
H(jv) = .
p1(jv)(1 + jv>p1)
Next we let Ko equal Kz1 >p1, and express H(jv) in polar form:
Ko 0 1 + jv>z1 0 lc1
H(jv) =
( 0 v 0 l90° )( 0 1 + jv>p1 0 lb1 )
1
See H. W. Bode, Network Analysis and Feedback Design (New York: Van Nostrand, 1945).
771
772 Bode Diagrams
Ko 0 1 + jv>z1 0
= l(c1 - 90° - b1) .
0 v 0 0 1 + jv>p1 0
Therefore,
Ko 0 1 + jv>z1 0
0 H(jv) 0 = , (E.1)
v 0 1 + jv>p1 0
-1
c1 = tan v>z1;
-1
b1 = tan v>p1.
The Bode diagram includes the plots of Eq. E.1 (amplitude) and Eq. E.2
(phase) as functions of v.
Ko 0 1 + jv>z1 0
AdB = 20 log10 (E.3)
v 0 1 + jv>p1 0
2
See Appendix D for more information regarding the decibel.
E.2 Straight-Line Amplitude Plots 773
25
20
v
20 log10 z1
15
10
AdB
20 dBNdecade
5
0
z1 10z1
25
Decade
1 2 3 4 5 6 7 8 910 20 30 40 50
v (rad s)
0 p1 v 10p1
–20 log10 p
1
–5
AdB
–10
–20 dBNdecade
–15
–20
1 2 3 4 5 6 7 8 9 10 20 30 40 50
v (rad s)
Figure E.3 shows a plot of Eq. E.3 for Ko = 110, z1 = 0.1 rad>s, and
p1 = 5 rad>s. Each term in Eq. E.3 is also plotted in Fig. E.3, so you can
verify that the individual terms sum to create the plot of the transfer func-
tion’s amplitude, labeled 20 log10 0 H(jv) 0 .
774 Bode Diagrams
50
20 log10 |H(jv)| v
20 log10 1 1 j z
1
40
30
220 log10v 20 log10 |H(jv)|
20
AdB
20 log10 Ko
10
0
v
220 log10 1 1 j p
1
210
220
0.05 0.1 0.5 1.0 5 10 50 100 500
v (radNs)
Figure E.3 ▲ A straight-line approximation of the amplitude plot for Eq. E.3.
EXAMPLE E.1
= {20 log10 12
≈ {3 dB.
1
AdBc>2 = {20 log10 ` 1 + j `
2
5
= {20 log10
A4
≈ {1 dB.
= {20 log10 15
≈ {7 dB.
776 Bode Diagrams
20
15
10
3 dB
5
1 dB 1 dB
AdB 0
21 dB 21 dB
25
23 dB
210
215
220
225
vc vc 2vc
2
Figure E.6 ▲ Corrected amplitude plots for a first-order zero and pole.
If the poles and zeros of H(s) are widely separated, you can include
these corrections into the overall amplitude plot and produce a reason-
ably accurate curve. However, if the poles and zeros are close together,
the overlapping corrections are difficult to evaluate, so estimating the am-
plitude characteristic using the uncorrected straight-line plot is a better
choice. Use a computer to create an accurate amplitude plot in the fre-
quency range of interest.
• For frequencies less than one-tenth the corner frequency, the phase
angle is approximated by zero.
• For frequencies greater than 10 times the corner frequency, the
phase angle is approximated by {90°.
• Between one-tenth the corner frequency and 10 times the corner
frequency, the phase angle plot is a straight line with the value 0° at
one-tenth the corner frequency, {45° at the corner frequency, and
{90° at 10 times the corner frequency.
E.4 Straight-Line Phase Angle Plots 777
Throughout, the plus sign applies to the first-order zero and the minus
sign to the first-order pole. Figure E.7 depicts the straight-line approxima-
tion for a first-order zero and pole. The dashed curves show the exact plot
of the phase angle versus frequency. Note how closely the straight-line
plot approximates the actual phase angle plot. The maximum deviation
between the straight-line plot and the actual plot is approximately 6°.
908
c1 5 tan21 (vNz1)
608 Actual
Straight-line approximation
308
2608
2908
Figure E.7 ▲ Phase angle plots for a first-order zero and pole.
EXAMPLE E.2
K
H(s) = ,
(s + a - jb)(s + a + jb)
When making Bode diagrams, we write the quadratic term in a more con-
venient form:
v2n = a2 + b2
and
zvn = a.
E.6 Straight-Line Amplitude Plots for Complex Poles 779
The term vn is the corner frequency of the quadratic term, and z is the
damping coefficient of the quadratic term. If z 6 1, the roots of the qua-
dratic term are complex, and if z Ú 1, the roots are real. Assuming that
z 6 1, we rewrite the transfer function as
K
H(s) = 2
.
s + 2zvns + v2n
We then write the transfer function in standard form by dividing through
by v2n, so
K 1
H(s) = ,
v2n 1 + (s>vn)2 + 2z(s>vn)
from which
Ko
H(jv) = 2
,
1 - (v >v2n) + j(2zv>vn)
where
K
Ko = .
v2n
We replace the ratio v>vn by a new variable, u. Then
Ko
H(jv) = .
1 - u2 + j2zu
Ko
H(jv) = ,
0 (1 - u ) + j2zu 0 lb1
2
from which
and
-1 2zu
u(jv) = -b1 = - tan .
1 - u2
20 Then, as u S 0,
10
-10 log10[u4 + 2u2(2z2 - 1) + 1] S 0,
0
210 and as u S ∞,
AdB
220
240 dBNdecade -10 log10[u4 + 2u2(2z2 - 1) + 1] S -40 log10u.
230
240 From these limiting expressions, we see that the approximate ampli-
250 tude plot consists of two straight lines. For v 6 vn, the straight line
vn 10vn lies along the 0 dB axis, and for v 7 vn, the straight line has a slope of
v (rad s) -40 dB>decade. These two straight lines join on the 0 dB axis at u = 1 or
Figure E.9 ▲ The amplitude plot for a pair of v = vn. Figure E.9 shows the straight-line approximation for a quadratic
complex poles. term with z 6 1.
Figure E.10 ▲ The effect of z on the amplitude plot. and it has a peak amplitude of
EXAMPLE E.3
Compute the transfer function for the circuit shown e) The actual amplitudes are
in Fig. E.12.
AdB(vn >2) = -10 log10(0.6025) = 2.2 dB,
50 mH 1V
vp = 5010.92 = 47.96 rad > s,
1
1
vi 8 mF vo AdB(vp) = -10 log10(0.16)(0.96) = 8.14 dB,
2
2
AdB(vn) = -20 log10(0.4) = 7.96 dB,
Figure E.12 ▲ The circuit for Example E.3.
vo = 12vp = 67.82 rad > s,
AdB(vo) = 0 dB.
a) Find the value of the corner frequency in radians
per second.
b) Find the value of Ko. Figure E.13 shows these four points, identified as
follows:
c) Find the value of the damping coefficient.
• Point 1 has the coordinates (25 rad > s, 2.2 dB),
d) Make a straight-line amplitude plot for frequen-
• Point 2 has the coordinates (47.96 rad > s,
cies from 10 to 500 rad>s.
8.14 dB),
e) Calculate the actual amplitude in decibels at • Point 3 has the coordinates (50 rad > s, 7.96 dB),
vn >2, vp, vn, and vo. Use these values to correct and
the plot in (d). • Point 4 has the coordinates (67.82 rad > s, 0 dB).
f) Using the corrected amplitude plot, describe Figure E.13 also shows the corrected plot, which
the type of filter represented by the circuit in is the dashed line that passes through these four
Fig. E.12 and estimate its cutoff frequency, vc. points.
Solution 15
10 2 3
Transform the circuit in Fig. E.12 to the s- 5 1 4
domain and then use voltage division to get 0
25
1
210
LC AdB 215
H(s) = .
2 R 1 220
s + a bs +
L LC 225
Substituting the component values, 230
235
2500 240
H(s) = 2
.
s + 20s + 2500 245
10 50 100 500
a) From the expression for H(s), v2n = 2500; there- v (rad s)
fore, vn = 50 rad>s.
Figure E.13 ▲ The amplitude plot for Example E.3.
b) By definition, Ko is 2500>v2n, or 1.
c) The coefficient of s in the denominator equals f) The amplitude plot in Fig. E.13 identifies the cir-
2zvn; therefore cuit as a low-pass filter. At the cutoff frequency,
20 the magnitude of the transfer function, 0 H(jvc) 0 ,
z = = 0.20. is 3 dB less than the maximum magnitude. From
2vn
the corrected plot, the cutoff frequency appears
d) See Fig. E.13. to be about 55 rad>s, almost the same as that pre-
dicted by the straight-line Bode diagram.
782 Bode Diagrams
0.62 5 4.812z
0
158
Actual curve
0 2308
2158
z 5 0.1
2308
z 5 0.3 2608
2458
z 5 0.707
2608
u (v) 2908
2758 4408Ndecade
u (v) (7.67 radNdec)
2908
21208
21058
21208
21358 21508
21508
21658 21808
1.6 5 4.81z
21808
0.2 0.4 1.0 2 4 8 1.0 2.0
u u
Figure E.14 ▲ The effect of z on the phase angle Figure E.15 ▲ A straight-line approximation of the phase
plot. angle for a pair of complex poles.
E.8 Phase Angle Plots for Complex Poles 783
EXAMPLE E.4
a) Compute the transfer function, H(s), for the cir- Note that for the quadratic term, u = v>10. The am-
cuit shown in Fig. E.16. plitude of H(jv) in decibels is
250 mH AdB = 20 log10 0 1 + jv>25 0
1
v 2 v
- 20 log10 c ` 1 - a b + j0.4a b ` d,
1V 10 10
1
vi vo
2 and the phase angle is
40 mF
u(jv) = c1 - b1,
2
where
Figure E.16 ▲ The circuit for Example E.4. -1
c1 = tan (v>25),
b) Make a straight-line amplitude plot of
20 log10 0 H(jv) 0 . -1
0.4(v>10)
b1 = tan .
c) Use the straight-line amplitude plot to determine 1 - (v>10)2
the type of filter represented by this circuit and
Figure E.17 shows the amplitude plot and includes the
then estimate its cutoff frequency.
plots of the two terms that make up AdB.
d) Find the actual cutoff frequency.
e) Make a straight-line phase angle plot of H(jv). 60
f) Using the plot in (e), find the phase angle at the
estimated cutoff frequency found in (c). 40
20 log10 1 1 jvN25
g) Find the phase angle at the actual cutoff frequen- 20
cy found in (d).
0
AdB AdB 5 20 log10H(jv)
Solution 220
a) Transform the circuit in Fig. E.16 to the s-domain 240
and then use voltage division to get 220 log10 12
v 2
1 j 0.4
v
10 10
R 1 260
s +
L LC 280
H(s) = . 1 5 10 50 100 500 1000
R 1
s2 + s + v (rad s)
L LC
Figure E.17 ▲ The amplitude plot for Example E.4.
Substituting the component values from the cir-
cuit gives
c) The straight-line amplitude plot in Fig. E.17 indi-
4(s + 25) cates that the circuit is a low-pass filter. At the cutoff
H(s) = . frequency, the amplitude of H(jv) is 3 dB less than
s2 + 4s + 100
the amplitude in the passband. From the plot, we
b) The first step in making Bode diagrams is to put predict that the cutoff frequency is approximately
H(jv) in standard form. Because H(s) contains a 13 rad>s.
quadratic factor, we first check the value of z. We d) To solve for the actual cutoff frequency, replace s with
find that z = 0.2 and vn = 10, so jv in H(s), compute the expression for 0 H(jv) 0 , set
s>25 + 1 0 H(jvc) 0 = 11 > 12 2 Hmax = 1 > 12, and solve for vc.
H(s) = ,
1 + (s>10)2 + 0.4(s>10) First,
from which
0 1 + jv>25 0 lc1 4(jv) + 100
H( jv) = . H(jv) = .
0 1 - (v>10)2 + j0.4v>10 0 lb1
2
(jv) + 4(jv) + 100
784 Bode Diagrams
21808
1 5 10 50 100 5001000
v (radNs)
F An Abbreviated Table of
Trigonometric Identities
1. sin(a { b) = sina cosb { cosa sinb
a + b a - b
3. sina + sinb = 2 sin cos
2 2
a + b a - b
4. sina - sinb = 2 cos a b sin a b
2 2
a + b a - b
5. cosa + cosb = 2 cos a b cos a b
2 2
a + b a - b
6. cosa - cosb = -2 sin a b sin a b
2 2
1 1
12. cos2a = + cos2a
2 2
1 1
13. sin2a = - cos2a
2 2
tana { tanb
14. tan(a { b) =
1 | tana tanb
2 tana
15. tan2a =
1 - tan2a
785
APPENDIX
G An Abbreviated Table of
Integrals
e ax
L
1. xe axdx = (ax - 1)
a2
e ax 2 2
L
2. x 2e ax dx = (a x - 2ax + 2)
a3
L
1 x
3. x sinax dx = 2
sinax - cosax
a a
L
1 x
4. x cosax dx = 2
cosax + sinax
a a
e ax
L
5. e ax sinbx dx = (a sinbx - b cosbx)
a + b2
2
e ax
L
6. e ax cosbx dx = (a cosbx + b sinbx)
a2 + b2
Lx + a
dx 1 x
7. 2 2
= tan - 1
a a
L
dx 1 x 1 x
8. 2 2 2
= 2
a 2 2
+ tan - 1 b
(x + a ) 2a x + a a a
786
An Abbreviated Table of Integrals 787
L
x sin2ax
12. sin2ax dx = -
2 4a
L
x sin2ax
13. cos2ax dx = +
2 4a
p
∞ 2 , a 7 0;
L0 a + x
a dx
14. 2 2
= • 0, a = 0;
-p
2 ,a 6 0
∞ p
L0
sinax , a 7 0;
15. dx = e -2p
x 2 ,a 6 0
a 2x 2 - 2
L
2x
16. x 2 sinax dx = sinax - cosax
a2 a3
a 2x 2 - 2
L
2x
17. x 2 cosax dx = 2
cosax + sinax
a a3
e ax 2b2
L
18. e ax sin2 bx dx = c 1a sinbx - 2b cosbx2 sinbx + d
a2 + 4b2 a
e ax 2b2
L
19. e ax cos2 bx dx = 2 2
c 1a cosbx + 2b sinbx2 cosbx + d
a + 4b a
APPENDIX
H Common Standard
Component Values
Resistors (5% tolerance)[Ω]
10 100 1.0 k 10 k 100 k 1.0 M
120 1.2 k 12 k 120 k
15 150 1.5 k 15 k 150 k 1.5 M
180 1.8 k 18 k 180 k
22 220 2.2 k 22 k 220 k 2.2 M
270 2.7 k 27 k 270 k
33 330 3.3 k 33 k 330 k 3.3 M
390 3.9 k 39 k 390 k
47 470 4.7 k 47 k 470 k 4.7 M
560 5.6 k 56 k 560 k
68 680 6.8 k 68 k 680 k 6.8 M
Capacitors
10 pF 22 pF 47 pF
100 pF 220 pF 470 pF
0.001 mF 0.0022 mF 0.0047 mF
0.01 mF 0.022 mF 0.047 mF
0.1 mF 0.22 mF 0.47 mF
1 mF 2.2 mF 4.7 mF
10 mF 22 mF 47 mF
100 mF 220 mF 470 mF
Inductors
Value Current Rating
10 mH 3A
100 mH 0.91 A
1 mH 0.15 A
10 mH 0.04 A
788
Answers to Selected Problems
Chapter 1 3.14 a) 1008 Ω , 336 Ω
Chapter 3 4.5 a) i4 + i6 - i5 - I = 0
4.62 a) -0.85 A v = -2 V 25 6 t 6 50 ms
v = 0 50 ms 6 t
b) -0.85 A
p = 0 t … 0
4.68 8 mA down in parallel with 10 kΩ
p = 8t W 0 … t … 25 ms
4.72 a) 29.262 V
p = 8t - 0.4 W 25 6 t … 50 ms
b) -8.55% p = 0 50 ms … t
4.79 150 Ω w = 0 t … 0
2
4.88 2.5 Ω and 22.5 Ω w = 4t J 0 … t … 25 ms
2
4.93 a) 25 V w = 4t - 0.4t
b) 31.25 W + 10 * 10 -3 J 25 … t … 50 ms
w = 0 50 ms … t
4.105 39.583 V, 102.5 V
4
6.21 a) -50 * 10 t + 15 V
b) 106t V
Chapter 5
c) 1.6 * 106t - 12 V
5.5 -15 V
d) 52 V
5.11 a) 0 … s … 0.40
e) 60 v (V)
b) 556.25 mA
50
5.13 0 … Rf … 60 kΩ 40
30
5.20 a) 10.54 V 20
b) -4.55 V … vg … 4.55 V 10 t (ms)
0
c) 181.76 kΩ 0 10 20 30 40 50
5.27 a) -15.1 V
b) 34.3 kΩ 6.27 10/3 nF with an initial voltage drop of 15 V; 10 mF
c) 250 kΩ with an initial voltage drop of 25 V
5.30 a) 16 V 6.31 a) -20e -25t V, t Ú 0
b) -4.2 V … vb … 3.8 V b) -16e -25t + 21 V, t Ú 0
5.34 2994 Ω … Rx … 3006 Ω -25t
c) -4e - 21 V, t Ú 0
Answers to Selected Problems 791
b) 24 mH b) 10e -5000t V, t Ú 0+
6.53 a) (2.1, 4.3); (3.2, 2.5); (2.1, 2.5); (3.2, 4.3) e) Yes
RC L0 b
1
7.3 a) 1 A 7.94 a) (v - va)dy
b) 2 ms b) Output is the integral of the difference between
c) 1e -500t A, t 7 0; -160e -500t V, t Ú 0 + ; vb and va, scaled by a factor of 1>RC
-90e -500t V, t Ú 0 + c) 120 ms
d) 34.6% 7.105 73 beats per minute
7.9 a) 0 A, 100 mA, 0 V
b) 400 mA, 100 mA, –20 V Chapter 8
c) 500 mA, 0 A, 0 V
8.2 31.67e -500t - 6.67e -2000t V, t Ú 0
-4000t
d) 0.1e A
8.7 a) 1.25 H, 125 mF, -200 V>s, 5 V
e) (0.5 - 0.1e -4000t ) A
b) (2000t - 75)e -80t mA, t Ú 0 +
-4000t
f) -20e V
8.11 100e -400t cos 300t -
-2402t
7.19 a) -8.89e A t Ú 0
800e -400t sin 300t V, t Ú 0
b) 131.59 mJ
8.13 - 300e -250t + 400e -1000t V, t Ú 0
c) 1.498t -501.4t -1276.3t
8.28 4 + 1.86e - 3.86e A, t Ú 0
7.23 a) 59.4e -1000t V, t Ú 0
8.39 8 kΩ, 2 H, 7.5 mA, 0
b) 9.9e -1000t mA, t Ú 0 +
8.50 (20 - 10,000te -500t - 20e -500t) V, t Ú 0
7.29 a) 8 kΩ
8.56 a) 25e -30,000t sin 40,000t V
b) 0.25 mF
b) 23.18 ms
c) 2 ms
c) 9.98 V
d) 648 mJ
d) 100.73e -6000t sin 49,638.7t V, 29.22 ms, 83.92 V
e) 1139 ms
792 Answers to Selected Problems
h) 25 cos 400pt V b) 2 A
b) b) 6583.94 V(rms)
12.54 zero at -3 rad>s, poles at 0 and two at -2 rad>s; 13.36 3 18.27 * 10 -5 2e -99t - e -250t 4 u1t2 A
zero at -5 rad>s, poles at ( -3 + j4) rad>s, 13.38 3 96e -5t - 96e -20t 4 u(t) V
( -3 - j4) rad>s and two at -1 rad>s 32 * 104(s + 320)
12.57 0.8282 13.43 a)
s(s + 400)(s + 600)
b) 3 426.67 + 320e -400t - 746.67e -600t 4 u(t) V
Chapter 13
25
3 s2 + 47190s + 9.52 * 10 8 4 13.50 a) ; no zeros, pole at -25 rad>s
s + 25
13.4 a)
s s
b) ; zero at 0, pole at -25 rad>s
b) zeros at -23.59 * 103 + j 29.94 * 109rad>s, s + 25
-23.59 * 103 - j 29.94 * 109rad>s; Pole at 0 s
c) ; zero at 0, pole at -2000 rad>s
19.8 * 109s s + 2000
13.5 a) 2 2000
s + 1.98 * 106s + 99 * 1010 d) ; no zeros, pole at -2000 rad>s
b) zero at z1 5 0; s + 2000
Poles at 0.2 s
e) ; zero at 0, pole at -3200 rad>s
-990 + j 100 krad>s, - 990 - j100 krad>s s + 3200
-104(s + 5000)
13.9 a) 13.55 a)
s(s + 25,000)
3328 150 V b) zero at -5000 rad>s, poles at 0
S
75 1 and -25,000 rad>s
0.3 S
S 2 Io c) 3 -2000t - 0.32 + 0.32e -25,000t 4 u(t) V
13.62 e -t V, 0 … t … 1 s; (1 - e)e -t V, 1 s … t … ∞
c) 0.4 A 14.34 4 kΩ
d) - 0.2 A 14.42 a) 397.89 Ω, 3.17 mH
6
e) 0.4e -10 tu1t2 A b) 4.42 kHz, 3.62 kHz
-106t
f) -0.4e u1t2 A c) 800 Hz
6
g) 3 1 -1.6 * 10 -3 2d1t2 4 - 3 1600e -10 tu1t2 4 V 14.51 a) 0.39 H, 0.1 mF
13.94 a) 0A, 2522 A b) V697 Hz = V941 Hz = 0.707 Vpeak ;
1449p(122.92 22s - 3000p22) V770 Hz = V852 Hz = 0.948 Vpeak
b)
(s + 1475p)(s2 + 14,400p2) c) 0.344 Vpeak
30022
+ , [178.8222e -1475pt
(s + 1475p)
+ 122.0622 cos(120pt + 6.85°)] V, Chapter 15
30022 V 15.1 a) 67.16 Ω, 212.21 Ω
d)
750 nF
v0 (V)
500
212.21 V
400
300 1 2
67.16 V 1
200 vi 1
vo
100
2 2
0 t (ms)
2.5 5 7.5 10 12.5 15 17.5 20
2100 15.8 a) 4.08 kΩ, 22.94 kΩ
2200 b)
22.94 kV
Chapter 14
1 2
14.1 a) 3819.72 Hz
3.9 nF 4.08 kV 1
1
b) 0.7071l - 45°, 0.9923l - 7.125°, vi vo
0.124l - 82.875° 2 2
15.34 a) 3 75
16.3 + 12.5 cos vot -
b) -32.65 dB p
p n =a
150 ∞ cos 1np>22cos 1nvot2
15.58 a) R1 = 2 Ω , R2 = 20>790 Ω , R3 = 40 Ω V
2,4,6 11 - n2 2
b) 16.11 a) 2 p rad>s
b) yes
10 nF 63.64 V c) No
kV d) Yes
2
a
1 10 nF 1
∞ 2(np)2 + 4
16.22 a) 6.36 cos (nv0t - un) A
1 n = 1,3,5, c n2
vi 40.29 V vo
2 un = tan -1( np
2 )
2
b) 14.8 A
15.60 a) See component values in part (b)
16.28 a) [1.9999 cos(200t + 0.48°) +0.6662 cos (600t +
b)
177.85°) + 0.286 cos(1400t - 176.66°) V
0.5 mF 0.5 mF
2 b) Fifth harmonic
1 1 16.35 1.85 W
1
2V 16.39 a) 117.55 V(rms)
79.6 V 79.6 V
1 mF b) -2.04%
39.8 V
2 vo c) 69.2765 V(rms), -0.0081%
vi
1 Vm Vm
16.44 C 0 = , Cn = 2 3 1 + j2pn - C -j2pn 4 ,
2 n 12p22
2 77.6 V
2 n = {1, {2, {3, c
s2 + 64 * 106p2 16.50 a)
c) An(mA)
s2 + 800ps + 64 * 106p2 200
180
15.62 R1 = 100 kΩ, R2 = 400 kΩ, C 1 = 7.96 nF
150
90.56
100
Chapter 16
16.1 a) 785.4 rad>s, 78.54 krad>s 50 38.2
26.03 19.1 15.4 12.73
b) 125 Hz, 12.5 Hz
0
nv0
c) 25 V, 0 0 v0 2v0 3v0 4v0 5v0 6v0
100 pk
d) aka = sin , b = 0;
pk 2 ka 140
u8
122.988
120 pk
akb = sin , k odd, akb = 0; 120
pk 2 101.988 97.268
120 100 908 908 908
for k even, bkb = 3 1-cos ( kp ) 4 80
pk
for k odd, bkb = 0 for k even 60
a
40
100 ∞ 1 np
e) 25 + a sin cos nv0tb V, 20
p n=1 n 2
0
a
120 ∞ 1 np 0 v0 2v0 3v0 4v0 5v0 6v0 nv0
a sin cos nv0t + 2 sin nwotb V
p n = 1,3,5 n 2
Answers to Selected Problems 797
b) 1
c)
200
|Cn|(mA) 1 + j 2p (f + 0.5)
180 p
d) a b e -a|v|
a
e) 2 p d(v)
100 t # sin 3 (v + v0)(t>2) 4
17.19 a)
2 (v + v0)(t>2)
45.28 45.28
t # sin 3 (v - v0)(t>2) 4
13.02
19.1 19.1
13.02 9.55 +
6.37 7.7 9.55 7.7 6.37 2 (v - v0)(t>2)
26 25 24 23 22 21 0 1 2 3 4 5 6n b) F(v) S p3 d(v - v0) + d(v + v0) 4
17.28 a) 3 416.67e -20t - 250e -100t 4 u(t) +
166.67e 100t u( -t) V
u8
150
122.488 b) 166.67 V
101.988 97.268
908 908 908
c) 166.67 V
d) 1416.67e -20t - 250e -100t 2u 1t2 V
e) Yes
26 25 24 23 22 21 0 1 2 3 4 5 6 n
17.30 0.024 cos 11000t + 90°2 A
17.40 a) 3 ( -24e -t + 32e -5t>2)u(t) + 8e tu( -t) 4 V
2908 297.268 2908 2908
2101.988
2150
b)
2122.488
Vg(v)
60
400
16.57 a) , 2000 rad>s, 16 * 10 8 rad2 >sec2 50
313
b) 3 -80 cos v0t - 0.50 cos(3v0t + 91.07°) 40
30
+ 0.17 cos(5v0t + 90.60°) 4 V
20
10
Chapter 17 v
-2A vt cos 1vt>22- 2 sin 1vt>22 –5 –4 –3 –2 –1 0 1 2 3 4 5
17.1 a) j ` `
t v2
b) 0 c)
50 Vo(v)
c)
40
|F(v)|
5 30
4 20
3 10
2 v
1 25 24 23 22 21 0 1 2 3 4 5
v d) 900 J
2200 2150 2100 250 0 50 100 150 200
e) 320 J
f) 95.95%
10e -j3v
17.5 a) g) 99.75%
25 + v2
b) 2 j sinv
798 Answers to Selected Problems
799
800 Index
Kirchhoff’s laws for, 68–72, 515 dependent sources, 56, 59, 73–76, 78 lumped-parameter systems, 35–36
Laplace transform in, 510–563 electrical radiator examples of, 55, magnetic coupling, 35
Laplace transform method for, 76–77 net charge, 35
515–516, 549 electrical sources, 56 open, 65
maximum power transfer, 120, equivalent circuits in s domain, passive sign convention for, 42–45
154–156, 163 513–514, 549 power, 31, 43–48, 61–62
mesh-current method, 120, 132–143, in series, 69, 78 pushbutton telephone, 565, 592
162–163, 382–375 inductance (L), 222–237, 239, resistive, 60–63, 86–119
natural response method, 248, 252, 512–513, 549 short, 65
258, 269–270, 284 Kirchhoff’s laws for, 67–72, 73–75, surge suppressors for, 511, 548
node-voltage method, 120, 124–132, 78 transient effects on, 473, 502–504
140–143, 162–163, 372–373 Laplace transform method and, voltage (v), 40–41, 43–45, 62
nonplanar circuits for, 122 512–515 voltage-divider, 92–94, 107
Norton equivalent circuits for, 120, loops (closed path), 68, 78 Wheatstone bridge, 101–103, 108
148–151, 163 model construction, 64–66 Clock for computer timing, circuit
Ohm’s law for, 70–71, 514 nodes, 67, 78 analysis of, 301, 336–337
operational amplifiers (op amps), Ohm’s law for, 60–61, 70–71, Closed path (loop), 68, 78
178–209 73–75, 78, 512 Coefficient of coupling, 235–236,
passive sign convention for, 42–43 passive, 58 239
physical prototypes, 40 resistance (R), 60–63, 512, 549 Common mode input, 192
planar circuits for, 122 s domain representation, 512–514, Common mode rejection ratio
resistive circuits, 96–98, 107–108, 549 (CMRR), 193–195, 201
121, 143–146, 159–162 symbols for, 56–57 Communication systems, 32–33
s domain, 514–516, 549 voltage sources, 56–59, 78 Complex numbers, 755–760
sensitivity analysis, 121, 159–162 Circuit models, 41, 55, 60–66, 75–77, addition/subtraction of, 757
sequential switching and, 274–278, 182–183, 195–198, 200–201, arithmetic operations, 757–758
284 720, 740 graphical representation of,
simultaneous equations for, advantage of, 41 756–757
122–124 amplifier, 75 identities for, 758–759
sinusoidal steady-state, 346–401 approximation for, 66 integer power of, 759
source transformation, 120, 143–146, construction of, 64–66, 71–72 multiplication/division of, 757
149, 162, 368–371 electrical behavior of components, 65 notation for, 755–756
step response method, 248, 262, 266, electrical effects from, 65 polar form, 755–756
269–270, 284 electrical radiator, 55, 76–77 rectangular form, 755–756
superposition, 120, 157–159, 163 flashlight (electrical system), 64–66, roots of, 759–760
surge suppressors and, 511, 548 67–69 Complex power, 412–421, 429,
terminal behavior and, 146–154, operational amplifiers (op amps), 454–455
180–184 182–183, 195–198, 200–201 apparent power (magnitude),
terminals, 146–154 resistors, 60–63 413, 429
Thévenin equivalent circuits for, terminal measurements for, 66, balanced three-phase circuits,
120, 146–154, 163 71–72 454–455
transformers, 375–384, 389 two-port, 720, 740 balancing power in ac circuits,
voltage division, 96–98, 107, 362 Circuit theory, 35–36 419–420
Circuit components, 39–41, 65, 352, Circuits, 30–53, 60–63, 86–119, 473, calculations for, 412–421, 429
606, 788 502–504, 511, 548, 565, 592 defined, 412
electrical behavior of, 65 analysis of, 39–40 delta (Δ) loads, 454–455
ideal, 39–40 current (i), 40–41, 43–45, 61 parallel loads and, 418–419
models, 41, 65 current-divider, 95, 107 phasors for, 415–416
scale factors, 606 delta-to-wye (Δ-to-Y) equivalent, power calculations for, 412–421,
steady-state current, 352 103–106, 108 429, 454–455
transient current, 352 electrical charge, 40–41 power triangle relationship, 413
values, 788 electrical effects, 35 units for, 412–413, 429
Circuit elements, 54–85, 222–237, 239, electrical engineering and, 30–37 wye (Y) loads, 454
512–514, 549 energy and, 43–45 Computer systems, 33
active, 58 frequency ( f ) and, 35 Condition of equivalence, 144
capacitance (C), 223–226, 239, ideal basic element, 42–43 Conductance (G), 61, 364
513–514, 549 International System of Units (SI) Continuous functions, 474–475
current sources, 56–59, 78 for, 37–39 Control systems, 33
802 Index
Convolution, 533–539, 549, 702–703 resistor-inductor (RL) circuit differential mode input, 192
Fourier operational transforms, expression, 250–252 ideal op-amp model for, 190–195,
702–703 sinusoidal source, 348–349 201
frequency domain, 703 steady-state analysis and behavior negative feedback in, 190
integral, 533–539, 549, 703 of, 346, 352, 355–361, 381–383 Differential mode input, 192
memory, concept of using, 538–539 steady-state component, 352 Differentiation, operational trans-
output signal from, 537–538 step response inductor, 317–318 forms for, 482–483, 701
time domain, 702 transient component, 352 Digital meters, 101, 108
transfer function (H(s)) in, Current coil, 458, 463 Digital signal filtering, 689, 713–714
533–539, 549 Current-divider circuit, 95, 107 Direct approach for Fourier series,
weighting function and, 538 Current division, 97–98, 107–108, 364 663–665
Cosine functions, 659–660, 678, frequency domain, 364 Dirichlet’s conditions, 649
697–698 resistive circuit analysis, 97–98, Discontinuities of circuits, 475–478,
Cramer’s method, 750–752 107–108 504. See also Impulse function;
Critically damped response, 314–317, Current sources, 56–59, 78 Step function
319–321, 325–327, 328–329, 337 Current to voltage (i–v) relationships, Discontinuous functions, 474–475
natural response, 314–317, 325–328, 213–214, 218 Displacement current, 217–218
337 Cutoff frequency (vc), 568–570, 572, Domain translation, Laplace trans-
parallel RLC circuits, 314–317, 580–581, 584, 590, 592 form for, 484–485
319–321, 337 bandpass filters, 580–581, 584 Dot convention, 227–229, 239,
series RLC circuits, 325, 325–327, bandreject filter, 590 382–383
329 bandwidth (b) relationship to, 581 ideal transformers, 382–383
step response, 319–321, 328–329 center frequency (vo) relationship mutual inductance, 227–229, 239
Current (i), 40–45, 61, 67–68, 69, 78, to, 581 polarity and, 227–229, 239, 382–383
86, 98–101, 108, 180–184, 200, defined, 568–570, 592 procedure for determining, 228–229
212–214, 217–221, 250–252, half-power frequency, 569 Duality, 132, 226–227, 239. See also
258, 317–318, 346, 348–349, 352, low-pass filters, 568–570, 572 Symmetry
355–361, 381–383, 445, 446–447, RL circuit filters, 572 Dual-tone multiple-frequency
450–451, 463, 667–669 RLC circuit filters, 581, 584 (DTMF) design, 565
balanced three-phase circuits, 445, Dynamo, 56
446–447, 450–451, 463
capacitors, 217–221 D
defined, 41 d’Arsonval meter movement, 99 E
displacement, 217–218 Damped radian frequency (vd), 310, Effective value, 411
dot convention for, 382–383 321, 327, 329 Efficiency, power system optimization
electric charge and, 40–42 Decaying exponential function, 480 for, 154
Fourier series applications, 667–669, Decibels (dB), 769–770 Electric power transmission and
frequency domain and, 355–361, Delta (Δ) interconnection, 104 distribution, 441, 461–463
381–383 Delta (Δ) loads, 454–455 Electrical charge, 40–41
ideal transformer ratios, 381–383 Delta-to-wye (Δ-to-Y) transforma- Electrical engineering, 30–37
inductor relationships, 212–214 tions, 103–106, 108, 366–368 balancing power, 31
initial inductor (I0), 251 equivalent circuits, 103–106, 108 circuit theory for, 35–36
input constraint, 182 frequency domain, 366–368 communication systems, 32–33
Kirchhoff’s current law (KCL), Dependent sources, 56, 59, 73–76, computer systems, 33
67–68, 69, 78, 360–361 126–128, 135–136, 150, 158–159 control systems, 33
line, 445, 446–447, 450–451, 463 analysis of circuits with, 73–76, interaction of systems, 34
measurement of, 86, 98–101, 108 126–128, 135–136, 158–159 power systems, 33
natural response and, 250–252, 258 circuit elements as, 56, 78 problem-solving strategy, 36–37
Ohm’s law for, 61, 78 interconnections of, 59 profession of, 30
op-amp terminals, 180–184, 200 mesh-current method for, 135–136 signal-processing systems, 33
periodic, 667–669 node-voltage method for, 126–128 Electrical radiator circuits, 55, 76–77
phase, 446–447, 450–451, 463 Ohm’s law for, 73–75 Electrical sources, 56. See also Sources
polarity of, 382–383 superposition for, 158–159 Electrodynamic wattmeter, 458–461,
polarity reference, 42 Thévenin equivalent circuits of, 150 463
power and energy relationship to, Derived units, 38 Energy, 43–45, 210, 215–217, 219,
43–45 Difference-amplifier circuit, 190–195, 201 235–237, 239, 254, 258, 402,
resistor power in terms of, 61 common mode input, 192 707–713, 714
resistor-capacitor (RC) circuit common mode rejection ratio capacitors and, 210, 219, 239
expression, 258 (CMRR) for, 193–195, 201 inductors and, 210, 215–217, 239
Index 803
mutual inductance and, 235–237, 239 Flashlight (electrical system) circuit inverse, 691
natural response and, 254, 258 model, 64–66, 67–69 Laplace transforms for, 694–696
power and, 43–45 Fourier coefficients, 649–658, 677 limiting values, 690–691, 693–698
Parseval’s theorem for, 707–713, even-function symmetry, 653–654 mathematical properties of,
714 Fourier series of periodic function 699–700
power calculations for delivery found with, 658 operational transforms, 700–704
of, 402 Fourier series of triangular wave- Parseval’s theorem for, 707–713, 714
resistor-capacitor (RC) circuit form using, 651–652 periodic to aperiodic transition, 688,
expression, 258 half-wave symmetry, 655–656 691, 714
resistor-inductor (RL) circuit odd-function symmetry, 654–655 periodic voltage pulse from, 691
expression, 254 periodic functions ( f (t)) for, steady-state response from, 706
storage in magnetically coupled 649–658 time-domain (f(t)), 690–691,
coils, 235–237, 239 quarter-wave symmetry, 656–657 699–700
Equivalent capacitance (Ceq), 225 symmetry effects on, 653–658, 677 transient response from, 705–706
Equivalent circuits, 89–90, 222–225, trigonometric form of, 650–652 Fourth-order filters, 617–618, 622–623
446–449, 463, 512–514, 549, Fourier series, 646–687 Frequency (v), 352, 389, 566–570, 572,
761–768 active high-Q filter response, 647, 578, 580–582, 592–593, 649, 677
capacitance (Ceq), 224–225, 675–677 bandpass filter, 566–567
513–514, 549 amplitude spectrum, 673–675, 678 bandreject filter, 566–567
ideal transformers in, 765–768 average-power calculations, center (vo), 578, 580–582, 593
inductance (Leq), 222–223, 224, 667–669, 678 cutoff (vc), 568–570, 572, 580–581,
512–513, 549 direct approach, 663–665 590, 592
magnetically coupled coils and, exponential form of, 670–672, 678 fundamental (v0), 649, 677
761–765 Fourier coefficients, 649–658, 677 half-power, 569
π-equivalent circuit, 762–763 fundamental frequency (v0), 649, 677 harmonic, 649, 677
resistance (Req), 89–90, 512, 549 harmonic frequency, 649, 677 high-pass filter, 566
s domain representation, 512–514, periodic functions (f(t)), 646, infinite, 572
549 648–650, 667–670, 677 low-pass filter, 566–570, 572
single-phase, 446–449, 463 periodic response and, 646, 648 passband, 566, 592
T-equivalent circuit, 761 periodic voltage applications, passive filters, 567, 577, 587, 593
Equivalent inductance (Leq), 224 659–665, 667–669, 673–675 resonant (vo), 578
Essential branches and nodes, 122–124 phase spectrum, 673–675, 678 steady-state response, 352, 389
Even periodic function, 653–654 phasor domain circuit transforma- stopband, 566, 592
Exponential form of Fourier series, tion, 659–660, 678 zero, 572
670–672, 678 quality factor (Q), 647 Frequency domain, 355–385, 389,
RC circuit application, 661–665 474, 485, 488–502, 504–505, 573,
root-mean-square (rms) value, 587–588, 688, 690–691, 699–700,
F 669–670, 678 702–703, 714
Faraday’s law, 231–232 sine and cosine terms for, bandpass filters, 587–588
Feedback, see Negative feedback 659–660, 678 convolution in, 703
Feedback resistors, 333–336, 338 steady-state response and, 649–650, current division in, 364
Filters, 564, 566–567. See also Active 661–666, 678 delta-to-wye (Δ-to-Y) transforma-
filter circuits; Frequency; symmetry functions, 653–658, 677 tions, 366–368
Frequency-selective circuits waveforms, 646, 648, 651–657, 661, final-value theorem for, 500–502, 505
Final-value theorem, 500–502, 505 663–664, 678 Fourier transform (F(v)), 688,
First-order active filters, 602–605, 636 Fourier transform, 688–719 690–691, 699–700, 702–703, 714
Bode plots for, 602–604 amplitude spectrum, 691–692 frequency-selective circuit analysis,
frequency response plots for, circuit applications, 705–707, 573, 587–588
602–603 709–713 impedance (Z) and, 358–359,
high-pass filters, 604–605, 636 convergence of integral, 692–694 361–366, 368–371, 389
low-pass filters, 602–603, 636 derivation of, 690–692 initial-value theorem for, 500–502, 505
op amp filter design, 603, digital signal filtering, 689, 713–714 inverse Laplace transforms for,
604–605 frequency-domain (F(v)), 690–691, 488–498, 504
prototypes, 603–605, 636 699–700 Kirchhoff’s laws in, 360–361
First-order circuits, 248, 250, 284. See frequency-domain representation, Laplace transform (F(s)), 474, 485,
also Resistor-capacitor (RC) 688, 714 488–502, 504–505
circuits; Resistor-inductor (RL) integrals used in, 690, 692–694, low-pass filters, 573
circuits 699–700 node-voltage method in, 372–373
804 Index
derivatives of, 479 Initial-value theorem, 500–502, 505 tee (T), 104
discontinuities of circuits and, Input constraints, 181–182, 200 testing ideal sources, 58–59
477–478 In-series circuit elements, 69, 78. See wye (Y), 104
impulsive sources, 545–548 also Series-connected circuits International System of Units (SI),
inductor circuit analysis, 543–545 Instantaneous power, 404–405, 406, 37–39
Laplace transform method and, 429, 455–456 Internet of Things (IoT), 207
542–548, 549 balanced three-phase circuits, Inverse Fourier transform, 691
Laplace transform of, 478–479 455–456 Inverse Laplace transforms, 488–498,
sifting property, 478–479 calculations for, 404–405, 406, 429, 504
strength (K) of, 477, 504 455–456 distinct complex roots of D(s),
switching operations, 542–545 sinusoidal steady-state circuits, 491–493
unit impulse function (d(t)), 477, 504 404–405, 406, 429 distinct roots of D(s), 489–490
variable parameter function, time-invariant, 455–456 improper rational functions, 488,
477–478 Instantaneous real power, 406 497–498
voltage drop and, 544–545 Integer power of complex numbers, 759 partial fraction expansion,
Independent sources, 56, 59, 78 Integrals, 474, 483–484, 533–539, 489–498
Induced voltage, 227–229, 231–232, 239 549, 690–691, 692–694, 699–700, proper rational functions, 489–497
Inductance (L), 212, 222–237, 239, 786–787 rational functions (F(s)) and,
375–376, 379–380 convergence of, 692–694 488–498
circuit parameter of, 212 convolution, 533–539, 549 repeated complex roots of D(s),
equivalent, 222–223, 224 Fourier transforms, 690, 692–694, 496–496
mutual, 210, 227–237, 239 699–700 repeated real roots of D(s),
series–parallel combinations, frequency-domain function (F(v)) 494–495
222–226 and, 699–700 s-domain and, 488–498, 504
self-, 227–228, 231–232, 234–235, Laplace transforms, 474, 483–484 transform pairs for, 497
239, 375–376, 379–380 table of, 786–787 Inverse phasor transform, 354
steady-state transformer analysis time-domain function (F(t)) and, Inverting-amplifier circuit, 184–186,
and, 375–376, 379–380 699–700 196, 200–201
Inductive circuits, power for, 406–407 transfer function (H(s)) use of, ideal op-amp model for, 184–186,
Inductor current, 317–318 533–539, 549 200
Inductors, 210, 212–217, 222–223, Integrating-amplifier, 280–282, 284, negative feedback in, 185
226–227, 239, 356–357, 389, 331–336, 338 realistic op-amp model for,
512–513, 543–545, 549, 788 cascading connections, 331–336, 338 196, 201
circuit analysis of, 212–217, 543–545 feedback resistors and, 333–336, 338
circuit component values, 788 first-order circuit analysis, 280–282,
current to voltage (i–v) relation- 284 K
ships, 213–214 second-order circuit analysis, Kirchhoff’s laws, 67–72, 73–75, 78,
duality (symmetry) of, 226–227, 239 331–336, 338 88–89, 122–123, 360–361, 515
energy in, 210, 215–217, 239 step response of, 333 amplifier circuit analysis using, 75
equivalent circuits for, 222–223, 224, Integration, operational transforms circuit analysis using, 68–75, 78
512–513, 549 for, 701 current law (KCL), 67–68, 69, 78,
impulse function (Kd(t)) for, Interconnections, 58–59, 64–65, 86, 88–89, 360–361
543–545 88–92, 103–106, 107–108 dependent sources and, 73–75
in series, 222 circuit model creation for, 64–65 frequency domain and, 360–361
Laplace transform method for, delta (Δ), 104 loop (closed path) for, 68
512–513, 543–545, 549 delta-to-wye (Δ-to-Y) equivalent nodes for, 67
magnetic field and, 212 circuits, 103–106, 108 Ohm’s law and, 70–71
multiple, 222–223, 224 dependent sources, 59 parallel-connected circuits and, 89
parallel, 222–223 independent sources, 59 s domain use of, 515
passive behavior of, 210, 239 parallel-connected resistors, 86, series-connected (in-series) circuits
phasor relationships, 356–357, 389 89–92, 107 and, 88
power in, 210, 214–215, 239 pi (π), 104 simultaneous equations from,
s domain representation, pi-to-tee (π-to-T) equivalent 122–123
512–513, 549 circuits, 103–106, 108 steady-state analysis using,
symbols for, 212 resistive circuits, 86, 88–92, 103–106, 360–361
voltage to current (v–i) relation- 107–108 unknown voltage found from, 74
ships, 212–213, 356–357, 389 series-connected resistors, 86, 88, 107 voltage law (KVL), 68, 70, 78, 88,
Infinite frequency, 572 series–parallel simplification, 90–91 360–361
806 Index
Magnitude plot, 566 special cases for, 136–140 parallel RLC circuits, 300,
Magnitude scaling, 605–606, 636 steady-state circuit analysis, 302–324, 337
Maximum power transfer 373–375 power (p) expression for, 254, 258
Maximum power transfer (Pmax), 120, supermesh and, 137–138 resistor-capacitor (RC) circuits, 248,
154–156, 163, 421–427, 429 Modulation, 702 256–260, 269–274, 284, 517
average power absorbed, 422 Motor, 56 resistor-inductor (RL) circuits, 248,
circuit analysis for, 120, 154–156, Multiplication operations, 481, 701, 250–256, 269–274, 284
163 758 resistor-inductor-capacitor (RLC)
ideal transformer analysis, 425–426 Mutual inductance, 210, 227–237, 239, circuits, 302–317, 324–328, 330,
impedance (Z) conditions and 525–526 336–338
restrictions, 421–425 coefficient of coupling for, 235–236, resonant radian frequency (v0), 304,
power calculations for, 421–427, 239 321, 325, 327
429 concept of, 232–234 series RLC circuits, 300, 324–328,
resistive loads, 155–156 dot convention, 227–229, 239 330, 338
sinusoidal steady-state analysis of, energy storage in magnetically steady-state response for, 255
421–427, 429 coupled coils, 235–237, 239 symbols for, 302
system optimization and, 154 Laplace transform method for, time constant (t), 251–252, 254–255,
with load restrictions, 424 525–526 257, 284
without load restrictions, 423 mesh-current method for, 227–230 transient response of, 255
Measurement, 37–39, 86, 98–101, 108, polarity of induced voltages, underdamped response, 310–314,
458–461, 463, 725, 728, 769–770 227–229, 232, 239 325–328, 337
ammeter for, 98, 99–100, 108 procedure for determining dot voltage (v) expressions for, 254,
analog meters for, 99–100, 108 markings, 228–229 257, 302
current, 86, 98–101, 108 s domain circuit, 525–526 Negative feedback, 181–183, 185, 186,
d’Arsonval meter movement, 99 self-inductance and, 227–228, 188, 190, 200
decibels (dB), 769–770 231–232, 234–235, 239 difference-amplifier circuit, 190
digital meters for, 101, 108 input voltage constraints and,
electrodynamic wattmeter for, 181–182
458–461, 463 N inverting-amplifier circuit, 185
International System of Units (SI), Narrowband (high-Q) filters, 628–633, op-amp circuit analysis and,
37–39 637 181–183
power, 458–461, 769–770 bandpass, 628–630, 636 summing-amplifier circuit, 186
resistance, 101–103, 108 bandreject, 630–633, 637 voltage constraint and, 181–182,
three-phase circuits, 458–461, Bode plots for, 630, 633 200
two-port circuit parameters from, Natural response, 248, 250–260, Neper frequency (a), 304, 321, 325,
725, 728 269–274, 284, 302–317, 324–331, 327, 329, 337
unit prefixes, 38–39 336–338, 517 parallel RLC circuits, 304, 321,
voltage, 86, 98–101, 108 characteristic equation for, 303–304, 337
voltmeter for, 98, 100, 108 325, 327, 337 series RLC circuits, 325, 327, 329
Wheatstone bridge, 101–103, 108 circuit phase analysis using, 248 Net charge, 35
Memory, concept of using convolution clock analysis for computer timing, Neutral terminal, 443
integral, 538–539 301, 336–337 Node voltage, 125
Mesh, 122 critically damped response, 314–317, Node-voltage method, 120, 124–132,
Mesh circuit analysis, Laplace 325–328, 337 140–143, 162–163, 372–373
transform method for, 521–522 current (i) expression for, 250–252, amplifier circuit analysis, 130–131
Mesh current, 132–133 258 circuit analysis process, 124–126,
Mesh-current method, 120, 132–143, damped radian frequency (vd), 310, 129–130, 162–163
162–163, 227–230, 373–375 321, 327–328 dependent sources and, 126–128
amplifier circuit analysis, 139 energy (w) expression for, 254, 258 duality of, 132
circuit analysis process, 120, general solution for, 269–274, 284 frequency-domain circuit analysis,
132–143, 162–163 initial inductor current (I0), 251 372–373
dependent sources and, 135–136 Laplace transform method for, 517 mesh-current method compared to,
duality of, 132 method for, 252, 258, 269–270, 284, 140–143
frequency-domain circuit analysis, 308, 311, 326–327 special cases for, 128–132
373–375 Neper frequency (a), 304, 325, steady-state circuit analysis,
mutual inductance and, 227–230 327, 337 372–373
node-voltage method compared to, overdamped response, 307–310, supernodes and, 129–130
140–143 325–328, 337 Nodes, 67, 78, 122–124
808 Index
Noninverting-amplifier circuit, negative feedback in, 181–182, 185, series–parallel simplification, 90–91
187–190, 196–198, 200–201 186, 188, 190, 200 two-port, 736–737
ideal op-amp model for, 187–190, noninverting-amplifier circuit, Parallel RLC circuits, 300, 302–324,
200 187–190, 196–198, 200 337, 583–585, 591
negative feedback in, 188 open-loop operation, 185 bandpass filters, 583–585
realistic op-amp model for, realistic models, analysis of, bandreject filters, 591
196–198, 201 195–198, 201 bandwidth (b), 584
Nonplanar circuits, 122 sensors, 207, 227–228 characteristic equation for, 303–304,
Norton equivalent circuits, 120, summing-amplifier circuit, 186–187, 321, 337
148–151, 163, 368–369 200 critically damped voltage response,
frequency domain simplification, symbols for, 180 314–317, 319–321, 337
368–369 terminals, 180–184, 200 cutoff frequency (vc), 584
impedance (Z) in, 368–369 voltage (v), 180–184, 200 damped radian frequency (vd),
source transformation, 120, 148–151, Operational transforms, 475, 481–486, 310, 321
163, 368–369 504, 700–704 frequency-selective circuits,
terminal circuit simplification using, addition and subtraction, 482, 701 583–585, 591
120, 148–151, 163 convolution in frequency domain, natural response of, 302–317, 337
703 Neper frequency (a), 304, 321, 337
convolution in time domain, 702 overdamped response, 307–310,
O defined, 475, 504 319–321, 337
Odd periodic function, 654–655 differentiation, 482–483, 701 parameters of, 304–305
Ohm’s law, 60–61, 70–71, 73–75, 78, 89, Fourier, 700–704 quality factor (Q), 584
512, 514 integration, 483–484, 701 resonant radian frequency (v0),
amplifier circuit analysis using, 75 Laplace, 475, 481–486, 504 304, 321
circuit analysis using, 70–71, 73–75, 78 modulation, 702 second-order differential equations
dependent sources and, 73–75 multiplication by a constant, for, 302–305
electrical resistance and, 60–61, 78 481, 701 step response of, 317–324, 337
Kirchhoff’s law and, 70–71 scale changing, 485, 702 symbols for, 302
parallel-connected circuits and, 89 translation in frequency domain, underdamped response, 310–314,
s domain use of, 512, 514 485, 702 319–321, 337
Op amp filters, 603–605, 607, 608–628, translation in time domain, Parasitic resistance, 65
636 484–485, 702 Parseval’s theorem, 707–713, 714
bandpass, 608–611, 626–627, 636 Overdamped response, 307–310, bandpass filter application,
bandreject, 611–615, 636 319–321, 325–327, 328–329, 337 690–691
Butterworth, 619–628 natural response, 307–310, 325–328, energy calculations using, 707–713,
cascading, 615–619 337 714
design of, 603, 604–605 parallel RLC circuits, 307–310, Fourier transform time-domain
first-order active, 603, 604–605, 319–321, 337 functions, 707–713, 714
615–619 series RLC circuits, 325–327, 329 graphic interpretation of, 709
higher-order active, 615–628 step response, 319–321, 328–329 low-pass filter application, 711–712
high-pass, 604–605 rectangular voltage pulse applica-
low-pass, 603, 607 tion, 712–713
scaling, 607 P Partial fraction expansion, 489–498,
Open circuit, 65 Parallel-connected circuits, 86, 89–92, 530–533
Open-loop operation, 185 107, 222–224, 363, 365, 418–419, distinct complex roots of D(s),
Operational amplifiers (op amps), 736–737. See also Parallel RLC 491–493
178–209. See also Op amp filters circuits distinct roots of D(s), 489–490
common mode rejection ratio capacitors, 223–224 improper rational functions, 488,
(CMRR) for, 193–195, 201 circuit elements, 89 497–498
current (i), 180–184, 200 combining, 89–90 inverse Laplace transforms and,
difference-amplifier circuit, frequency domain, 363, 365 489–498
190–195, 201 impedance (Z) combined in, 363, proper rational functions, 489–497
gain, 181 365 repeated complex roots of D(s),
ideal model, analysis of, 182–183, inductors, 222–223 496–496
200–201 Kirchhoff’s current law for, 89 repeated real roots of D(s), 494–495
input constraints, 181–182, 200 Ohm’s law for, 89 s domain use of, 489–498, 530–533
inverting-amplifier circuit, 184–186, power calculations for, 418–419 transfer function (H(s)) in, 530–533
196, 200 resistors, 86, 89–92, 107 transform pairs for, 497
Index 809
Passband frequency, 566, 592 Periodic waveforms, 646, 648 self-inductance, 232
Passive circuit elements, 58, 210, 239, Phase angle (f) of, 348 voltage and current references, 42
355–359, 389 Phase angle plots, 566, 776–778, Poles, 498–500, 504, 530, 771–772,
capacitors, 210, 239, 357–358, 389 782–784 778–784
defined, 58 complex poles, 782–784 amplitude plots, 778–781
frequency domain, 355–359 frequency response and, 566 complex, 778–784
impedance (Z) and, 358–359 straight-line, 776–778, 782–784 frequency domain (F(s)), 498–500,
inductors, 210, 239 Phase current, 446–447, 450–451, 463 504
phasor transforms and, 353, 355–359 Phase sequences for three-phase phase angle plots, 782–784
reactance and, 359 circuits, 442, 463 real, first-order, 771–772
resistors, 355–356, 389 Phase spectrum, 673–675, 678 transfer functions (H(s)), 530
voltage to current (v–i) relation- Phase voltage, 446–447, 463 Ports, 720
ships in, 358–359 Phase windings, 443 Potential coil, 458, 463
Passive filters, 567, 577, 587, 593 Phasor diagrams, 385–387, 442, 447 Power, 31, 43–48, 61–62, 154–156, 163,
Passive sign convention, 42–45 Phasor transform, 353–361 210, 214–215, 218–219, 239, 254,
Period of time (T), 348 frequency domain and, 353, 258, 406–407, 412–413, 419–420,
Periodic current, average-power 355–359 429, 441, 455–456, 461–463
calculations and, 667–669 inverse, 354 ac circuits, 419–420
Periodic functions (f(t)), 646, 648–658, phasor representation as, 353 algebraic sign of, 44–45
667–670, 677–678 voltage to current (v–i) relation- balance of in circuits, 31, 47–48
average power calculations with, ships, 355–359, 389 balanced three-phase circuits, 441,
667–669, 678 Phasors, 352–359, 415–416, 659–660, 461–463
defined, 646, 677 678. See also Phasor transforms capacitive circuits, 407
Dirichlet’s conditions, 649 capacitor voltage to current (v–i) capacitors and, 210, 218–219, 239
even, 653–654 relationships, 357–358, 389 current and voltage relationship to,
Fourier coefficients and, 649–651, 677 complex power calculations using, 43–45
Fourier series of found with 415–416 defined, 44
symmetry, 658 concept of, 352–353 electric transmission and distribu-
Fourier series representation, Fourier series transformation to tion, 441, 461–463
649–650, 667–669 phasor domain, 659–660, 678 energy and, 43–45
fundamental frequency (v0), 649, 677 impedance (Z) and, 358–359 inductive circuits, 406–407
half, 655–656 inductor voltage to current (v–i) inductors and, 210, 214–215, 239
harmonic frequency, 649, 677 relationships, 356–357, 389 maximum power transfer,
odd, 654–655 reactance and, 359 154–156, 163
periodic voltage and, 667–669 representation, 353 natural response and, 254, 258
quarter, 656–657 resistor voltage to current (v–i) passive sign convention for, 44–45
root-mean-square (rms) value of, relationships, 355–356, 389 polarity reference, 44–45
669–670, 678 sinusoidal functions and, 352–355 resistive circuits, 406
steady-state response from, 649–650 steady-state analysis using, resistive load transfer, 155–156
symmetry effects, 653–658, 677 352–358 resistor-capacitor (RC) circuit
waveforms, 646, 648–657 Pi (π-equivalent circuit, 762–763 expression, 258
Periodic response, 646, 648 Pi (π) interconnection, 104 resistor-inductor (RL) circuit
Periodic to aperiodic transition, 688, Pi-to-tee (π-to-T) equivalent circuits, expression, 254
691, 714 103–106, 108 resistors, 61–62
Periodic voltage, 659–665, 667–669, Planar circuits, 122 time-invariant, 455–456
673–675, 691 Polar form of complex numbers, units for, 407, 412–413, 429
amplitude spectra for, 673–675 755–756 Power calculations, 402–439,
average-power calculations Polarity, 42, 44–45, 227–229, 232, 239, 453–458, 463
expressed from, 667–669 382–383 apparent power, 413, 429
Fourier series applications, 659–665, arrows for reference of, 42, 44 appliance ratings for, 409–410
667–669, 673–675 coil current and voltage, 382–383 average power (P), 405–412, 417,
inverse Fourier transform and, 691 dot convention for, 227–229, 239, 422, 429, 453–454
phase spectra for, 673–675 382–383 balanced three-phase circuits,
phasor domain circuit transforma- ideal transformers, 382–383 453–458, 463
tion and, 659–660 induced voltages, 227–229, balancing power in ac circuits, 419–420
sine and cosine terms for, 659–660 232, 239 complex power, 412–421, 429,
steady-state response and, 661–665 mutual inductance, 227–229, 239 454–455
waveforms, 661, 663–664 power reference, 44–45 delta (Δ) loads, 454–455
810 Index
natural response of, 248, 250–256, symbols for, 302, 317 transfer function (H(s)) and,
269–274, 284 timing signals, 301 532–541, 549
power (p) expression, 254 underdamped voltage response, transient, 255, 705–706
qualitative analysis, 574 310–314, 319–321, 326–327, unbounded, 278–279, 284
quantitative analysis, 574–575 328–329, 337 underdamped, 310–314, 319–321,
sequential switching, 274–277, 284 voltage expressions for, 302 325–327, 328–329, 337
step response of, 248, 261–265, Resistors, 60–63, 78, 89–92, 121, unit impulse (h(t)), 532–539
269–274, 284 159–162, 355–356, 389, 512, 549, 788 weighting function for, 538
time constant (t), 251–252, circuit component values, 788 Root-mean-square (rms) value, 349,
254–255, 284 conductance (G) and, 61 410–412, 669–670, 678
unbounded response, 278–279, 284 equivalent circuits for, 89–90, 512, 549 effective value as, 411
voltage (v) expression, 254 multiple, 89–90 periodic functions (f(t)), 669–670,
Resistor-inductor-capacitor (RLC) Ohm’s law for, 60–61, 78 678
circuits, 300–345, 517–518, phasor relationships, 355–356, 389 power calculations using, 410–412
579–587, 588–591, 665–666 power in terms of current, 61 sinusoidal sources and, 349
bandwidth (b), 581–582, 584 power in terms of voltage, 62 Roots of complex numbers, 759–760
center frequency (vo), 580–582 resistance (R) models, 60–63
characteristic equations for, s domain representation, 512, 549
303–304, 321, 325, 327, 329, 337 sensitivity analysis of, 121, S
clock for computer timing, 301, 159–162 s domain, 474, 480–486, 488–502,
336–337 series–parallel simplification, 504–505, 510–563. See also
critically damped voltage response, 90–91 Frequency domain
314–317, 319–321, 326–327, signals in phase, 356 circuit analysis in, 514–516
328–329, 337 voltage to current (v–i) relation- circuit elements in, 512–514
cutoff frequency (vc), 581, 584 ships, 355–356, 389 final-value theorem for, 500–502, 505
damped radian frequency (vd), 310, Resonant frequency (vo), 578 initial-value theorem for, 500–502,
321, 329 Resonant radian frequency (v0), 304, 505
direct approach for, 319–320, 321, 325, 327, 329 inverse Laplace transforms for,
665–666 parallel RLC circuits, 304, 321 488–498, 504
Fourier series approach for, 665–666 series RLC circuits, 325, 327, 329 Kirchhoff’s laws in, 515
frequency-selective circuit analysis, Response, 248, 250–274, 269–274, Laplace transform method
579–587, 588–591 278–279, 284, 300–345, 351–352, applications, 510–563
indirect approach for, 318–319 389, 532–541, 549, 705–706 Laplace transform (F(s)) of,
inductor current for, 317–318 critically damped, 314–317, 319–321, 488–502, 504–505
integrating amplifiers in cascade, 325–327, 328–329, 337 mutual inductance circuit in,
331–336, 338 damped radian frequency (vd), 310, 525–526
Laplace transform method for, 321, 327, 329 Ohm’s law in, 512, 514
517–518 Fourier transforms for, 705–706 operational transforms for, 475,
natural response of, 302–317, general solution for, 269–274, 284 481–486, 504
324–328, 330, 336–338 memory, concept of, 538–539 partial fraction expansion, 489–498,
Neper frequency (a), 304, 321, 325, natural, 248, 250–260, 269–274, 284, 530–533
329, 337 302–317, 324–328, 330, 336–338 poles of F(s), 498–500, 504, 530
overdamped response, 307–310, overdamped, 307–310, 319–321, rational functions (F(s)) and,
319–321, 326, 328–329, 337 325–327, 328–329, 337 488–498
parallel, 300, 302–324, 337, 583–585, resistor-capacitor (RC) circuits, superposition applications in,
591 248, 256–260, 266–274, 527–528
quality factor (Q) for, 582, 584 278–279, 284 Thévenin equivalent circuit in,
resonant radian frequency (v0), 304, resistor-inductor (RL) circuits, 248, 523–524
321, 325, 329 250–256, 261–265, 269–279, 284 time domain (t) relationships, 474,
second-order differential equations resistor-inductor-capacitor (RLC) 481–486, 500–502, 505
for, 302–305 circuits, 300–345 transfer function (H(s)), 528–541,
series-connected, 300, 302, 324–331, sinusoidal, 351–352, 389, 532–541, 549 549
338, 579–583, 585–587, 588–591 steady-state analysis of, 346, transform pairs, 480–481, 497
square-wave voltage and, 351–352, 389 zeros of F(s), 498–500, 504, 530
665–666 steady-state, 255, 346, 351–352, 389, Scale change, 485, 702
steady-state response of, 665–666 532–541, 549, 706 Scaling, 605–608, 636
step response of, 317–324, 328–331, step, 248, 261–274, 284, 317–324, circuit component scale factors, 606
333, 337–338, 517–518 328–331, 337–338 filter design using, 606
812 Index
Scaling (Continued) bandwidth (b), 581, 590 Sinusoidal response, 351–352, 389,
frequency, 606, 636 center frequency (vo), 580, 590 539–541, 549
low-pass op-amp filter, 607 characteristic equation for, 325, frequency (v) of, 352, 389
magnitude, 605–606, 636 327–329 steady-state analysis of, 351–352, 389
series RLC filter, 606–607 critically damped response, 325, steady-state current component,
Second-order circuits, 302. See also 325–327, 329 352
Resistor-inductor-capacitor cutoff frequency (vc), 580–581, 590 steady-state solution characteristics,
(RLC) circuits frequency-selective circuits, 352
Second-order filters, 626 579–583, 585–591 transient current component, 352
Seebeck effect, 227 natural response of, 300, 302, transfer function (H(s)) and,
Self-impedance, 376 324–331, 338 539–541, 549
Self-inductance, 227–228, 231–232, Neper frequency (a), 325, 327, 329 Sinusoidal sources, 346–351, 389,
234–235, 239, 375–376, 379–380 overdamped response, 325–327, 329 519–520
Faraday’s law for, 231–232 quality factor (Q), 582, 590 amplitude of, 348
mutual inductance and, 227–228, resonant radian frequency (v0), 325, angular frequency (v), 348
234–235, 239 327, 329 current behavior and, 346
polarity of induced voltages, scaling, 606–607 current (i), 348–349
227–229, 232, 239 step response of, 328–331, 338 Laplace transform method for,
steady-state transformer analysis symbols for, 302 519–520
and, 375–376, 379–380 underdamped response, 325–327, period of time (T), 348
voltage drop, 227 329 phase angle (f) of, 348
Sensors, op-amp circuit analysis for, Short circuit, 65 root-mean-square (rms) value,
207, 227–228 Sifting property, 478–479 349–351
Sensitivity analysis of resistors, 121, Signal-processing systems, 33 steady-state analysis and, 346–351,
159–162 Signals in phase, 356 389
Sequential switching, 274–278, 284 Signum functions, 697 steady-state response from, 347,
circuit analysis and, 274–278, 284 Simplification techniques, 90–91, 351–352
defined, 274 103–106, 143–146, 149 voltage (v), 348–350
resistor-capacitor (RC) circuits with, delta-to-wye (Δ-to-Y) Smartphones, 207
274, 277–278, 284 transformation, 103–106 Source transformation, 120, 143–146,
resistor-inductor (RL) circuits with, series–parallel simplification, 149, 162, 368–371
274–277, 284 90–91 bilateral configurations, 143–144
Series-connected (in-series) circuits, 69, source transformation, 143–146, condition of equivalence for, 144
78, 86, 88, 107, 222–223, 362–363, 365, 149 defined, 143
567–568, 570–572, 574–576, 736–737. Simultaneous equations, 122–124, frequency-domain circuit simplifica-
See also Series RLC circuits 746–754 tion, 368–371
black box concept, 88 applications of, 751–754 impedance (Z) for, 368–371
capacitors, 223 back-substitution method for, Norton equivalent circuits from,
circuit elements, 69, 78 749–750, 754 149, 368–369
combining, 88 calculator and computer methods resistive circuit simplification, 120,
frequency domain, 362–363, 365 for, 747–749, 752–754 143–146, 149, 162
frequency-selective circuits, characteristic determinant of, steady-state circuit analysis,
567–568, 570–572, 574–576 750–751 368–371
high-pass filters, 574–576 circuit analysis using, 122–124 Thévenin equivalent circuits from,
impedances (Z) combined in, Cramer’s method for, 750–752 149, 368–369, 371
362–363, 365 essential nodes and branches for, Sources, 56–59, 73–76, 346–351, 389,
inductors, 222 123–124 519–520, 545–548
Kirchhoff’s laws for, 88 Kirchhoff’s laws for, 122–123 active circuit elements, 58
low-pass filters, 567–568, 570–572 linear, 746–754 current, 56–59, 78
resistors, 86, 88, 107 number of, 122–124 dependent, 56, 59, 73–76, 78
two-port circuits, 736–737 solution of, 746–754 direct current (dc), 58
Series–parallel connections, 90–91, Sine functions, 659–660, 678 electrical, 56
736–737 Single-phase equivalent circuits, impulsive, 545–548
simplification of, 90–91 446–449, 463 ideal, 56–59, 78
two-port circuits, 736–737 Sinusoidal circuits, 346–401, 402–439 independent, 56, 59, 78
Series RLC circuits, 300, 302, 324–331, power calculations, 402–439 interconnections of, 58–59
338, 579–583, 585–591, 606–607 steady-state analysis, 346–401 Laplace transform method for,
bandpass filters, 579–583, 585–587 Sinusoidal function, 480 545–548
bandreject filter, 588–591 Sinusoidal rectifiers, 646, 648 passive circuit elements, 58
Index 813
sinusoidal, 346–351, 389, 519–520 Step function (Ku(t)), 475–476, 504 dependent sources and, 158–159
symbols for, 56–57 discontinuities of circuits and, Laplace transform method using,
voltage, 56–59, 78 475–476, 504 527–528
Square-wave voltage, 661, 665–666 finite duration representation, 476 s domain applications, 527–528
Square waveforms, 648, 661 unit step function (u(t)), 475, 504 Surge suppressor analysis, 511, 548
Standby (vampire) power analysis, Step response, 248, 261–274, 284, Susceptance (B), 364
403, 427–428 317–324, 328–331, 333, 337–338, Switching operations, impulse function
Steady-state analysis, 346–401 517–518 (Kd(t)) for, 542–545
admittance (Y), 364, 389 characteristic equation for, 321, 329 Symmetric two-port circuits, 729–730,
challenges of, 346 circuit analysis using, 248 740–741
delta-to-wye (Δ-to-Y) comparison of RC and RL Symmetry, 132, 226–227, 239, 653–658,
transformations, 366–368 circuits, 269 677
frequency domain of, 355–385 critically damped response, capacitors, 226–227, 239
household distribution circuit, 347, 319–321, 328–329 duality as, 132, 226
387–388 damped radian frequency (vd), even-function, 653–654
impedance (Z) for, 358–359, 321, 329 Fourier coefficient, effects on,
361–366, 368–371, 389 direct approach for, 319–320 653–658, 677
Kirchhoff’s laws for, 360–361 general solution for, 269–274, 284 Fourier series of periodic function
mesh-current method, 373–375 indirect approach for, 318–319 found with, 658
node-voltage method for, 372–373 inductor current for, 317–318 half-wave, 655–656
Norton equivalent circuit for, 368–370 inductor voltage versus time, 264–265 inductors, 226–227, 239
parallel impedances, 363–366 integrating-amplifier analysis of, 333 odd-function, 654–655
passive circuit elements, 355–359 magnetically coupled coils and, quarter-wave, 656–657
phasor diagrams for, 385–387 273–274
phasor transforms for, 353–361 Laplace transform method for,
phasors, 352–359 517–518 T
responses, 255, 351–352 method for, 262, 266, 269–270, 284 T-equivalent circuit, 761
series impedances, 362–363 Neper frequency (a), 321, 329 Tee (T) interconnection, 104
sinusoidal sources for, 346–351, 389 overdamped response, 319–321, Terminals, 66, 71–72, 146–154, 180–184,
source transformations for, 368–371 328–329 200, 720–745
Thévenin equivalent circuit for, parallel, 300, 317–324 circuit behavior and, 146–154,
368–371 resistor-capacitor (RC) circuits, 248, 180–184
transformers, 375–384, 389 266–274, 284 current of, 180–184, 200
voltage to current (v–i) resistor-inductor (RL) circuits, 248, measurements for circuit
relationships, 355–359, 389 261–265, 269–274, 284 construction, 66, 71–72
Steady-state current component, 352 resistor-inductor-capacitor (RLC) negative feedback and, 181–182,
Steady-state response, 255, 346, circuits, 317–324, 328–331, 200
351–352, 389, 539–541, 549, 337–338, 517–518 Norton equivalent circuits and,
649–650, 661–666, 678, 706 resonant radian frequency (v0), 321, 148–151
direct approach to, 663–666, 678 329 operational amplifier (op amp),
Fourier series approach for, series-connected, 300, 328–331 180–184, 200
649–650, 661–666, 678 symbols for, 302, 317 ports, 720
Fourier transforms for, 706 underdamped response, 319–321, symbols for, 180
periodic functions used for, 328–329 Thévenin equivalent circuits and,
649–650 Stopband frequency, 566, 592 146–154
periodic voltage and, 661–665 Straight-line plots, 772–784. See also two-port circuits, 720–745
RC circuit periodic voltage Amplitude plots; Phase angle Terminals, 66, 71–72, 146–154, 180–184,
response, 661–665 plots 200, 720–745
RLC circuit square-wave voltage Strength (K) of impulse function, 477, Terminated two-port circuits,
response, 665–666 504 731–736
sinusoidal analysis conditions, 346 Summing-amplifier circuit, 186–187, Thévenin equivalent circuits, 120,
sinusoidal sources of, 346, 351–352 200 146–154, 163, 368–369, 371, 523–524
square-wave voltage and, Supermesh, 137–138 amplifier circuit analysis using,
665–666 Supernodes, 129–130 153–154
time constant (t) and, 255 Superposition, 120, 157–159, 163, dependent sources and, 150
transfer function (H(s)) and, 527–528 impedance (Z) in, 368–369
539–541, 549 circuit analysis using, 120, 157–159, frequency-domain circuit simplifica-
waveforms of, 663–664 163 tion, 368–369,371
814 Index
Thévenin equivalent circuits final-value theorem for, 500–502, weighting function, 538
(Continued) 505 zeros of, 530
Laplace transform method for, Fourier transform (f(t)), 690–691, Transform pairs, 480–481, 497
523–524 699–700, 702, 707–713, 714 Transformers, 375–384, 389, 765–768
resistance directly from circuit, frequency domain (s) relationships, current (i) ratios, 381–383
151–154 474, 500–502, 505, 573, 587–588 dot convention for, 382–383
s domain, 523–524 functional transforms, 475, equivalent circuits with, 765–768
source transformation for, 149, 480–481, 504 frequency domain analysis of,
368–369, 371 impulse function (Kd(t)), 375–384
terminal circuit simplification using, 477–479, 504 ideal, 379–384, 389, 765–768
120, 146–151, 163 initial-value theorem for, 500–502, impedance matching, 384
voltage of, 180–184, 200 505 limiting values of, 379–381
Three-phase circuits, 440–471 Laplace transform (f(t)), 474–475, linear circuits, 375–379, 389
a-, b-, and c-phase voltage 481–486, 500–502, 504–505 polarity of voltage and current,
references, 442 low-pass filters, 573 382–383
average power measurement in, operational transforms for, 475, reflected impedance (Zr), 376–377,
458–461, 463 481–486, 504, 702 389
balanced conditions, 440, 444–445, Parseval’s theorem, 707–713, 714 self-impedance of, 376
463 sifting property and, 478–479 self-inductance of, 375–376,
basic circuit use and characteristics, step function (Ku(t)), 475–476, 504 379–380
440, 442 transform pairs, 480–481, 497 steady-state analysis of, 375–384,
delta (Δ) loads, 454–455 translation in, 702 389
electric power transmission and unit impulse function (d(t)), steady-state analysis, 375–384, 389
distribution, 441, 461–463 477, 504 voltage (v) ratios, 381–383
impedance relationships, 450 unit step function (u(t)), 475, 504 winding (primary and secondary),
instantaneous power in, 455–456 Time-invariant circuits, 532–533, 549 375
line current, 445, 446–447, 450–451, 463 Time-invariant instantaneous power, Transient current component, 352
line voltage, 445, 446–447, 463 455–456 Transient response, 255, 705–706
neutral terminal for, 443 Timing signals, 301 Transition region, 624–625
phase current, 446–447, 450–451, 463 Touch screens, 87, 106–108, 211, Transmission parameters, 724, 728
phase sequences, 442, 463 237–238 Triangular waveforms, 646, 648,
phase voltage, 446–447, 463 capacitance of, 211, 237–238 651–652
phase windings, 443 resistive circuits of, 87, 106–108 Trigonometric identities, 785
phasor diagrams for, 442, 447 Transfer function (H(s)), 528–541, 549, Twin-T notch filter, 630
power calculations in, 453–458, 463 573, 577, 587, 589, 591, 592–593, Two-port circuits, 720–745
single-phase equivalent circuit for, 620–621 cascaded, 736–739
446–449, 463 bandpass filters, 587, 593 conversion table for parameters,
unspecified loads, 457–458 bandreject filters, 589, 591, 593 727
voltage sources, 443 Butterworth filters, 620–621 hybrid parameters, 724, 725
wye (Y) loads, 453–454 circuit analysis and, 529–530, immitance, 724
wye-delta (Y-Δ) circuit analysis, 532–533 interconnected, 736–739, 741
450–453, 456–457 convolution integral and, 533–539, measurements for parameters of,
wye-wye (Y-Y) circuit analysis, 549 725, 728
444–449, 456 defined, 528–529 model assumptions, 720, 740
Time constant (t), 251–252, 254–255, frequency-selective circuit analysis parallel, 736–737
257, 284 using, 573, 577, 587, 592–593 parameters for, 723–731, 740
resistor-capacitor (RC) circuits, 257, high-pass filters, 577, 593 reciprocal, 729–730, 740
284 Laplace transform method for, relationships among, 726–727, 729
resistor-inductor (RL) circuits, 528–541, 549 series-connected, 736–737
251–252, 254–255, 284 low-pass filters, 573, 592 series-parallel, 736–737
significance of, 254–255 partial fraction expansion and, symmetric, 729–730, 740–741
steady-state response and, 255 489–498, 530–533 terminal equations for, 722, 740
transient response and, 255 poles of, 530 terminated, 731–736
Time domain (t), 474–486, 500–502, sinusoidal steady-state response transmission parameters, 724, 728
504–505, 573, 587–588, 690–691, and, 539–541, 549 unknown circuit characterization,
699–700, 702, 707–713, 714 time-invariant circuits, 532–533, 549 721, 739–740
bandpass filters, 587–588 unit impulse response (h(t)) and, z parameters, 724–725, 731–734
convolution in, 702 532–539 Two-wattmeter method, 459–460, 463
Index 815
vd = 2v20 - a 2
Neper, resonant, and R 1
A LC
2. Determine the values of A and V0 using
damped frequencies a = v0 =
the equations in Table 8.4. 2L
s1 = -a + 2a 2 - v20, s2 = - a - 2a 2 - v20
3. If A2 7 V20, the response is overdamped Roots of the characteristic
and i(t) = A1e s1t + A2e s2t, t Ú 0; equation
If A2 6 V20 the response is underdamped and
i(t) = B1e -at cos vdt + B2e -at sin vdt, t Ú 0; a 2 7 v20 : overdamped i(t) = A1e s1t + A2e s2t, t Ú 0
If A2 = V20, the response is critically damped i(0 +) = A1 + A2 = I0
and i(t) = D1te -at + D2e -at, t Ú 0. di(0 +) 1
4. If the response is overdamped, calculate = s1A1 + s2A2 = 1 -RI0 - V0 2
dt L
s1 and s2 using the equations in Table 8.4;
If the response is underdamped, calculate a 2 6 v20 : underdamped i(t) = B1e -at cos vdt + B2e -at sin vdt, t Ú 0
Vd using the equation in Table 8.4. i(0 +) = B1 = I0
5. If the response is overdamped, calculate
di(0 +) 1
A1 and A2 by simultaneously solving the = -aB1 + vdB2 = 1 - RI0 - V0 2
equations in Table 8.4;
dt L
If the response is underdamped, calculate B1 a 2 = v20 : critically damped i(t) = D1te -at + D2e -at, t Ú 0
and B2 by simultaneously solving the equations i(0 +) = D2 = I0
in Table 8.4;
di(0 +) 1
If the response is critically damped, calculate = D1 - aD2 = 1 -RI0 - V0 2
D1 and D2 by simultaneously solving the equa- dt L
tions in Table 8.4.
(Note that the equations in the last three rows assume that the reference direction for the current
6. Write the equation for i(t) from Step 3 using
in every component is in the direction of the reference voltage drop across that component.)
the results from Steps 4 and 5; find any desired
component voltages.
STEP RESPONSE OF A
SERIES RLC CIRCUITS Equations for analyzing the step response of series RLC
TABLE 8.5
1. Determine the initial capacitor volt-
circuits
age (V0), the initial inductor current (I0), R 1 V
and the final capacitor voltage (Vf) from Characteristic equation s2 + s + =
L LC LC
the circuit.
vd = 2v 20 - a 2
2. Determine the values of A and V0 Neper, resonant, and R 1
A LC
using the equations in Table 8.5. damped frequencies a = v0 =
2L
3. If A2 7 V20, the response is
s1 = -a + 2a 2 - v 20, s2 = - a - 2a 2 - v 20
overdamped and vC(t) = Vf + A′1e s1t Roots of the characteristic
+ A′2e s2t, t Ú 0 +; equation
If A2 6 V20, the response is under-
damped and vC(t) = Vf + B′1e -at cos vdt a 2 7 v 20 : overdamped vC(t) = Vf + A′1e s1t + A′2e s2t, t Ú 0
+ B′2e -at sin vdt, t Ú 0 +; vC(0 +) = Vf + A′1 + A′2 = V0
If A2 = V20, the response is critically
damped and vC(t) = Vf + D′1te -at
dvC(0 +) I0
= s1A′1 + s2A′2 =
+ D′2e -at, t Ú 0 + . dt C
4. If the response is overdamped,
a 2 6 v 20 : underdamped vC(t) = Vf + B′1e -at cos vdt + B′2e -at sin vdt, t Ú 0
calculate s1 and s2 using the equations
in Table 8.5; vC(0 +) = Vf + B′1 = V0
If the response is underdamped, calcu-
dvC(0 +) I0
late Vd using the equation in Table 8.5. = -aB′1 + vdB′2 =
5. If the response is overdamped, dt C
calculate A1 ′ and A2 ′ by simultaneously
solving the equations in Table 8.5; a 2 = v 20 : critically vC(t) = Vf + D′1te -at + D′2e -at, t Ú 0
If the response is underdamped, calcu- damped vC(0 +) = Vf + D′2 = V0
late B1 ′ and B2 ′ by simultaneously solving
the equations in Table 8.5;
dvC(0 +) I0
= D′1 - aD′2 =
If the response is critically damped, dt C
calculate D1 ′ and D2 ′ by simultaneously (Note that the equations in the last three rows assume that the reference direction for the current
solving the equations in Table 8.5.
in every component is in the direction of the reference voltage drop across that component.)
6. Write the equation for vC(t) from Step 3
using the results from Steps 4 and 5;
find the inductor voltage and any desired
branch currents.
GLOBAL
EDITION
Now in its eleventh edition, Electric Circuits continues to help students develop
problem-solving skills based on a solid conceptual foundation. This edition is the
most extensive revision to the text since the Fifth Edition. Every aspect of this text
has been examined to improve clarity, readability, and pedagogy.
Features
• Step-by-step directions that lead students to a problem’s solution
• Over 1000 end-of-chapter problems organized by sections, with over 30% revised
from the previous editions
• Practical Perspectives in each chapter that provide real-world circuit examples, along
with a quantitative circuit analysis and related end-of-chapter problems
• Assessment problems at key points in a chapter that ask students to stop and assess
their mastery of an objective
• Nearly 200 examples to illustrate the concepts presented in the text, an increase of
about 35% from the previous edition
• Integration of computer tools with support for both PSpice and Multisim, and chapter
problems for both
• Pearson Mastering Engineering, containing end-of-chapter problems enhanced with
hints and feedback, coaching activities, and follow-up assignments, along with access to
video solutions that are complete walkthroughs to representative homework problems