blob: 532a31e96119162d909ec989630cc059aa9a342f (
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
|
//Chapter 4: Selection of Motor Power Rating
//Example 4
clc;
//Variable Initialization
Cr=60 //Heating time constant in minutes
Cs=90 //Cooling time constant in minutes
P=20 //Full load in kW
//Solution
//Part-i
a=0
tr=10 //Time to deliver in minutes
x=exp(-tr/Cr)
K=sqrt(1/(1-x))
P1=K*P //Permitted load
//Part-ii
a=0
tr=10 //Intermittent load period allowed in minutes
ts=10 //Shutdown time period in minutes
x=exp(-(tr/Cr+ts/Cs))
y=exp(-tr/Cr)
K=sqrt((1-x)/(1-y))
P2=K*P //Permitted load
mprintf("\ni)Required permitted load:%d kW",P1)
mprintf("\nii)Required permitted load:%.2f kW",P2)
|