From 7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 Mon Sep 17 00:00:00 2001 From: prashantsinalkar Date: Tue, 10 Oct 2017 12:27:19 +0530 Subject: initial commit / add all books --- 965/CH7/EX7.53/53.sci | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 965/CH7/EX7.53/53.sci (limited to '965/CH7/EX7.53/53.sci') diff --git a/965/CH7/EX7.53/53.sci b/965/CH7/EX7.53/53.sci new file mode 100644 index 000000000..96a593cf6 --- /dev/null +++ b/965/CH7/EX7.53/53.sci @@ -0,0 +1,22 @@ +clc; +clear all; +disp("temperature of mixed sand") +m=0.08/3600;// m^3/s sand feeding rate +d=30/1000;// pipe diameter +L=6;//m legth of pipe +ts=100;// degree C inside temperature of pipe +rho=1500;// kg/m^3 +k=0.3;// W/m.C +cp=840;// J/kg.K +ta=20;//degree C temperature of sand entering +disp("Q=h*A*(ts-(ti+to)/2)=m*cp*(to-ti)") +disp("h*A/2*((ts-ti)+(ts-to))= m*cp*((ts-ti)-(ts-to))") +m=m*rho//kg/sec +Nu=5.78; +h=Nu*k/d; +disp("W/m^2.C",h,"Heat transfer coefficient =") +A=%pi*d*L;// m^2 +t=(m*cp-h*A/2)*(ts-ti)/(h*A/2+m*cp); +to=ts-t; +disp("degree C",to," temperature of mixed sand =") + -- cgit