From 7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 Mon Sep 17 00:00:00 2001 From: prashantsinalkar Date: Tue, 10 Oct 2017 12:27:19 +0530 Subject: initial commit / add all books --- 1319/CH10/EX10.2/10_2.sce | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 1319/CH10/EX10.2/10_2.sce (limited to '1319/CH10/EX10.2') 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) -- cgit