blob: 04c1b63ded2115e11da247cc4108a8d6d9221c04 (
plain)
1
2
3
4
5
6
7
|
clc;
p=6; // number of poles in induction motor
f=50; // frequency of motor
d=1.2; // stator bore diameter
// in one revolution peripheral distance of Pi*diameter is transversed
v=(2*f*%pi*d)/p;
printf('Linear velocity of travelling mmf wave is %f m/sec',v);
|