summaryrefslogtreecommitdiff
path: root/1328/CH2/EX2.1/2_1.sce
diff options
context:
space:
mode:
Diffstat (limited to '1328/CH2/EX2.1/2_1.sce')
-rw-r--r--1328/CH2/EX2.1/2_1.sce11
1 files changed, 11 insertions, 0 deletions
diff --git a/1328/CH2/EX2.1/2_1.sce b/1328/CH2/EX2.1/2_1.sce
new file mode 100644
index 000000000..c134c4e1d
--- /dev/null
+++ b/1328/CH2/EX2.1/2_1.sce
@@ -0,0 +1,11 @@
+printf("\t Example 2.1 \n");
+printf("\t approximate values are mentioned in the book \n");
+Tavg=900; // average temperature of the wall,F
+k=0.15; // Thermal conductivity at 932 F,Btu/(hr)(ft^2)(F/ft)
+T1=1500; // hot side temperature,F
+T2=300; // cold side temperature,F
+A=192; // surface area,ft^2
+L=0.5; // thickness,ft
+Q=(k)*(A)*(T1-T2)/L; // formula for heat,Btu/hr
+printf("\t heat is : %.2e Btu/hr \n",Q);
+//end