summaryrefslogtreecommitdiff
path: root/Working_Examples/154/CH2/EX2.1/ch2_1.sce
diff options
context:
space:
mode:
authorSiddharth Agarwal2019-09-03 18:27:40 +0530
committerSiddharth Agarwal2019-09-03 18:27:40 +0530
commit8ac15bc5efafa2afc053c293152605b0e6ae60ff (patch)
treee1bc17aae137922b1ee990f17aae4a6cb15b7d87 /Working_Examples/154/CH2/EX2.1/ch2_1.sce
parent52a477ec613900885e29c4a0b02806a415b4f83a (diff)
downloadXcos_block_examples-master.tar.gz
Xcos_block_examples-master.tar.bz2
Xcos_block_examples-master.zip
Xcos examples from textbooks and for blocksHEADmaster
Diffstat (limited to 'Working_Examples/154/CH2/EX2.1/ch2_1.sce')
-rwxr-xr-xWorking_Examples/154/CH2/EX2.1/ch2_1.sce43
1 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 ');
+
+