blob: 98e1856d5cdf1397eaa1ce9e58d73e2fa0ebaeb6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
//Chapter 4: Selection of Motor Power Rating
//Example 5
clc;
//Variable Initialization
P=100 //Half hour rating of the motor
Cr=80 //Heating time constant in minutes
n=0.7 //Maximum efficiency at full load
//Solution
Pcu=n**2 //Coppper loss
a=Pcu
K=sqrt((1+a)/(1-%e**(-30/Cr))-a)
Pco=P/K
mprintf("Therefore the continuous rating is:%.2f kW",Pco)
|