Tuesday 17 May 2016

circuit analysis - Superposition principle: Dependent sources treated as independent sources


Since I began studying, I was taught that when analysing a circuit using multiple sources, independent sources could be turned off, meaning that I could transform a voltage source into a short, and a current source into an open circuit and analyze the circuit by how each individual source acts on it.


However, regarding dependent sources, every electric circuits book I've read says the same thing:



"Dependent sources should never turn off when using the superposition principle analysis, they should be left intact since they are controlled by variables somewhere in the circuit".



However recently I've noticed that I can get the same results if I treat the dependent source as a regular independent source. Ive simulated this, compared to the end-of-chapter problem solutions and it all turns out the same. Take the following problem from Alexander/Sadiku's Book as an example, which states:




"Find Vx using the superposition principle"



schematic


simulate this circuit – Schematic created using CircuitLab


Normally I would leave the dependent source on, turn off the 4A current source and find Vx1, then I would turn off the 6A current source and find Vx2, add them up and find Vx.


However, if I treat the dependent current source as an independent current source, I get the same results, Here's the procedure I followed:


Turning off both current sources:


schematic


simulate this circuit



Finding Vx using Ohm's law results in:


$$Vx1 = -(4Ix / 10) * 8$$ $$Vx1 = -3.2Ix$$


Now I shut down all sources (including the dependent voltage source like if it were an independent source) and leave the 6A source on:


schematic


simulate this circuit


Using the current divider formula and multiplying by 8 I get Vx2


so:


$$Vx2 = (2 / 10) * 6 * 8 = 9.6V$$


Finally, I turn off all sources but the 4A current source:


schematic



simulate this circuit


Using the same procedure as above, by current divider I find Vx3:


$$Vx3 = (2 / 10) * 4 * 8 = 6.4V$$


Finally, the total voltage Vx is the sum of each individual voltage Vx (Vx1, Vx2, Vx3):


$$Vx = Vx1 + Vx2 + Vx3 = -3.2Ix + 9.6 + 6.4$$


I can find Ix by Kirchhoff's Current Law, the currents in the top node of the circuit are:


$$Ix + Vx/8 = 6 + 4$$


Solving for Ix


$$Ix = 6 + 4 - Vx/8$$


Using the above equation to eliminate Ix from Vx:



$$Vx = -3.2(6 + 4 - Vx / 8) + 9.6 + 6.4$$


Solving for Vx:


$$Vx = -26.667V$$


And this is the simulation I made on Multisim:


Simulation of the circuit


So my question is: What is going on? Why is it "prohibited" to treat dependent sources this way when the results are the same?



Answer



Superposition of dependent sources isn't prohibited: Superposition of Dependent Sources is Valid in Circuit Analysis.


The author has investigated the presentation of superposition in circuits texts by surveying twenty introductory books on circuit analysis. Fourteen explicitly state that if a dependent source is present, it is never deactivated and must remain active (unaltered) during the superposition process. The remaining six specifically refer to the sources as being independent in stating the principle of superposition. Three of these present an example circuit containing a dependent source which is never deactivated. The other three do not present an example in which dependent sources are present. From this limited survey, it is clear that circuits texts either state or imply that superposition of dependent sources is not allowed. The author contends that this is a misconception.


As a simple example using superposition of a dependent source consider the following circuit:



schematic


simulate this circuit – Schematic created using CircuitLab


By superposition, we can write the equation for \$V_x\$ by inspection:


$$V_x = V_s\frac{R_2}{R_1 + R_2} + 5i_x R_1|| R_2 $$


We also have, by inspection


$$i_x = \frac{V_s - V_x}{R_1} $$


Thus


$$V_x = V_s\frac{R_2}{R_1 + R_2} + 5 \frac{V_s - V_x}{R_1}R_1|| R_2$$


It's just algebra from here. No need for node equations or mesh equations.


The key to successfully using superposition with dependent sources is the following:



Do not attempt to solve for a numeric answer until the superposition sum has been written.


No comments:

Post a Comment

arduino - Can I use TI's cc2541 BLE as micro controller to perform operations/ processing instead of ATmega328P AU to save cost?

I am using arduino pro mini (which contains Atmega328p AU ) along with cc2541(HM-10) to process and transfer data over BLE to smartphone. I...