blob: a77a96176654fac12ef42a70df5b805b9c393b8e (
plain)
1
2
3
4
5
6
7
8
9
|
// To determine the short circuit capacity of each station
clear
clc;
X=1200*100/800;// percent reactance of other generating station
Xc=.5*1200/(11*11);
Sc=1200*100/86.59;// short circuit MVA of the bus
Xf=119.84;// equivalent fault impedence between F and neutral bus
MVA=1200*100/Xf;
mprintf("short circuit capacity of each station=%.0f MVA\n",MVA);
|