summaryrefslogtreecommitdiff
path: root/551/CH14/EX14.2/2.sce
blob: a6017eb99712951122ca8f5699e85b92ac40dd85 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
clc
T1=308; //K
T2=258; //K
capacity=12; //tonne

COP=T2/(T1-T2);
disp("(i) Co-efficient of performance =")
disp(COP)


disp("(ii) Heat rejected from the system per hour")
W=capacity*14000/5.16;
Q=capacity*14000+W;
disp("Q=")
disp(Q)
disp("kJ/h")


disp("(iii) Power required =")
P=W/60/60;
disp(P)
disp("kW")