summaryrefslogtreecommitdiff
path: root/1430/CH13/EX13.12/exa13_12.sce
diff options
context:
space:
mode:
Diffstat (limited to '1430/CH13/EX13.12/exa13_12.sce')
-rw-r--r--1430/CH13/EX13.12/exa13_12.sce29
1 files changed, 29 insertions, 0 deletions
diff --git a/1430/CH13/EX13.12/exa13_12.sce b/1430/CH13/EX13.12/exa13_12.sce
new file mode 100644
index 000000000..61bbd7d43
--- /dev/null
+++ b/1430/CH13/EX13.12/exa13_12.sce
@@ -0,0 +1,29 @@
+// Example 13.12
+// Calculating a Zero-Input Response
+L=2;
+R=20;
+C=1/200;
+s=%s;
+// for t<0
+i_L_bef=6;
+v_C_bef=20*i_L_bef;
+// for t>0 ,figure 13.13(b)
+
+//Applying Mesh equation for I_L_s
+I_L_s=(12+120/s)/(2*s+20+100/s);
+// I_L_s has the form (Bs+C)/(s^2+2*alpha*s+omega_0^2) comparing these equations
+// we get
+B=6;
+C=60;
+alpha=5;
+omega_o=50
+beta=5;
+K=complex(6,-6);
+K_m=abs(K);
+phase_K=atan(imag(K),real(K))
+t=0:0.001:5;
+i_L=K_m*exp(-alpha*t).*cos(beta*t+phase_K); // t>=0
+plot(t,i_L)
+xlabel('t')
+ylabel('i_L(t)')
+title('Current Waveform')