Electronic – How to calculate the Impedance of a circuit

circuit analysisimpedance

I am having a problem regarding calculating the impedance of the two circuits below:

schematic

simulate this circuit – Schematic created using CircuitLab

Everywhere I search I always get a description of what to do if they are connected in series or in parallell, however no one I have found so far explains how to use both parallell and series to make an Impedance function using the jw method. Would be extremly happy if someone explains the best method of getting the jw impedance function and also what does R1 // L1 stand for in these cases. Why is R1 // L1 often refered to as (R1 * L1) / (R1 + L1) and not (1/R1 + 1/L1) Like regular parallell functions.

The values on the different parts in the schematics are just examples, I would like to know how to make the formula using the signs like R1, C1 and so on.

Thanks in advance

Best Answer

I always get a description of what to do if they are connected in series or in parallell

That's ultimately all there is. You keep applying parallel and series combinations until there is only a single impedance left. For example, in your first circuit, R and L are obviously in series. Solve for that. Now compute that result in parallel with C. In the second circuit, you can likewise combine R2 and C1 in series, then the result of that parallel with R1, then the result of that in series with L.

The "//" operator means in parallel with. The arbitrary case of multiple impedances in parallel is the reciprocal of the sum of the reciprocals. R1 // R2 // ... Rn = 1 / (1/R1 + 1/R2 + ... 1/Rn).

Note that for just two impedances, this can be reduced to (R1 * R2)/(R1 + R2). Your second equation for parallel impedances is wrong because you forgot to take the reciprocal of the resulting sum.

Note that the math above works not just for resistances, but also arbitrary impedances. In the general case, these are complex numbers. If all the impedances are resistances, then all the values are real numbers, making the computation easier. However, the algebra is the same, except that it has to be carried out on complex numbers in the case of arbitrary impedances.