diff options
Diffstat (limited to '1319/CH7/EX7.3/7_3.sce')
-rw-r--r-- | 1319/CH7/EX7.3/7_3.sce | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/1319/CH7/EX7.3/7_3.sce b/1319/CH7/EX7.3/7_3.sce new file mode 100644 index 000000000..1fb843214 --- /dev/null +++ b/1319/CH7/EX7.3/7_3.sce @@ -0,0 +1,14 @@ +//kVAr rating of a synchronous condenser
+
+clc;
+clear;
+
+P=5000*(10^3); // Power delivered to the load
+pfo=0.8;// Original Power Factor
+pfn=0.9;// New Power Factor
+Pcomo=P+%i*(P*tand(acosd(pfo)));//Original Complex Power
+Pcomn=P+%i*(P*tand(acosd(pfn)));//New Complex Power
+
+Psc=abs(imag(Pcomo-Pcomn)); // Difference in kVAr;
+
+printf('The kVAr rating of the synchronous condenser to correct the original p.f to 0.9 = %g kVAr \n',Psc/1000)
|