diff options
Diffstat (limited to '965/CH2/EX2.10')
-rw-r--r-- | 965/CH2/EX2.10/10.sci | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/965/CH2/EX2.10/10.sci b/965/CH2/EX2.10/10.sci new file mode 100644 index 000000000..813c68a87 --- /dev/null +++ b/965/CH2/EX2.10/10.sci @@ -0,0 +1,10 @@ +clc;
+clear all;
+disp("Heat loss rate")
+L=0.2;//m
+t1=300;// degree C
+t2=30;// degree C
+a=0.3;
+b=5*10^(-6);
+q= (a+(b/3)*(t1*t1+t1*t2+t2*t2))*(t1-t2)/L;// W/m^2 rate of heat transfer
+disp ("W/m^2",q,"rate of heat transfer is = ")
|