diff options
Diffstat (limited to 'Working_Examples/154/CH2/EX2.1')
-rwxr-xr-x | Working_Examples/154/CH2/EX2.1/ch2_1.sce | 43 | ||||
-rwxr-xr-x | Working_Examples/154/CH2/EX2.1/ch2_11.jpeg | bin | 0 -> 32334 bytes |
2 files changed, 43 insertions, 0 deletions
diff --git a/Working_Examples/154/CH2/EX2.1/ch2_1.sce b/Working_Examples/154/CH2/EX2.1/ch2_1.sce new file mode 100755 index 0000000..06689b4 --- /dev/null +++ b/Working_Examples/154/CH2/EX2.1/ch2_1.sce @@ -0,0 +1,43 @@ + +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) +xtitle ('i vs wt','wt','i '); + +subplot(222) +plot(t,p) +xtitle ('p vs wt','wt','p '); + + + +subplot(223) +plot(t,W) +xtitle ('w vs wt','wt','w '); + + diff --git a/Working_Examples/154/CH2/EX2.1/ch2_11.jpeg b/Working_Examples/154/CH2/EX2.1/ch2_11.jpeg Binary files differnew file mode 100755 index 0000000..edba37c --- /dev/null +++ b/Working_Examples/154/CH2/EX2.1/ch2_11.jpeg |