summaryrefslogtreecommitdiff
path: root/1628/CH12/EX12.5/Ex12_5.sce
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /1628/CH12/EX12.5/Ex12_5.sce
downloadScilab-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-x1628/CH12/EX12.5/Ex12_5.sce16
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