diff options
Diffstat (limited to '1418/CH26/EX26.16/EX26_16.sce')
-rw-r--r-- | 1418/CH26/EX26.16/EX26_16.sce | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/1418/CH26/EX26.16/EX26_16.sce b/1418/CH26/EX26.16/EX26_16.sce new file mode 100644 index 000000000..a6a2a434a --- /dev/null +++ b/1418/CH26/EX26.16/EX26_16.sce @@ -0,0 +1,21 @@ +//EXAMPLE 26.16
+//4-POLE DC GENERATOR
+
+clc;
+funcprot(0);
+
+//Variable Initialisation
+N=750;.................//Speed of the generator in rpm
+P=4;....................//Number of poles
+E=240;..................//Terminal voltage in Volts
+Z=792;.................//Total number of conductors
+Phi=0.0145;..........//Air gap flux per pole in Webers
+Aw=2;...............//Number of parallel paths in wave wound generator
+
+Phi1=E*60*Aw/(P*N*Z);
+y=round(Phi1*10000)/10000;
+lc=Phi/Phi1;...................//Leakage Coefficient
+y1=round(lc*10)/10;
+disp(y1,"Leakage coefficient:");
+
+
|