diff options
author | priyanka | 2015-06-24 15:03:17 +0530 |
---|---|---|
committer | priyanka | 2015-06-24 15:03:17 +0530 |
commit | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch) | |
tree | ab291cffc65280e58ac82470ba63fbcca7805165 /503/CH3/EX3.10/ch3_10.sci | |
download | Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2 Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip |
initial commit / add all books
Diffstat (limited to '503/CH3/EX3.10/ch3_10.sci')
-rwxr-xr-x | 503/CH3/EX3.10/ch3_10.sci | 22 |
1 files changed, 22 insertions, 0 deletions
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 |