blob: 19256dcc1b15eb247703cdcd788fb2e62748bda5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
//Example No. 4.12
clc;
clear;
close;
format('v',8);
//Given Data :
T=60;//min
t=20;//min
ShortTimeRating=300;//W
Eff=80/100;//Efficiency
//Let full load rating is P KW and Losses=Pc
//CuLoss=(P/(P*Eff))^2 & alfa=Pc/CuLoss
alfa=(Eff)^2;//unitless
S=sqrt(((1+alfa)/(1-exp(-t/T))-alfa));
ContinuousRating_fl=ShortTimeRating/S;//KW
disp(ContinuousRating_fl,"Continuous rating of motor in W : ");
|