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 /1376/CH16/EX16.6/16_6.sci | |
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 '1376/CH16/EX16.6/16_6.sci')
-rwxr-xr-x | 1376/CH16/EX16.6/16_6.sci | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/1376/CH16/EX16.6/16_6.sci b/1376/CH16/EX16.6/16_6.sci new file mode 100755 index 000000000..d45e21e81 --- /dev/null +++ b/1376/CH16/EX16.6/16_6.sci @@ -0,0 +1,17 @@ +//16.6
+clc;
+El=400;
+Eph=El;
+Impedance_per_phase= (10^2+15^2)^0.5;
+Iph= 400/Impedance_per_phase;
+printf("\nPhase current=%.2f A",Iph)
+Il=Iph*3^0.5;
+printf("\nLine current=%.2f A",I1)
+pf=10/Impedance_per_phase;
+printf("\nPower factor=%.2f ",pf)
+P_total=(3^0.5)*El*Il*pf/1000;
+printf("\nTotal Power=%.2f kW",P_total)
+VAR=(3^0.5)*El*Il*15/(Impedance_per_phase*1000);
+printf("\nReactive volt ampers=%.2f KVAR",VAR)
+VA=(3^0.5)*El*Il/1000;
+printf("\nTotal Volt ampers=%.2f kVA",VA)
\ No newline at end of file |