diff options
author | priyanka | 2015-06-24 15:03:17 +0530 |
---|---|---|
committer | priyanka | 2015-06-24 15:03:17 +0530 |
commit | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch) | |
tree | ab291cffc65280e58ac82470ba63fbcca7805165 /215/CH11/EX11.2 | |
download | Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2 Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip |
initial commit / add all books
Diffstat (limited to '215/CH11/EX11.2')
-rwxr-xr-x | 215/CH11/EX11.2/Figure11_21.jpg | bin | 0 -> 50085 bytes | |||
-rwxr-xr-x | 215/CH11/EX11.2/Figure11_22.jpg | bin | 0 -> 65046 bytes | |||
-rwxr-xr-x | 215/CH11/EX11.2/ex11_2.sce | 29 |
3 files changed, 29 insertions, 0 deletions
diff --git a/215/CH11/EX11.2/Figure11_21.jpg b/215/CH11/EX11.2/Figure11_21.jpg Binary files differnew file mode 100755 index 000000000..9d428ea12 --- /dev/null +++ b/215/CH11/EX11.2/Figure11_21.jpg diff --git a/215/CH11/EX11.2/Figure11_22.jpg b/215/CH11/EX11.2/Figure11_22.jpg Binary files differnew file mode 100755 index 000000000..64962b856 --- /dev/null +++ b/215/CH11/EX11.2/Figure11_22.jpg diff --git a/215/CH11/EX11.2/ex11_2.sce b/215/CH11/EX11.2/ex11_2.sce new file mode 100755 index 000000000..d9afdb0dd --- /dev/null +++ b/215/CH11/EX11.2/ex11_2.sce @@ -0,0 +1,29 @@ +clc
+//Example 11.2
+//Calculate the average power
+printf("Given")
+disp('v=4*cos(%pi/6*t), V=4(0 deg), Z=2(60 deg)')
+Vamp=4;Vang=0;Zamp=2;Zang=60;
+//Let I be the phasor current
+Iamp=Vamp/Zamp
+Iang=Vang-Zang
+P=0.5*Vamp*Zamp*cos((Zang*%pi)/180)
+printf("P=%d W \n",P);
+t=-1:1:15
+t1=-3:1:12
+v=Vamp*cos(%pi/6*t)
+//i=2*cos((%pi/6)*t-(%pi/3))
+i=Iamp*cos(%pi/6*t+((Iang*%pi)/180))
+figure
+a= gca ();
+plot (t,v,t,i)
+xtitle ('v,i vs t' ,'t' ,'v,i');
+a. thickness = 2;
+//Instantaneous power p=v*i
+//On solving
+p=2+4*cos(%pi/3*t+((Iang*%pi)/180))
+figure
+a= gca ();
+plot (t,p)
+xtitle ('p vs t' ,'t' ,'p');
+a. thickness = 2;
|