diff options
Diffstat (limited to '632/CH2/EX2.4/example2_4.sce')
-rwxr-xr-x | 632/CH2/EX2.4/example2_4.sce | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/632/CH2/EX2.4/example2_4.sce b/632/CH2/EX2.4/example2_4.sce new file mode 100755 index 000000000..97dfa8bbb --- /dev/null +++ b/632/CH2/EX2.4/example2_4.sce @@ -0,0 +1,14 @@ +//clc()
+Q1 = 10000;//kJ/hr
+kJ = 1000;//J
+hr = 3600;//s
+Q = Q1*kJ/hr;//J/s
+disp("J/s",Q,"Q = ")
+x = 0.1;//m
+A = 1//m^2
+T = 800;//K
+k = x*Q/(A*T);
+disp("W/(m*K)",k,"thermal conductivity = ")
+J = 1/4.1868;//cal
+k1 = k*J*hr/1000;
+disp("kcal/(h*m*C)",k1,"thermal conductivity = ")
\ No newline at end of file |