diff options
Diffstat (limited to '965/CH2/EX2.2/2.sci')
-rw-r--r-- | 965/CH2/EX2.2/2.sci | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/965/CH2/EX2.2/2.sci b/965/CH2/EX2.2/2.sci new file mode 100644 index 000000000..60890c9f0 --- /dev/null +++ b/965/CH2/EX2.2/2.sci @@ -0,0 +1,9 @@ +clc;
+clear all;
+disp("Heat transfer rate")
+t1=60;// degree C temperature of inner surface of the wall
+t2=35;// degree C temperature of outer surface of the wall
+L=0.22;// m thickness of the wall
+k=0.51;// W/m*C thermal conductivity of the brick
+q = k*(t1-t2)/L ;// = Q/A W/m^2 rate of heat transfer
+disp ("W/m^2",q,"the heat transfer rate is = ")
|