diff options
author | priyanka | 2015-06-24 15:03:17 +0530 |
---|---|---|
committer | priyanka | 2015-06-24 15:03:17 +0530 |
commit | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch) | |
tree | ab291cffc65280e58ac82470ba63fbcca7805165 /1073/CH3/EX3.52 | |
download | Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2 Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip |
initial commit / add all books
Diffstat (limited to '1073/CH3/EX3.52')
-rwxr-xr-x | 1073/CH3/EX3.52/3_52.sce | 18 |
1 files changed, 18 insertions, 0 deletions
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);
|