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 /1760/CH2/EX2.12 | |
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 '1760/CH2/EX2.12')
-rwxr-xr-x | 1760/CH2/EX2.12/EX2_12.sce | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/1760/CH2/EX2.12/EX2_12.sce b/1760/CH2/EX2.12/EX2_12.sce new file mode 100755 index 000000000..91af2c4e0 --- /dev/null +++ b/1760/CH2/EX2.12/EX2_12.sce @@ -0,0 +1,13 @@ + //EXAMPLE 2-12 PG NO-66-67
+W1=80*%pi; //womega
+W2=100*%pi;
+PV=14.14; //peak value
+t1=0.025; //time
+t2=0.05;
+t3=0.075;
+I1=PV*(cos(80*%pi*t1)+cos(100*%pi*t1)); //current
+I2=PV*(cos(80*%pi*t2)+cos(100*%pi*t2)); //current
+I3=PV*(cos(80*%pi*t3)+cos(100*%pi*t3)); //current
+disp('ii) CURRNT (I) is = '+string (I1) +' A');
+disp('ii) CURRNT (I) is = '+string (I2) +' A ');
+disp('ii) CURRNT (I) is = '+string (I3) +' A ');
|