blob: 6c93c3014c8a38f5c79d25556ab72e3e054178e7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
//Chapter-11, Example 11.4, Page 485
//=============================================================================
clc
clear
//INPUT DATA
Ts=10;//Surface temperature in degree C
p1=10;//Pressure of water in atm
//CALCULATIONS
hp=(5.56*Ts^0.4);//Heat transfer coefficient in kW/m^2.K
hp1=(5.56*(2*Ts)^3*p1^0.4);//Heat transfer coefficient in kW/m^2.K
hp2=(5.56*Ts^3*(2*p1)^0.4);//Heat transfer coefficient in kW/m^2.K
x1=(hp1/hp)/1000;//Ratio of heat transfer coefficients
x2=(hp2/hp)*100;//Ratio of heat transfer coefficients
//OUTPUT
mprintf('Heat transfer coefficient becomes%3.0f times the original value in the first case \nHeat transfer coefficient is increased only by 32 percent in the second case',x1)
//=================================END OF PROGRAM==============================
|