blob: a869e26ddde90e826e5e2726e67e85ac69ad25fa (
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
|
//equation
clc;
//Test/Tefl=1.5;
d=1.5;
//Tem/Tefl=2.5;
e=2.5;
//for part a
//d=Test/Tefl;
//equation of torque gives following equation
Q=[1 -3.33 1];
R=roots(Q);
smT=R(2);
mprintf('The slip at maximun torque is %f \n',smT)
//for part b
//equation of torque gives
Q=[1 -1.665 0.111];
R=roots(Q);
sfl=R(2);
mprintf('The slip at full load is %f \n',sfl)
//for part c
//I2st=c*Isfl As per torque equation
c=sqrt((d)*(1/sfl));
mprintf('The rotor current = %f times full load current \n',c)
|