diff options
Diffstat (limited to '887/CH1/EX1.1/1_1.sce')
-rwxr-xr-x | 887/CH1/EX1.1/1_1.sce | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/887/CH1/EX1.1/1_1.sce b/887/CH1/EX1.1/1_1.sce new file mode 100755 index 000000000..d3da1d957 --- /dev/null +++ b/887/CH1/EX1.1/1_1.sce @@ -0,0 +1,12 @@ +//ex1.1
+//As both q and i are 0 when t<0, graph coincides with x-axis till t=0 and we here,show the part where t>0
+t=[0:0.000001:0.04];
+q=2*(1-%e^(-100*t));
+//current i=dq/dt=200*e^(-100*t)
+i=200*%e^(-100*t);
+subplot(121)
+xtitle('charge vs time','time in ms','charge in coulombs') //ms-milli second(10^-3)
+plot(t*10^3,q)
+subplot(122)
+xtitle('current vs time','time in ms','current in amperes') //ms-milli second(10^-3)
+plot(t*10^3,i)
|