summaryrefslogtreecommitdiff
path: root/581/CH2/EX2.10
diff options
context:
space:
mode:
Diffstat (limited to '581/CH2/EX2.10')
-rwxr-xr-x581/CH2/EX2.10/Example2_10.sci13
1 files changed, 13 insertions, 0 deletions
diff --git a/581/CH2/EX2.10/Example2_10.sci b/581/CH2/EX2.10/Example2_10.sci
new file mode 100755
index 000000000..d23b502d4
--- /dev/null
+++ b/581/CH2/EX2.10/Example2_10.sci
@@ -0,0 +1,13 @@
+
+clear;
+clc;
+
+printf("\t Example 2.10\n");
+
+h1=200; // convective heat transfer coefficient, W/(m^2*K)
+a=1/60000; // 1/a=l/Kal, l=0.001m, Kal=160 W/(m*K)
+h2=5000; //convective heat transfer coefficient during boiling,W/(m^2*K)
+
+U=1/(1/h1+a+1/h2)+0.40;
+printf("\t overall heat transfer coefficient is : %.1f W/(m^2*K)\n",U);
+//end \ No newline at end of file