blob: 40f868c89a1bc4c0cf314e24b255b352798c3a1f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
//EMF and copper losses of a Shunt Motor
clc;
clear;
V=250;
I=200;
Ra=0.02; // Armature Resistance
Rf=50; // Field Resistance
Pil=950; // Iron and frictional losses
Ish=V/Rf; // Field Current
Ia=Ish+I; // Armature Current
Pac=(Ia^2)*Ra; // Armature copper loss
Pfc=(Ish^2)*Rf;// Field copper loss
Pc=Pac+Pfc;
E=V+(Ia*Ra);
Prime=(V*I)+Pil+Pc;// Ouput of prime mover is the input to the generator
eff=(V*I*100)/Prime;
printf('i) The EMF generated = %g V \n',E)
printf('ii) Total Copper Loss = %g watts \n',Pc)
printf('iii) Output of the prime mover is %g watts and the efficiency is %g percent \n',Prime,eff)
|