diff options
author | prashantsinalkar | 2017-10-10 12:27:19 +0530 |
---|---|---|
committer | prashantsinalkar | 2017-10-10 12:27:19 +0530 |
commit | 7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 (patch) | |
tree | dbb9e3ddb5fc829e7c5c7e6be99b2c4ba356132c /3681/CH5/EX5.17/Ex5_17.sce | |
parent | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (diff) | |
download | Scilab-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.17/Ex5_17.sce')
-rw-r--r-- | 3681/CH5/EX5.17/Ex5_17.sce | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/3681/CH5/EX5.17/Ex5_17.sce b/3681/CH5/EX5.17/Ex5_17.sce new file mode 100644 index 000000000..e1421e0e1 --- /dev/null +++ b/3681/CH5/EX5.17/Ex5_17.sce @@ -0,0 +1,27 @@ +// Calculating the instantaneous radial force and instantaneous axial force on the h.v. winding under short circuit conditions
+clc;
+disp('Example 5.17, Page No. = 5.98')
+// Given Data
+// 7500/435 V, single phase core type transformer
+Q = 575;// kVA rating
+f = 50;// Frequency (in Hz)
+u0 = 4*%pi*10^(-7);
+Z_pu = 0.036;// Per unit impedance
+T = 190;// h.v winding turns
+Lmt = 1.25;// Length of mean turn (in meter)
+Lc = 0.35;// Height of coils (in meter)
+m = 1.8;// Doubling effect multiplier
+a = 0.015;// Width of duct (in meter)
+bp = 0.027;// Width of h.v. winding (in meter)
+bs = 0.023;// Width of l.v. winding (in meter)
+k = 0.05;// Since the h.v. winding is 5% shorter than the l.v. winding at one end
+// Calculation of the instantaneous radial force
+I_fl = Q*1000/7500;// Rms value of full load current (in Ampere)
+i = m*2^(1/2)*(1/Z_pu)*I_fl;// Instantaneous peak value of short circuit current (in Ampere)
+Fr = u0/2*(i*T)^(2)*Lmt/Lc;// Instantaneous radial force on the h.v. coil (in N)
+disp(Fr,'(a) Instantaneous radial force on the h.v. winding (N)=');//in book answer is 2380000 (N). The answers vary due to round off error
+// Calculation of the instantaneous axial force
+Fa = u0/2*k*(i*T)^(2)*Lmt/(2*(a+bp+bs));// Total instantaneous radial force on the h.v. coil (in N)
+disp(Fa,'(b) Instantaneous axial force on the h.v. winding (N)=');
+//in book answer is 3200000 (N). The provided in the textbook is wrong
+disp('This shows that there is a very large axial force, even though one of the winding is only 5% shorter than the other at one end')
|