summaryrefslogtreecommitdiff
path: root/1445/CH8/EX8.31/ch8_ex_31.sce
blob: 0fc0fecfbc7cf65adfc79da31dd199fcc875012d (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
//CHAPTER 8- DIRECT CURRENT MACHINES
//Example 31

disp("CHAPTER 8");
disp("EXAMPLE 31");

//VARIABLE INITIALIZATION
r_a=0.1;                    //combined resistance of armature & field resistance in Ohms
v_t=230;                    //in Volts
I_a1=100;                   //in Amperes
N1=1000;                    //in rpm
I_a2=200;                   //in Amperes
ratio=1.2;                  //ratio of Φ2:Φ1=1.2

//SOLUTION
E_b1=v_t-(I_a1*r_a);        //numerator of LHS according to the book
E_b2=v_t-(I_a2*r_a);        //denominator of LHS according to the book
N2=(E_b2/E_b1)*(1/ratio)*N1;
N2=round(N2);               //to round off the value
disp(sprintf("The new speed of the armature is %d rpm",N2));

//END