diff options
Diffstat (limited to 'Working_Examples/154/DEPENDENCIES/ch11_2.sce')
-rwxr-xr-x | Working_Examples/154/DEPENDENCIES/ch11_2.sce | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/Working_Examples/154/DEPENDENCIES/ch11_2.sce b/Working_Examples/154/DEPENDENCIES/ch11_2.sce new file mode 100755 index 0000000..eeada8f --- /dev/null +++ b/Working_Examples/154/DEPENDENCIES/ch11_2.sce @@ -0,0 +1,37 @@ +clc
+disp("Problem 11.2")
+printf("\n")
+
+t=0:0.5:1;
+i=1;i1=-1;
+figure
+a=gca()
+plot(t,i,t+1,i1)
+xtitle("i vs t",'t in ms','i in mA')
+//Voltage across capacitor vC=(1/C)*integrate(i*dt)
+//On integration
+t=0:0.0005:0.001
+v=2000*t
+v1=2-v;
+figure
+a=gca()
+plot(t,v,t+0.001,v1,t+0.002,v,t+0.003,v1)
+xtitle("v vs t",'t in ms','v in V')
+
+//Power is p=v*i
+t=0:.0005:.001
+p=2000*t
+p1=p-2;
+figure
+a=gca()
+plot(t,p,t+0.001,p1,t+0.002,p,t+0.003,p1)
+xtitle("p vs t",'t in ms','p in W')
+
+//Work is (C*v^2)/2
+t=0:.0005:.001
+w=t^2
+w1=t^2+1*10^-6-(2*10^-3*t);
+figure
+a=gca()
+plot(t,w,t+0.001,w1,t+0.002,w,t+0.003,w1)
+xtitle("w vs t",'t in ms','w in J')
|