From b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b Mon Sep 17 00:00:00 2001 From: priyanka Date: Wed, 24 Jun 2015 15:03:17 +0530 Subject: initial commit / add all books --- 1373/CH5/EX5.24/Chapter5_Example24.sce | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100755 1373/CH5/EX5.24/Chapter5_Example24.sce (limited to '1373/CH5/EX5.24/Chapter5_Example24.sce') diff --git a/1373/CH5/EX5.24/Chapter5_Example24.sce b/1373/CH5/EX5.24/Chapter5_Example24.sce new file mode 100755 index 000000000..666b65519 --- /dev/null +++ b/1373/CH5/EX5.24/Chapter5_Example24.sce @@ -0,0 +1,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============================== -- cgit