diff options
author | Siddharth Agarwal | 2019-09-03 18:27:40 +0530 |
---|---|---|
committer | Siddharth Agarwal | 2019-09-03 18:27:40 +0530 |
commit | 8ac15bc5efafa2afc053c293152605b0e6ae60ff (patch) | |
tree | e1bc17aae137922b1ee990f17aae4a6cb15b7d87 /Working_Examples/154/DEPENDENCIES/ch11_2.sce | |
parent | 52a477ec613900885e29c4a0b02806a415b4f83a (diff) | |
download | Xcos_block_examples-master.tar.gz Xcos_block_examples-master.tar.bz2 Xcos_block_examples-master.zip |
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')
|