diff options
Diffstat (limited to '3878/CH1/EX1.8/Ex1_8.sce')
-rw-r--r-- | 3878/CH1/EX1.8/Ex1_8.sce | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/3878/CH1/EX1.8/Ex1_8.sce b/3878/CH1/EX1.8/Ex1_8.sce new file mode 100644 index 000000000..d7c640331 --- /dev/null +++ b/3878/CH1/EX1.8/Ex1_8.sce @@ -0,0 +1,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) |