summaryrefslogtreecommitdiff
path: root/3681/CH5/EX5.14/Ex5_14.sce
diff options
context:
space:
mode:
authorprashantsinalkar2017-10-10 12:27:19 +0530
committerprashantsinalkar2017-10-10 12:27:19 +0530
commit7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 (patch)
treedbb9e3ddb5fc829e7c5c7e6be99b2c4ba356132c /3681/CH5/EX5.14/Ex5_14.sce
parentb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (diff)
downloadScilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.gz
Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.bz2
Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.zip
initial commit / add all books
Diffstat (limited to '3681/CH5/EX5.14/Ex5_14.sce')
-rw-r--r--3681/CH5/EX5.14/Ex5_14.sce20
1 files changed, 20 insertions, 0 deletions
diff --git a/3681/CH5/EX5.14/Ex5_14.sce b/3681/CH5/EX5.14/Ex5_14.sce
new file mode 100644
index 000000000..a5e47dcf7
--- /dev/null
+++ b/3681/CH5/EX5.14/Ex5_14.sce
@@ -0,0 +1,20 @@
+// Calculating the per unit leakage reactance
+clc;
+disp('Example 5.14, Page No. = 5.90')
+// Given Data
+// 2000/400 V, single phase shell type transformer
+Q = 100;// kVA rating
+f = 50;// Frequency (in Hz)
+u0 = 4*%pi*10^(-7);
+Tp = 200;// h.v winding turns
+Lmt = 1.5;// Length of mean turn (in meter)
+W = 0.12;// Width of winding (in meter)
+a = 0.016;// Width of duct between h.v and l.v. windings (in meter)
+bp = 0.04;// Width of h.v. winding (in meter)
+bs = 0.036;// Width of l.v. winding (in meter)
+// Calculation of the per unit leakage reactance
+Xp = %pi*f*u0*Tp*Tp/2*Lmt/W*(a+(bp+bs)/6);// Leakage reactance referred to the primary side (ohm)
+I_hv = Q*10^(3)/2000;// H.V. winding current at full load (in ampere)
+Xp_pu = Xp*I_hv/2000;// Per unit leakage reactance
+disp(Xp_pu,'Per unit leakage reactance=');
+//in book answer is 0.0353. The answers vary due to round off error