diff options
Diffstat (limited to '3802/CH9/EX9.9/Ex9_9.sce')
-rw-r--r-- | 3802/CH9/EX9.9/Ex9_9.sce | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/3802/CH9/EX9.9/Ex9_9.sce b/3802/CH9/EX9.9/Ex9_9.sce new file mode 100644 index 000000000..086d9b0a7 --- /dev/null +++ b/3802/CH9/EX9.9/Ex9_9.sce @@ -0,0 +1,16 @@ +//Book Name:Fundamentals of Electrical Engineering
+//Author:Rajendra Prasad
+//Publisher: PHI Learning Private Limited
+//Edition:Third ,2014
+
+//Ex9_9.sce.
+
+//input data are taken from example 9.8
+clc;
+clear;
+VI1=10e6;
+pf1=0.75;
+pfc=cosd(90-asind(7/100));
+KVAc=VI1*((sqrt(1-pf1^2))/(sqrt(1-pfc^2)))*1e-3;
+MVAc=KVAc*1e-3;
+printf("\n The capacity of synchronous condenser which is desired to raise the power factor to unity=%1.2f MVA",MVAc);
|