summaryrefslogtreecommitdiff
path: root/3878/CH1/EX1.8/Ex1_8.sce
blob: d7c640331b3ebd12bdcc7bc0892ea6d5cfe20c54 (plain)
1
2
3
4
5
6
7
8
9
10
11
clear
// Variable declartion
t=225// The wall thickness in mm
k=0.60// Thermal conductivity in W/(m K)
L=10// Length in m
h=3// Height in m
delT=25// The temperature difference between the inside and outside faces in K

// Calculation
Q_t=(L*h*k*delT*1000)/(t)// The rate of heat conduction in W
printf("\n The rate of heat conduction,Q_t= %0.0f ",Q_t)