Holooly Plus Logo

Question 8.53: Find the phasor gain K = VO/VS and input impedance ZIN of th......

Find the phasor gain K=\mathrm{V}_{\mathrm{O}} / \mathrm{V}_{\mathrm{S}} and input impedance Z_{\mathrm{IN}} of the circuit in Figure P8-53.

fig 8.53
Step-by-Step
The 'Blue Check Mark' means that this solution was answered by an expert.
Learn more on how do we answer questions.

Use node-voltage analysis to solve the problem.

The 'Blue Check Mark' means that either the MATLAB code/script/answer provided in the answer section has been tested by our team of experts; or the answer in general has be fact checked.

Learn more on how do we answer questions.

Script File

clear all
syms Vs Va Vo
% Create the node-voltage equations
Eqn1 = (Va-Vs)/(-15e3j) + Va/20e3 + (Va-Vo)/(-25e3j);
Eqn2 = (Vo-Va)/(-25e3j) + (Vo-Vs)/10e3;
Soln = solve(Eqn1,Eqn2,Va,Vo);
Vo = Soln.Vo;
K = double(Vo/Vs)
MagK = abs(K)
PhaseK = angle(K)*180/pi
% Find the input current to compute the input impedance
Iin1 = (Vs-Vo)/10e3;
Va = Soln.Va;
Iin2 = (Vs-Va)/(-15e3j);
Iin = Iin1+Iin2;
Zin = double(simplify(Vs/Iin))
K =
847.2873e-003 - 28.1313e-003i
MagK =
847.7542e-003
PhaseK =
-1.9016e+000
Zin =
21.3235e+003 - 9.7059e+003i

\begin{aligned}& K=\mathrm{V}_{\mathrm{O}} / \mathrm{V}_{\mathrm{S}}=0.8473-j 0.0281=0.8478 \angle-1.9016^{\circ}.\\ \\& Z_{\mathrm{IN}}=21.32-j 9.706 ~\mathrm{k} \Omega.\end{aligned}

Related Answered Questions

Question: 8.54

Verified Answer:

Use node-voltage analysis to solve the problem.
Question: 8.51

Verified Answer:

The output phasor voltage appears across two eleme...