summaryrefslogtreecommitdiff
path: root/3890/CH6/EX6.10/Ex6_10.sce
blob: 9a4ce1cf453e182df5cefb99d30278c5fe1ee827 (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
//Electric machines and power systems by Syed A Nasar
//Publisher:Tata McGraw Hill
//Year: 2002 ; Edition - 7 
//Example 6.10
//Scilab Version : 6.0.0    ; OS : Windows

clc;
clear;

v=230;          //supply voltage in v
I1=80;          //line current  in A
N1=750;      //speed at I1 in rpm
n=15;       //number of turns per pole
Rf=0.11;     //field resistance in ohm
Ra=0.14;      //armature resistance in ohms
I2=20;       //line current in A

E1=v-I1*(Rf+Ra);
E2=v-I2*(Rf+Ra);
At1=n*I1;
At2=n*I2;
phi1=4.3*10^3;phi2=1.4*10^3;     //from Appendix 3 in wb
N2=N1*E2*phi1/(E1*phi2);

printf('The motor speed at I2 is %f rpm',N2)