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.60 | |
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.60')
-rwxr-xr-x | 1760/CH2/EX2.60/EX2_60.sce | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/1760/CH2/EX2.60/EX2_60.sce b/1760/CH2/EX2.60/EX2_60.sce new file mode 100755 index 000000000..649bbe1b6 --- /dev/null +++ b/1760/CH2/EX2.60/EX2_60.sce @@ -0,0 +1,24 @@ + //EXAMPLE 2-60 PG NO-103-104
+Z1=6+%i*8;
+V=230; // VOLTAGE
+Y1=1/Z1;
+disp('i) ADMITTANCE (Y1) is = '+string (Y1) +' siemens ');
+G1=0.06;
+B1=-0.08;
+Z2=4-%i*3;
+Y2=1/Z2;
+disp('ii) ADMITTANCE (Y2) is = '+string (Y2) +' siemens ');
+G2=0.16;
+B2=0.12;
+TL=G1+G2; //TOTAL CONDUCTANCE
+disp('iii) TOTAL CONDUCTANCE (TL) is = '+string (TL) +' siemens');
+TS=B1+B2; //TOTAL SUSCEPTANCE
+disp('iv) TOTAL SUSCEPTANCE (TS) is = '+string (TS) +' siemens ');
+I1=V*Y1; // CURRENT
+disp('v) CURRENT (I1) is = '+string (I1) +' A ');
+I2=V*Y2;
+disp('vi) CURRENT (I2) is = '+string (I2) +' A ');
+TI=I1+I2; //TOTAL CURRENT
+disp('vii) TOTAL CURRENT (TI) is = '+string (TI) +' A ');
+PF=cos(degree(10.3));
+disp('i) POWER FACTOR (PF) is = '+string (PF) +' leading ');
|