summaryrefslogtreecommitdiff
path: root/3472/CH39/EX39.13/Example39_13.sce
blob: 0dd87cff1635b7db7919fe8cca4fcbeee360e6c2 (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
// 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.13 :
// Page number 689
clear ; clc ; close ; // Clear the work space and console

// Given data
V = 250.0      // Voltage of DC shunt motor(V)
N_1 = 400.0    // No load speed(rpm)
R_a = 0.5      // Armature resistance(ohm)
N_2 = 200.0    // Speed with additional resistance(rpm)
I_a = 20.0     // Armature current(A)

// Calculations
k_phi = (V-I_a*R_a)/N_1    // kΦ
R = (V-k_phi*N_2)/I_a      // Resistance(ohm)
R_add = R-R_a              // Additional resistance to be placed in armature circuit(ohm)

// Results
disp("PART IV - EXAMPLE : 1.13 : SOLUTION :-")
printf("\nResistance to be placed in the armature circuit = %.f ohm\n", R_add)
printf("\nNOTE: ERROR: The given data doesnt match with example 1.7 as mentioned in problem statement")