From 7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 Mon Sep 17 00:00:00 2001 From: prashantsinalkar Date: Tue, 10 Oct 2017 12:27:19 +0530 Subject: initial commit / add all books --- 965/CH2/EX2.9/9.sci | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 965/CH2/EX2.9/9.sci (limited to '965/CH2/EX2.9/9.sci') diff --git a/965/CH2/EX2.9/9.sci b/965/CH2/EX2.9/9.sci new file mode 100644 index 000000000..2796e77ee --- /dev/null +++ b/965/CH2/EX2.9/9.sci @@ -0,0 +1,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 = ") -- cgit