diff options
author | Jayaram Pai | 2013-12-25 03:23:55 +0530 |
---|---|---|
committer | Jayaram Pai | 2013-12-25 03:23:55 +0530 |
commit | 06e73e7cd1c99ce224ee594b1e11129bc9a4e422 (patch) | |
tree | 02ade50fd69949986ec14f888f15c5f933c09e2e /static/tmp/mLnhjbU1jr3BCrLv8tMJai6ElivgI1dJ.sci | |
parent | 80068542d8d510bf0751ef3c4309b35408f9039d (diff) | |
download | scilab-on-cloud-06e73e7cd1c99ce224ee594b1e11129bc9a4e422.tar.gz scilab-on-cloud-06e73e7cd1c99ce224ee594b1e11129bc9a4e422.tar.bz2 scilab-on-cloud-06e73e7cd1c99ce224ee594b1e11129bc9a4e422.zip |
code tested for Scilab 5.3.3
Diffstat (limited to 'static/tmp/mLnhjbU1jr3BCrLv8tMJai6ElivgI1dJ.sci')
-rw-r--r-- | static/tmp/mLnhjbU1jr3BCrLv8tMJai6ElivgI1dJ.sci | 48 |
1 files changed, 48 insertions, 0 deletions
diff --git a/static/tmp/mLnhjbU1jr3BCrLv8tMJai6ElivgI1dJ.sci b/static/tmp/mLnhjbU1jr3BCrLv8tMJai6ElivgI1dJ.sci new file mode 100644 index 0000000..f635a71 --- /dev/null +++ b/static/tmp/mLnhjbU1jr3BCrLv8tMJai6ElivgI1dJ.sci @@ -0,0 +1,48 @@ +lines(0) + +disp("Example 2.1") +printf("\n") +printf("Given") +disp("Resistance used is 4 ohm") +disp("Current flow is i=2.5*sin(w*t)") +disp("Angular frequency(w)=500 rad/s") + +R=4; +iamp=2.5;w=500; +t=0:0.001:0.012566 +i=2.5*sin(w*t) + + +Vamp=iamp*R; +printf("v=%d*sin(%d*t)(V)\n",Vamp,w) + +pamp=iamp*iamp*R; +printf("p=%d(sin(%d*t))^2(W)\n",pamp,w) +p=pamp*sin(w*t)^2; + +//On integrating p with respect to t +W=25*(t/2-sin(2*w*t)/(4*w)) + +function p=f(t),p=pamp*sin(w*t)^2,endfunction +w1=intg(0,2*%pi/w,f); + + +subplot(221) +plot(t,i) +xs2jpg(gcf(), "/home/cheese/cloud/soc/static/tmp/1387919154.jpg"); +xtitle ('i vs wt','wt','i '); + +subplot(222) +plot(t,p) +xs2jpg(gcf(), "/home/cheese/cloud/soc/static/tmp/1387919155.jpg"); +xtitle ('p vs wt','wt','p '); + + + +subplot(223) +plot(t,W) +xs2jpg(gcf(), "/home/cheese/cloud/soc/static/tmp/1387919156.jpg"); +xtitle ('w vs wt','wt','w '); + + +exit |