diff options
Diffstat (limited to '1328/CH4/EX4.3/4_3.sce')
-rw-r--r-- | 1328/CH4/EX4.3/4_3.sce | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/1328/CH4/EX4.3/4_3.sce b/1328/CH4/EX4.3/4_3.sce new file mode 100644 index 000000000..4f760d99a --- /dev/null +++ b/1328/CH4/EX4.3/4_3.sce @@ -0,0 +1,12 @@ +printf("\t example 4.3 \n");
+printf("\t approximate values are mentioned in the book \n");
+T1=125+460; // R
+T2=70+460; // R
+e=0.9; // emissivity,using table 4.1B
+A=(%pi)*(3.375/12)*(1); // area,ft^2/lin ft
+printf("\t area is : %.2f ft^2/lin ft \n",A);
+Q=(0.9)*(0.88)*(0.173)*((T1/100)^4-(T2/100)^4); // heat loss using eq.4.32,Btu/(hr)*(lin ft)
+printf("\t heat loss is : %.1f Btu/(hr)*(lin ft) \n",Q);
+hr=(Q)/((A)*(T1-T2)); // fictitious film coefficient,using eq 4.33,Btu/(hr)(ft^2)(F)
+printf("\t fictitious film coefficient is : %.2f Btu/(hr)(ft^2)(F) \n",hr);
+//end
|