blob: 7db1313f8eaed4469c923f882640bcdd37c9d616 (
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
50
51
52
53
54
55
56
57
58
59
60
61
|
//In solution they have taken different value of speed at rated torque from what is given in question that is why answer is varying
clc;
P=4;
Pm=10000; //OUTPUT POWER
f=50; //FREQUENCY
N=1440; //SPEED AT WHICH RATED TORQUE IS OBTAINED
Ns=(120*f)/P; //SYNCHRONOUS SPEED
s=(Ns-N)/Ns;
//Torque is directly proportional to the slip
//As per given conditions
s1=(1/2)*s;
Nr=Ns*(1-s1);
Pm1=(1/2)*(((Pm*60)/(2*%pi*N)))*((2*%pi*Nr)/(60));
mprintf('The motor speed is %f rpm \n The power output is %f W',Nr,Pm1);
|