blob: 4263d10ee190960a785882adfc6a5a87217432b5 (
plain)
1
2
3
4
5
6
7
|
//Faults and Protection//
//Example 16.3//
P=100;//input power in KVA//
Xt=0.04;//limiting ac reactance value//
Fov=2;//current ovarload factor//
Pc=Xt*P*Fov;//choke power of the converter in KVA//
printf('choke power of the converter=Pc=%fKVA',Pc);
|