summaryrefslogtreecommitdiff
path: root/3802/CH9/EX9.8/Ex9_8.sce
blob: b5022b47f4b980bdab5c1bcf646fd5c3db9733a7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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)