blob: 666b65519b9b21e2a68648562c511aa35195eccb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
//Chapter-5, Example 5.24, Page 218
//=============================================================================
clc
clear
//INPUT DATA
Tc=55;//Tempaerature of concrete hyway in degree C
Tl=35;//Temperature lowered in degree C
Tf=45;//Final temperature in degree C
x=0.05;//Depth in m
k=1.279;//Thermal conductivity in W/m.K
a=(1.77*10^-3);//Thermal diffusivity in m^2/h
//CALCULATIONS
t=1.4;//Time taken from page no. 219 in h
q=2*(k*(Tl-Tf))/(sqrt(3*a*t));//Instantaneous heat removal rate in W/m^2
//OUTPUT
mprintf('Instantaneous heat removal rate is %3.1f W/m^2',q)
//=================================END OF PROGRAM==============================
|