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 /1628/CH12/EX12.5/Ex12_5.sce | |
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 '1628/CH12/EX12.5/Ex12_5.sce')
-rwxr-xr-x | 1628/CH12/EX12.5/Ex12_5.sce | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/1628/CH12/EX12.5/Ex12_5.sce b/1628/CH12/EX12.5/Ex12_5.sce new file mode 100755 index 000000000..1bffb26d9 --- /dev/null +++ b/1628/CH12/EX12.5/Ex12_5.sce @@ -0,0 +1,16 @@ + + // Example 12.5 + +p1=3000; // Load of 3-kW +p2=1500; // Load of 1.5-kW +P=p1+p2; // Total Load +disp(' Total Power Consumed = '+string(P)+' Watt'); + +Q=atand(1.732*(p1-p2)/(p1+p2)); // Power Factor Angle +pf=cosd(Q); // Power Factor +disp(' Power Factor is = '+string(pf)); + + + + + // p 417 12.5
\ No newline at end of file |