Electronic – Calculating maximum power transfer for given circuit

circuit analysispower

Someone sent me this question along with an answer. However I am completely unable to calculate this using either KCL or KVL.

schematic

simulate this circuit – Schematic created using CircuitLab

The value for R is 10 ohm for maximum power transfer. But as per my calculation maximum power transfer will be on a value Rinfinity. (With R increasing V1 increases which in turn will increase current 0.1V1)

Best Answer

Since the unknown resistance, \$R\$, and the fixed voltage supply are in series, they can be swapped without loss for analysis. The resulting schematic is as simple as the following case:

schematic

simulate this circuit – Schematic created using CircuitLab

You only have one node to solve for, making this almost trivial:

$$\frac{V}{R_1=5\:\Omega}+\frac{V}{R}=100\:\text{mS}\cdot\left(V-{-5}\:\text{V}\right)+\frac{-5\:\text{V}}{R}$$

Solve the above equation for \$V\$ and then apply it to the power equation: \$P_R=\frac{\left(V\,-\,{-5}\:\text{V}\right)^2}{R}\$. Take the differential with respect to \$R\$ and then set that equal to zero and solve. You will find the solution to be \$R=10\:\Omega\$.

In sympy:

v=Symbol('v')
r=Symbol('r')
solve(Eq(derivative(simplify((solve(Eq(v/5+v/r,.1*(v+5)-5/r),v)[0]+5)**2/r),r),0),r)[0]

10.0000000000000