Consider the following circuit which consists of 3 current sources, 1 6 resistors arranged in an octagon, and a load in parallel with a resistor.
Furthermore, consider three different versions of this circuit which have three different loads.
Calculate V 1 + V 2 + V 3 (in volts) to 1 decimal place.
Details and assumptions:
This question is inspired by this problem .
This section requires Javascript.
You are seeing this because something didn't load right. We suggest you, (a) try
refreshing the page, (b) enabling javascript if it is disabled on your browser and,
finally, (c)
loading the
non-javascript version of this page
. We're sorry about the hassle.
Fun problem. My solution has a lot in common with the problem author's so I will just show how to solve for the Thevenin equivalent of the top portion without using superposition.
First calculate the open circuit voltage between A and B. I labeled the node voltages ( A , B , C , D , E , F , G , H , J ) . The sum of the currents out of each node should be zero. I used a hill climbing algorithm to search for all nine node voltages such that this condition is satisfied. Then the Thevenin internal voltage is the voltage at B minus the voltage at A with the terminals open. Results are printed at the end of the first piece of code.
Then calculate the short circuit current. In this case, node B becomes a "supernode", and we again search for the node voltages such that the sum of currents out of each node is zero. The short circuit current is the current into one end of the supernode (consisting of two currents flowing in on paths JB and CB). The results are printed at the end of the second piece of code. The Thevenin resistance is the open circuit voltage divided by the short circuit current.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 |
|
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 |
|
Here's a solution using symmetry and superposition to greatly simplify the network into only three loops. Before we begin, we normalize all currents, voltages, time and elements by the values given below: voltages: 1 V , currents: 1 A , time: 1 s ⇒ R : 1 Ω , C : 1 F , L : 1 H The network equations remain the same in the process, but now all currents, voltages, time and elements represent their normalized dimensionless counterparts.
The network is supposed to be in steady state for all three loads. First, the load is R L = 1 0 3 . In case of C the load simplifies to an open circuit or equivalently R L → ∞ . In case of L the load simplifies to a short circuit or equivalently R L = 0 . Let's keep R L as a variable and solve all three cases together!
First we rewrite the current sources I 1 , 3 into ( I 1 I 3 ) = ( 1 3 ) = ( 2 2 ) + ( − 1 1 ) = : I c + I d Now we use superposition: First we only consider I d , afterwards the remaining sources I c , I 2 together. In both cases, the entire network is symmetric - that was the reason to rewrite I 1 , 3 in the first place!
When I d is active, we flip the left current source to eliminate the sign: Voltages on the left and right have to be equal by symmetry! This leads to V x = 0 , so we can ignore this case.
In the other case, voltages on the left and right have to be negative equal by symmetry! Therefore, the entire middle axis of the network has to have the same potential as the middle node: We may connect the entire middle axis to the middle node without changing any voltages/currents! To do that, we need to split R L and three resistances R in half.
As voltages on the left and right are negative equal, we only need to consider the right half of the simplified network to calculate V x . After merging parallel resistances at the top into R t and parallel resistances at the bottom into R b , we only have three loops left:
The top and bottom resistances are R t = R ∥ 2 R = 3 R , R b = 2 R L ∥ 2 R ∥ 2 R ∥ R = R L 2 + R 5 1 = 2 R + 5 R L R R L = : α ( R L ) R
We rewrite the current sources and their parallel resistances into equivalent voltage sources to solve the resulting network by loop analysis: R ⎝ ⎛ 2 + α ( R L ) − 1 0 − 1 3 − 1 0 − 1 2 + 3 1 ⎠ ⎞ ⎝ ⎛ I l 1 I l 2 I l 3 ⎠ ⎞ = 2 R ⎝ ⎛ 0 1 3 1 ⎠ ⎞ We only need to solve for I l 1 , so we use Cramer's Determinant Rule: I l 1 = 2 ⋅ 7 ( 2 + α ( R L ) ) − ( 2 + α ( R L ) ) − ( 2 + 3 1 ) ( 2 + 3 1 ) + 3 1 = 2 9 + 1 8 α ( R L ) 1 6 = : f 1 ( R L ) , V x = 2 R b I l 1 = 2 R α ( R L ) I l 1 = 2 9 + 1 8 α ( R L ) 1 6 0 0 α ( R L ) = : f 2 ( R L ) Now we can finally compute the initial conditions for all three loads: R L = 1 0 3 : V x ( 0 − ) = f 2 ( 1 0 3 ) = 1 6 5 9 1 6 0 0 0 = V 1 , C : V x ( 0 − ) = R L → ∞ lim f 2 ( R L ) = 1 6 3 1 6 0 0 , L : I l 1 ( 0 − ) = f 1 ( 0 ) = 2 9 1 6
We only need to consider the loads C , L for which we have to compute V x ( τ ) . When the switches are open, the lower part of the network is a standard R C -/ R L -circuit. For both circuits, the solution is well known: C : V x ( τ ) = V x ( 0 − ) e − R C τ = 1 6 3 1 6 0 0 e − 1 = V 2 , L : V x ( τ ) = − R I l 1 ( 0 − ) e − L R τ = − 2 9 8 0 0 e − 1 = V 3 Assuming we have to add the absolute values, we get the answer ∣ V 1 ∣ + ∣ V 2 ∣ + ∣ V 3 ∣ ≈ 2 3 . 4
Problem Loading...
Note Loading...
Set Loading...
My solution.