blob: cfbc66093e2be063c97b82958c1e8eca8aaa25ec (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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)
|