diff options
Diffstat (limited to '3802/CH9/EX9.8')
-rw-r--r-- | 3802/CH9/EX9.8/Ex9_8.jpg | bin | 0 -> 14971 bytes | |||
-rw-r--r-- | 3802/CH9/EX9.8/Ex9_8.sce | 16 |
2 files changed, 16 insertions, 0 deletions
diff --git a/3802/CH9/EX9.8/Ex9_8.jpg b/3802/CH9/EX9.8/Ex9_8.jpg Binary files differnew file mode 100644 index 000000000..19fe22f41 --- /dev/null +++ b/3802/CH9/EX9.8/Ex9_8.jpg diff --git a/3802/CH9/EX9.8/Ex9_8.sce b/3802/CH9/EX9.8/Ex9_8.sce new file mode 100644 index 000000000..b5022b47f --- /dev/null +++ b/3802/CH9/EX9.8/Ex9_8.sce @@ -0,0 +1,16 @@ +//Book Name:Fundamentals of Electrical Engineering
+//Author:Rajendra Prasad
+//Publisher: PHI Learning Private Limited
+//Edition:Third ,2014
+
+//Ex9_8.sce.
+
+clc;
+clear;
+VI1=10e6;
+phi1=acosd(0.75);
+phip=acosd(0.9);
+phic=90-asind(7/100); //given loss is 7% of KVA output
+KVAc=VI1*(((sind(phi1)*cosd(phip))-(cosd(phi1)*sind(phip)))/((sind(phic)*cosd(phip))+(cosd(phic)*sind(phip))))*1e-3;
+MVAc=KVAc*1e-3;
+printf("\n The capacity of the synchronous condenser= %1.2f MVA",MVAc)
|