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 --- 1752/CH4/EX4.6/exa_4_6.sce | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100755 1752/CH4/EX4.6/exa_4_6.sce (limited to '1752/CH4/EX4.6/exa_4_6.sce') diff --git a/1752/CH4/EX4.6/exa_4_6.sce b/1752/CH4/EX4.6/exa_4_6.sce new file mode 100755 index 000000000..aabca8fc0 --- /dev/null +++ b/1752/CH4/EX4.6/exa_4_6.sce @@ -0,0 +1,29 @@ +//Exa 4.6 +clc; +clear; +close; +//given data +k=385;// in W/mK +h=100;// in W/m^2K +delta =2*10^-3;// thickness of plate in meter +A=25*25;// area of plate in square meter +rho=8800;// kg/m^3 +C=400;// J/kg-K +// l_s= V/A= L*B*delta/(2*L*B) = delta/2 +l_s= delta/2;// in meter +Bi= h*l_s/k; +// since Bi < 0.1 , hence lumped heat capacity analysis can be applied + +// Part(i) +// toh= rho*V*C/(h*A) = rho*C*l_s/h +toh= rho*C*l_s/h;// in second +disp(toh,"Time constant in seconds"); + +// Part(ii) +t_i=400;// in degree C +t=40;// in degree C +t_infinite=25;// in degree C +// (t-t_infinite)/(t_i-t_infinite) = %e^(-h*A*toh /(rho*V*C)) = %e^(-h*toh/(rho*l_s*C)) +toh= -log((t-t_infinite)/(t_i-t_infinite))*rho*C*l_s/h;// in sec +disp(toh,"The time required for the plate to reach the temperature of 40 degree C in seconds"); + -- cgit