Download Problem: Determine the values of the resistor voltages and currents

Survey
yes no Was this document useful for you?
   Thank you for your participation!

* Your assessment is very important for improving the workof artificial intelligence, which forms the content of this project

Document related concepts

Lumped element model wikipedia , lookup

Opto-isolator wikipedia , lookup

Topology (electrical circuits) wikipedia , lookup

Mathematics of radio engineering wikipedia , lookup

Ohm's law wikipedia , lookup

Transcript
Solution:
Apply KCL to the node at which the current source and the 40 Ω, 48 Ω and 80 Ω resistors are
connected together.
i 2 + i 5 = 0.5 + i 4
EQN 1:
Apply KCL to the node at which the 48 Ω and 32 Ω resistors are connected together.
i5 = i6
EQN 2:
Apply KVL to the loop consisting of the voltage source and the 40 Ω and 80 Ω resistors.
12 = v 2 + v 4
EQN 3:
Apply KVL to the loop consisting of the 48 Ω, 32 Ω and 80 Ω resistors.
v4 + v5 + v6 = 0
EQN 4:
Apply Ohm’s law to the resistors.
Ohm’s law:
v 2 = 40 i 2 , v 4 = 80 i 4 , v 5 = 48 i 5 , v 6 = 32 i 6
Use the Ohm’s law equations to eliminate the variables representing resistor voltages from the
KVL equations.
EQN 5 (from EQN 3):
12 = 40 i 2 + 80 i 4
EQN 6 (from EQN 4):
80 i 4 + 48 i 5 + 32 i 6 = 0
Use EQN 2 to eliminate i 6 from EQN 6.
EQN 7:
80 i 4 + 48 i 5 + 32 i 5 = 0 ⇒ 80 i 4 + 80 i 5 = 0 ⇒ i 4 = −i 5
1
Use EQN 7 to eliminate i 5 from EQN 1.
i 2 − i 4 = 0.5 + i 4
EQN 8:
⇒ i 2 = 0.5 + 2 i 4
Use EQN 8 to eliminate i 4 from EQN 5. Solve the resulting equation to determine the value of
i 2.
⎛ i 2 − 0.5 ⎞
12 + 20
= 0.4 A
EQN 9: 12 = 40 i 2 + 80 ⎜
⎟ = 80 i 2 − 20 ⇒ i 2 =
80
⎝ 2 ⎠
Determine the values of the rest of the resistor voltages and currents.
i4 =
i 2 − 0.5
2
=
0.4 − 0.5
= −0.05 A , i 6 = i 5 = −i 4 = 0.05 A ,
2
v 2 = 40 i 2 = 40 ( 0.4 ) = 1.6 V , v 4 = 80 i 4 = 80 ( −0.05) = −4 V ,
v 5 = 48 i 5 = 48 ( 0.05) = 2.4 V and
v 6 = 32 i 6 = 32 ( 0.05) = 1.6 V
2
MATLAB Solution:
Consecutive equations:
The above algebra shows that this circuit can
be represented by these equations:
12 = 80 i 2 − 20 , i 4 =
i 2 − 0.5
2
,
i 6 = i 5 = −i 4 ,
v 2 = 40 i 2 , v 4 = 80 i 4 ,
v 5 = 48 i 5 and
v 6 = 32 i 6
These equations can be solved consecutively
using MATLAB.
3
Simultaneous Equations
We can avoid some algebra if we are willing to
solve simultaneous equations.
After applying Kirchhoff’s laws and then using
the Ohm’s law equations to eliminate the
variables representing resistor voltages we
have
i 2 + i 5 = 0.5 + i 4 ,
i 5 = i 6 , 12 = 40 i 2 + 80 i 4
and
80 i 4 + 48 i 5 + 32 i 6 = 0
This set of 4 simultaneous equations in i 2 , i 4 ,
i 5 and i 6 can be written as a single matrix
equation.
⎡ 1 −1 1 0 ⎤ ⎡i 2 ⎤ ⎡ 0.5⎤
⎢ 0 0 1 −1⎥ ⎢i ⎥ ⎢ 0 ⎥
⎢
⎥ ⎢ 4⎥ = ⎢ ⎥
⎢ 40 80 0 0 ⎥ ⎢i 5 ⎥ ⎢ 12 ⎥
⎢
⎥⎢ ⎥ ⎢ ⎥
⎣ 0 80 48 32 ⎦ ⎢⎣i 6 ⎥⎦ ⎣ 0 ⎦
This matrix equation can be solved using
MATLAB.
4