summaryrefslogtreecommitdiff
path: root/3784/CH1/EX1.22/Ex1_22.sce
blob: 217ed861e8fd3dc9e51091daba9682b77cb6f414 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
clc
// Variable Initialization 
Vm=240//Supply Voltage in Volts
Ra=0.9//Combined Field and Armature circuit resistance in Ohm
N=900 //Motor speed in Rpm
V=220//Rated voltage of motor in Volts
a=45//firing angle in Degree
Kaf=0.035 //Constant in N-m/A^2

//Solution
//For semi-converter controlled Dc Drive
Va=(Vm*1.414)*(1+cosd(a))*(1/%pi)//Average voltage in Volts
W=(2*%pi*N)/60 //angular speed in Rad/sec
Ia=Va/(Ra+W*Kaf)//Current in Amp
T=Kaf*(Ia)^2//Torque in N-m

//Results
printf('\n\n The motor Current =%0.1f Amp \n\n',Ia)
printf('\n\n The motor Torque =%0.1f N-m \n\n',T)