blob: e0680948da6f042ec208cb095f57e8ed6e0549b8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
//To find exciting current and expess impedence in pu in both HV and LV sides
clc;
V_BHV=2000;
I_BHV=10;
Z_BHV=V_BHV/I_BHV;
V_BLV=200;
I_BLV=100;
Z_BLV=V_BLV/I_BLV;
I_o=3;
a=V_BHV/V_BLV;
I_oLV=I_o/100; disp(I_oLV,'I_o(LV)pu=');
I_oHV=I_o/(a*10); disp(I_oHV,'I_o(HV)pu=');
Z=complex(8.2,10.2);
ZHV=Z/Z_BHV; disp(ZHV,'Z(HV)pu=');
z=Z/a^2;
ZLV=z/Z_BLV; disp(ZLV,'Z(LV)pu=');
|