diff options
Diffstat (limited to '530/CH2/EX2.7/example_2_7.sce')
-rwxr-xr-x | 530/CH2/EX2.7/example_2_7.sce | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/530/CH2/EX2.7/example_2_7.sce b/530/CH2/EX2.7/example_2_7.sce new file mode 100755 index 000000000..8c51f8567 --- /dev/null +++ b/530/CH2/EX2.7/example_2_7.sce @@ -0,0 +1,22 @@ +clear;
+clc;
+
+// A Textbook on HEAT TRANSFER by S P SUKHATME
+// Chapter 2
+// Heat Conduction in Solids
+
+// Example 2.7
+// Page 43
+printf("Example 2.7, Page 43 \n\n")
+
+H = 5 ; // Height, [m]
+L = 10 ; // Length, [m]
+t = 1 ; // thickness, [m]
+b = t/2;
+k = 1.05 ; // [W/m K]
+q = 58 ; // [W/m^3]
+T = 35 ; // [C]
+h = 11.6 ; // Heat transfer coefficient, [W/m^2 K]
+// Substituting the values in equation 2.5.6
+T_max = T + q*b*(b/(2*k)+1/h);
+printf("Maximum Temperature = %f degree C",T_max);
\ No newline at end of file |