diff options
author | prashantsinalkar | 2017-10-10 12:27:19 +0530 |
---|---|---|
committer | prashantsinalkar | 2017-10-10 12:27:19 +0530 |
commit | 7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 (patch) | |
tree | dbb9e3ddb5fc829e7c5c7e6be99b2c4ba356132c /1430/CH9/EX9.2/exa9_2.sce | |
parent | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (diff) | |
download | Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.gz Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.bz2 Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.zip |
initial commit / add all books
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')
|