Sunday, 6 December 2015

Basic rules to calculate the equivalent resistance of a resistor circuit


I have a certain circuit only containing resistors of different values. There is one 'input' and one 'output' for the current. How do I calculate the equivalent resistance of the circuit? Are there any basic rules to follow?



Answer



If determining replacement value is the only goal then I can think of the following steps:


1) Analyse the circuit into the smallest solvable sub-circuits possible (series and parallel);


2) Calculate series resistors $R_S = R_1 + R_2$;


schematic


simulate this circuit – Schematic created using CircuitLab


3) Calculate parallel resistors: $R_P = \frac{1}{\frac{1}{R_3}+\frac{1}{R_4}}$



schematic


simulate this circuit


4) Apply wye-delta (Y-Δ) transform or reverse


5) Repeat until solved or run the circuit through a circuit simulator like SPICE.



schematic


simulate this circuit


Y→Δ


Rab=Ran+Rbn+RanRbnRcn


Rac=Ran+Rcn+RanRcnRan



Rbc=Rbn+Rcn+RbnRcnRan


Δ→Y


Ran=RabRacRab+Rac+Rbc


Rbn=RabRbcRab+Rac+Rbc


Rcn=RacRbcRab+Rac+Rbc


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...