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 --- 1073/CH3/EX3.52/3_52.sce | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100755 1073/CH3/EX3.52/3_52.sce (limited to '1073/CH3/EX3.52/3_52.sce') diff --git a/1073/CH3/EX3.52/3_52.sce b/1073/CH3/EX3.52/3_52.sce new file mode 100755 index 000000000..17afa555d --- /dev/null +++ b/1073/CH3/EX3.52/3_52.sce @@ -0,0 +1,18 @@ +clc; +clear; +//Example 3.52 +m1_dot=50 // For horizontal position[kg/h] +Do=10 //[mm] +Do=Do/1000 //[m] +L=1 //[m] +//For 100 tubes n=10 +n=10; +//We know that +//m_dot=Q/lambda=h*A*dT/lambda +//m_dot is proportional to h +//m1_dot prop to h1 +//m2_dot propn to h2 +//m1_dot/m2_dot=h1/h2 +//or : +m2_dot=m1_dot/((0.725/0.943)*(L/(n*Do))^(1/4)) //[kg/h] +printf("\n For vertical position,Rate of condensationis %f kg/h",m2_dot); -- cgit