summaryrefslogtreecommitdiff
path: root/1319/CH10/EX10.2
diff options
context:
space:
mode:
authorprashantsinalkar2017-10-10 12:27:19 +0530
committerprashantsinalkar2017-10-10 12:27:19 +0530
commit7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 (patch)
treedbb9e3ddb5fc829e7c5c7e6be99b2c4ba356132c /1319/CH10/EX10.2
parentb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (diff)
downloadScilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.gz
Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.bz2
Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.zip
initial commit / add all books
Diffstat (limited to '1319/CH10/EX10.2')
-rw-r--r--1319/CH10/EX10.2/10_2.sce18
1 files changed, 18 insertions, 0 deletions
diff --git a/1319/CH10/EX10.2/10_2.sce b/1319/CH10/EX10.2/10_2.sce
new file mode 100644
index 000000000..e5e4f6eda
--- /dev/null
+++ b/1319/CH10/EX10.2/10_2.sce
@@ -0,0 +1,18 @@
+//Pf at which the slow machine will work
+
+clc;
+clear;
+
+pf1=0.8;//Power Factor Lag (Combined)
+Pa=2500*(10^3); // Combined Power
+Pr=Pa*(tand(acosd(pf1))); // Combined VAr
+Pat=1000*(10^3); // Active power of the turbo alternator unity pf so no VAr
+Prt=0;
+Pas=Pa-Pat; // Active power of the slow speed alternator
+Prs=Pr-Prt; // Reactive power of the slow speed alternator
+
+theta=atand(Prs/Pas); // Power Factor Angle
+
+powfac=cosd(theta); // Power factor
+
+printf('The Power Factor of the slow speed alternator is %g\n',powfac)