blob: 014616dfcb633269d47e28a3c295bafa0c7687a4 (
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-6, Illustration 2, Page 309
//Title: Refrigeration cycles
//=============================================================================
clc
clear
//INPUT DATA
TL=268;//Low temperature in K
TH=293;//High temperature in K
t=24;//time in hrs
C=2100;//Capacity of refrigerator in kJ/s
Tw=10;//Water temperature in oC
L=335;//Latent heat of ice in kJ/kg
//CALCULATIONS
COP=TL/(TH-TL);//Co-efficient of performance
Pmin=C/COP;//Minimum power required in kW
Qr=(4.187*(Tw-0))+L;//Heat removed from water in kJ/kg
m=C/Qr;//mass of ice formed in kg/s
W=(m*t*3600)/1000;//Weight of ice formed in tons
//OUTPUT
mprintf('Minimum power required is %3.2f kW \n Weight of ice formed in 24 hours is %3.2f tons',Pmin,W)
//==============================END OF PROGRAM=================================
|