Get a low cost access to TINACloud to edit the examples or create your own circuits
We say that two or more resistors are connected in parallel if the resistors are all connected to the same voltage. This causes the current to split into two or more paths (branches).
The voltage drop across each branch of a parallel circuit is equal to the voltage drop across all the other branches in parallel.
The sum of all the branch currents in a parallel circuit equals the total current.
From these two principles, it follows that the total conductance of a parallel circuit is the sum of all the individual resistor conductances. The conductance of a resistor is the reciprocal of its resistance.
Example 1
Find the equivalent resistance!We can use the two equations above to solve for the parallel equivalent of the two resistances by the formula:
You can also see the result calculated by TINA in the DC analysis mode, and as solved by TINA’s Interpreter.
{Req=R1*R2/(R1+R2)}
Req:=Replus(R1,R2);
Req=[7.5]
Replus= lambda R1, R2 : R1*R2/(R1+R2)
Req=Replus(R1,R2)
print(“Req=”, Req)
Notice that the expression for Rtot (Req) in the Interpreter uses a special function for the calculation of the equivalent of two parallel connected resistances, Replus.
Example 2
Find the equivalent resistance of the three parallel connected resistors!{Req=1/(1/R1+1/R2+1/R3)
Req:=Replus(R1,Replus(R2,R3));
Req=[5]
Replus= lambda R1, R2 : R1*R2/(R1+R2)
Req=Replus(R1,Replus(R2,R3))
print(“Req=”, Req)
Here, in the Interpreter solution, you can see the application of Replus two times. The first time solves for Req of R2 and R3, the second time for the Req of R1 in parallel with the Req of R2 and R3.
Example 3
Find the currents in the parallel connected resistors if the source voltage is 5 V!
I1:=VS1/R1;
I1=[5m]
I2:=VS1/R2;
I2=[2.5m]
Itot:=I1+I2;
Itot=[7.5m]
I1=VS1/R1
print(“I1=”, I1)
I2=VS1/R2
print(“I2=”, I2)
Itot=I1+I2
print(“Itot=”, Itot)
In the Interpreter solution, we apply Ohms Law in a straightforward fashion to obtain the individual and total currents.
The following problem is a bit more practicalExample 4
An ammeter can safely measure currents up to 0.1 A without damage. When the ammeter is measuring 0.1A, the voltage across the ammeter is 10 m V. We wish to place a resistor (called a shunt) in parallel with the ammeter so that it can be used to safely measure a 2 A current. Calculate the value of this parallel connected resistor, RP.
Thinking through the problem, we realize that the total current will be 2A and that it must split, with 0.1A in our meter and with 1.9A in Rp. Knowing that the voltage across the ammeter and therefore also across the shunt is 10uV, we can use Ohm’s Law to find Rp = 10uV/1.9A, or 5.2632uOhms.
{First find the resistance of the ammeter}
Ia:=0.1;
Ua:=1e-5;
Ra:=Ua/Ia;
Ra=[100u]
Is:=2;
IP:=Is-Ia;
IP=[1.9]
Rp:=Ua/IP;
Rp=[5.2632u]
Ia=0.1
Ua=1E-5
Ra=Ua/Ia
print(“Ra=”, Ra)
Is=2
IP=Is-Ia
print(“IP=”, IP)
#let be RP = Ua/IP= Rc
Rc=Ua/IP
print(“Rc=”, Rc)