blob: 10b027ff96f825c871d4c0dd6107ff9f3bb63267 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
clc
//Variable Initialisation
ton=15
toff=10
Ea=220//Input Voltage to armature in volts
Km=0.4//Voltage constant
N=1400//Rated Speed of Motor in rpm
Ra=2//Armature resistance in ohm
//Solution
d=ton/(ton+toff)
E0=d*Ea
W=2*%pi*N/60
Ia=(E0-(Km*W))/Ra
printf('\n\n The Average load Current=%0.1f Amp\n\n',Ia)
|