summaryrefslogtreecommitdiff
path: root/3811/CH7/EX7.9/Ex7_9.sce
blob: 52652c7e327850ca83b9e958bf933b42dfd6a6d5 (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
//Book Name: Fundamentals of electrical drives by Mohamad A. El- Sharkawi
//chapter 7
//example 7.9
//edition 1
//publisher and place:Nelson Engineering
clc;
clear;
V=480;//terminal voltage in volt
p=6;//number of poles
f=60;//frequency in hertz
Xl=3;//inductive reactance in ohm
Rs=.2;//stator resistance in ohm
X2=2;//rotor reactance in ohm
R2=0.1;//resistance reffered to the stator in ohm
Xm=120;//magnetizing reactance in the linear region in ohm
Xm1=42;//magnetizing reactance in the saturation region in ohm
Td=100;//constant load torque in Nm
n=900;//speed of the motor in rpm
ns=(120*f)/p;//synchronous speed of the machine in rpm
s=(ns-n)/ns;//slip of the machine
//If the machine is in the linear region
rps=ns/60;
omegas=(2*%pi*rps);
Is=sqrt(((Td*s*omegas)*((R2/s)^2+(X2+Xm)^2))/(3*Xm^2*R2));
costheta=0.7;//assumed power factor value
I1rated=(Td*omegas)/(sqrt(3)*V*costheta);
mprintf("\nThe input current if the machine is in the linear region is %f A",I1rated)
//if the machine is in saturation region
Is1=sqrt(((Td*s*omegas)*((R2/s)^2+(X2+Xm1)^2))/(3*Xm^2*R2));
mprintf("\nThe input current if the machine is in the saturation region is %f A",Is1)