summaryrefslogtreecommitdiff
path: root/3472/CH39/EX39.15/Example39_15.sce
blob: 3189856f4c682a2edb332da2896e6857a369fbe3 (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
29
30
31
32
// A Texbook on POWER SYSTEM ENGINEERING
// A.Chakrabarti, M.L.Soni, P.V.Gupta, U.S.Bhatnagar
// DHANPAT RAI & Co.
// SECOND EDITION 

// PART IV : UTILIZATION AND TRACTION
// CHAPTER 1: INDUSTRIAL APPLICATIONS OF ELECTRIC MOTORS

// EXAMPLE : 1.15 :
// Page number 690
clear ; clc ; close ; // Clear the work space and console

// Given data
hp = 15.0         // Power of DC shunt motor(hp)
V = 400.0         // Voltage of DC shunt motor(V)
N_reduce = 20.0   // Speed is to be reduced by(%)
I_f = 3.0         // Field current(A)
R_a = 0.5         // Armature resistance(ohm)
n = 0.85          // Efficiency of motor

// Calculations
motor_input = hp*746/n          // Motor input(W)
I = motor_input/V               // Motor current(A)
I_a1 = I-I_f                    // Armature current(A)
I_a2 = I_a1                     // Armature current at new speed(A)
E_b1 = V-I_a1*R_a               // Back emf(V)
E_b2 = E_b1*(100-N_reduce)/100  // Back emf at new speed(V)
r = ((V-E_b2)/I_a2)-R_a         // Ohmic value of resistor connected in the armature circuit(ohm)

// Results
disp("PART IV - EXAMPLE : 1.15 : SOLUTION :-")
printf("\nOhmic value of resistor connected in the armature circuit, r = %.2f ohm", r)