diff options
Diffstat (limited to '1430/CH9/EX9.2/exa9_2.sce')
-rw-r--r-- | 1430/CH9/EX9.2/exa9_2.sce | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/1430/CH9/EX9.2/exa9_2.sce b/1430/CH9/EX9.2/exa9_2.sce new file mode 100644 index 000000000..fe2aa6625 --- /dev/null +++ b/1430/CH9/EX9.2/exa9_2.sce @@ -0,0 +1,19 @@ +// Example 9.2
+// Step response of an RC circuit
+C=50*10^-6;
+R_eq=(3000*6000)/(3000+6000); // From figure 9.10(a)
+v_oc=(6*12)/(3+6);
+tau=R_eq*C;
+t=0:0.0001:1
+v=v_oc*(1-exp(-t/tau)); // t>0
+i=(v_oc-v)/(R_eq); // t>0
+subplot(2,1,1)
+plot(t,v,)
+xlabel('t')
+ylabel('v(t)')
+title('Voltage waveform across capacitor')
+subplot(2,1,2)
+plot(t,i)
+xlabel('t')
+ylabel('i(t)')
+title('Current waveform across capacitor')
|