diff options
Diffstat (limited to '1319/CH6/EX6.6/6_6.sce')
-rw-r--r-- | 1319/CH6/EX6.6/6_6.sce | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/1319/CH6/EX6.6/6_6.sce b/1319/CH6/EX6.6/6_6.sce new file mode 100644 index 000000000..cfbc66093 --- /dev/null +++ b/1319/CH6/EX6.6/6_6.sce @@ -0,0 +1,21 @@ +//Useful Flux per pole on no load shunt motor
+
+clc;
+clear;
+V=250;
+Z=2*110;// One turn is two conductors
+Ia=13.3;
+N=908;
+Ra=0.2;
+A=2; //Wave Winding
+P=6;
+
+Eb=V-(Ia*Ra);// Back EMF
+
+phi=Eb*60*A/(N*Z*P);
+
+printf('The useful flux per pole on no load of a 250V, 6 pole shunt motor = %g mWb \n',phi*1000)
+
+
+
+
|