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.10/Ex11_10.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.10/Ex11_10.sce')
-rw-r--r-- | 3681/CH11/EX11.10/Ex11_10.sce | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/3681/CH11/EX11.10/Ex11_10.sce b/3681/CH11/EX11.10/Ex11_10.sce new file mode 100644 index 000000000..47b50e1b3 --- /dev/null +++ b/3681/CH11/EX11.10/Ex11_10.sce @@ -0,0 +1,31 @@ +// Calculating the size of armature wire and the a.c. resistance of each pahase
+clc;
+disp('Example 11.10, Page No. = 11.34')
+// Given Data
+// 3 phase star connected synchronous generator
+p = 8;// Number of poles
+f = 50;// Frequency (in Hz)
+ys = 0.3;// Pole pitch (in meter)
+Iz = 100;// Line current (in Ampere)
+L = 0.3;// Gross axial length (in meter)
+Spp =3;// Slots per pole per phase
+Cs = 6;// Conductors per slot
+Kc_av = 1.3;// Average eddy current loss factor
+// Calculation of the suitable number of slots and conductors per slot
+D = ys*p/%pi;// Armature diameter (in meter)
+ns = 2*f/p;// Synchronous speed (in r.p.s.)
+Va = %pi*D*ns;// Peripheral speed (in meter per second)
+S = Spp*3*p;// Total number of slots
+Z = S*Cs;// Total number of conductors
+Tph = Z/6;// Turns per phase
+ac = Iz*Z/(%pi*D);// (in Ampere per meter)
+J = (43000/ac)+(Va/16);// Current density (in Ampere per mm square)
+as = 100/J;// Area of armature conductor
+disp(as,'(a) Area of armature conductor (mm square)=');
+L_active = 2*L;// Active length of each turn (in meter)
+Lmt = 2*L_active;// Since Total length of a turn is twice the active length (in meter)
+resistivity = 0.021;// Resistivity of copper at 75 degree celsius (in ohm per meter)
+r_dc = resistivity*Tph*Lmt/as;// D.C. resistance of each phase at 75 degree celsius (in ohm)
+r_ac = Kc_av*r_dc;// A.C. resistance of each phase
+disp(r_ac,'(b) A.C. resistance of each phase (ohm)=');
+//in book answers are 23.8 mm square and 0.099 ohm respectively. The answers vary due to round off error
|