From b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b Mon Sep 17 00:00:00 2001 From: priyanka Date: Wed, 24 Jun 2015 15:03:17 +0530 Subject: initial commit / add all books --- 503/CH3/EX3.10/ch3_10.sci | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100755 503/CH3/EX3.10/ch3_10.sci (limited to '503/CH3/EX3.10/ch3_10.sci') diff --git a/503/CH3/EX3.10/ch3_10.sci b/503/CH3/EX3.10/ch3_10.sci new file mode 100755 index 000000000..e0680948d --- /dev/null +++ b/503/CH3/EX3.10/ch3_10.sci @@ -0,0 +1,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='); \ No newline at end of file -- cgit