blob: d8556fde4fb87102da07ef5ef945f48b6f6556c3 (
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
|
clc;
fs=2; //slip frequency
V=400;
f=50;
V2=340; //New voltage
f2=40; //New frequency
smT=0.1; //slip at which it develops maximum torque
//maximun torque's slip is directly proportional to (1/f)
smT1=(f/f2)*smT;
//Maximun Torque is directly proportional to ((V*V)/(f*f))
s=fs/f;
//Ted(Developed Torque) is proportional to (Tem/smT)*(s/smT)
//Ted1(400V,50Hz)proportional a
a=((V*V)/(f*f))*(s/smT);
//equating the developed torque equation
s1=a*(((f2)*(f2))/((V2)*(V2)))*(smT1);
fs1=s1*f2;
mprintf('The new slip frequency is %f Hz',fs1);
|