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/CH11/EX11.11/Ex11_11.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/CH11/EX11.11/Ex11_11.sce')
-rw-r--r-- | 3681/CH11/EX11.11/Ex11_11.sce | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/3681/CH11/EX11.11/Ex11_11.sce b/3681/CH11/EX11.11/Ex11_11.sce new file mode 100644 index 000000000..58deef421 --- /dev/null +++ b/3681/CH11/EX11.11/Ex11_11.sce @@ -0,0 +1,26 @@ +// Calculating the length of air gap
+clc;
+disp('Example 11.11, Page No. = 11.35')
+// Given Data
+// 3 phase silient pole alternator
+kVA = 500;// kVA rating
+V = 3.3;// Voltage rating (in kV)
+f = 50;// Frequency (in Hz)
+rpm = 600;// R.p.m.
+Tph = 180;// Turns per phase
+Bav = 0.54;// Average flux density (in Wb per meter square)
+SCR = 1.2;// Short circuit ratio
+Kw = 0.955;// Winding factor
+Kg = 1.15;// Gap constraction factor
+Kf = 0.65;// Since field form factor is equal to the ratio of pole arc to pole pitch
+// Calculation of the length of air gap
+ns = rpm/60;// Synchronous speed (in r.p.s.)
+p = 2*f/ns;// Number of poles
+Iph = kVA*1000/(3^(1/2)*V*1000);// Armature diameter (in meter)
+ATa = 2.7*Iph*Tph*Kw/p;// Armature mmf per pole (in A)
+AT_f0 = SCR*ATa;// No load field mmf per pole
+Bg = Bav/Kf;// Maximum flux density in air gap (in Wb per meter square)
+lg = 0.8*AT_f0/(800000*Bg*Kg);// Length of air gap
+// Since mmf required for gap is 80% of no load field mmf
+disp(lg*1000,'Length of air gap (mm)=');
+//in book answer is 5.2 mm. The answers vary due to round off error
|