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.83 | |
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.83')
-rwxr-xr-x | 1760/CH2/EX2.83/EX2_83.sce | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/1760/CH2/EX2.83/EX2_83.sce b/1760/CH2/EX2.83/EX2_83.sce new file mode 100755 index 000000000..a8651b2ac --- /dev/null +++ b/1760/CH2/EX2.83/EX2_83.sce @@ -0,0 +1,19 @@ + //EXAMPLE 2-83 PG NO-117-118
+V=125+%i*0;
+I1=5+%i*0;
+I2=1.2+%i*1.964;
+Z2=V/I2;
+disp('iv) IMPEDANCE (Z2) is in polar form = '+string (Z2) +' ohm ');
+R=28.26;
+XC=46.43;
+F=50;
+C=1/[2*%pi*F*XC];
+disp('iv) CAPACITOR (C) is in polar form = '+string (C) +' F ');
+I=I1+I2;
+disp('iv) CURRENT (I) is in polar form = '+string (I) +' A ');
+S=V*I;
+disp('i) Apparent Power (S) is in polar form = '+string (S) +' VA ');
+P=S*0.953;
+disp('i) Active Power (P) is in polar form = '+string (P) +' W ');
+Q=S*0.302;
+disp('i) Reactive Power (Q) is in polar form = '+string (Q) +' Var ');
|