summaryrefslogtreecommitdiff
path: root/2276/CH3/EX3.1/chapter3_ex1.sce
blob: 83f78d4e9cb924de710af85e734df9063b577001 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
clc
clear

//input
n1=420;//number of conductors in armature of a d.c. machine
phi=0.024;//flux produced by each pole in weber
e=250;//desired e.m.f in volts
n2=4;//number of poles of the d.c. machine

//calculations
N=n1/2;//number of conductors per path and there are two parallel paths
//e1= e.m.f induced per conductor=(4*0.024*w)/(2*%pi) where w is the required angular velocity in rad/s
w=e/((n1*(48*10^-3))/(2*%pi));//required angular velocity in rad/s

//output
mprintf('the armature of hte machine must have an angular velocity of %3.0f rad/s',w)