summaryrefslogtreecommitdiff
path: root/965/CH2/EX2.9/9.sci
blob: 2796e77eeb21747322202272a4d9bd23e78430cb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
clc;
clear all;
disp("Heat transfer rate")
L=0.6;//m
r=.12;//m
theta=3.14/3;// adian=(60)degree
t1=125;// degree C
t2=25;// degree C
k0=115;// W/(m*C)
B=10^(-4);
tm=(t1+t2)/2;
km=k0*(1-B*tm);
A=(r^2)*theta/2;
Q=(-1)*km*A*(t2-t1)/L;
disp ("W",Q,"rate of heat transfer is = ")