College of Electronics Engineering
Department of Systems and Control Engineering
DC Machines Lab. II YEAR I SEM
Instructor: Mr. Salam Asmer
(2) POWER FLOW AND LOSSES IN DC MACHINES
Aim:
To obtain the Output power and efficiency of a DC shunt motor. Understand
the types of losses in a machine, and the power flow diagram.
Name Plate Details:
Power = 50 hp
Armature voltage = 250 volts
Armature current = 170 amp
Speed = 1200 rpm
Field voltage = 250 volts
Field current= 5.0 amps
Field Winding= shunt
Apparatus:
Software: MATLAB.
Theory: refer to references.
P545 Example 8- 8. A 50-hp, 250-V, 1200 rpm shunt dc motor has a rated
armature current of 170 A and a rated field current of 5 A. When its rotor is
blocked, an armature voltage of 10.2 V (exclusive of brushes) produces 170
A of current flow, and a field voltage of 250 V produces a field current flow
of 5 A. The brush voltage drop is assumed to be 2 V. At no load with the
terminal voltage equal to 240 V, the armature current is equal to 13.2 A, the
field current is 4.8 A, and the motor's speed is 1150 rpm.
(a) How much power is output from this motor at rated conditions?
(b) What is the motor's efficiency?
//This calculation can be performed by using a MATLAB script file
// to calculate_ eff_as motor.
// 50hp, 250V, 1200 rpm, shunt DC motor
7 Nov 2021 Page 1
// Ia rated= 170A, If rated=5A,
// rotor blocked Va=10.2V, Ia=170A, Vf=250V, If=5A, Vbd=2V
//no load test Va=240V, Ia=13.2A, If=4.8A, Nnoload= 1150 rpm.
clc ;
Va_lockedrotor=10.2;
Ia_lockedrotor=170;
Vf_lockedrotor=250;
If_lockedrotor=5;
Ra=Va_lockedrotor/Ia_lockedrotor;
Rf=Vf_lockedrotor/If_lockedrotor;
Pa_cu=Ia_lockedrotor^2*Ra;
Pf_cu=If_lockedrotor^2*Rf;
Pbd=2*Ia_lockedrotor;
Va_noload= 240;
Ia_noload= 13.2;
If_noload= 4.8;
Nnoload= 1150;
Ptot_noload=Va_noload*Ia_noload;
Pin= 250*175;
Pout=Pin-Pa_cu-Pf_cu-Pbd-Ptot_noload;
Eff_motor =(Pout / Pin) *100
Report:
1- What types of losses are present in a dc machine?
2- Draw the power flow diagram for dc motor
3- Draw the power flow diagram for dc generator
4- How do you calculate eddy current loss?
5- What is the formula of hysteresis loss?
7 Nov 2021 Page 2