From b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b Mon Sep 17 00:00:00 2001 From: priyanka Date: Wed, 24 Jun 2015 15:03:17 +0530 Subject: initial commit / add all books --- 1910/CH1/EX1.4/Chapter14.sce | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100755 1910/CH1/EX1.4/Chapter14.sce (limited to '1910/CH1/EX1.4') diff --git a/1910/CH1/EX1.4/Chapter14.sce b/1910/CH1/EX1.4/Chapter14.sce new file mode 100755 index 000000000..ababfe72d --- /dev/null +++ b/1910/CH1/EX1.4/Chapter14.sce @@ -0,0 +1,16 @@ +// Display mode +mode(0); +// Display warning for floating point exception +ieee(1); +clear; +clc; +disp("Introduction to heat transfer by S.K.Som, Chapter 1, Example 4") +//The average forced convective heat transfer coefficient(hbr) is 200 W/( m^2 °C) +//The fluid temprature(Tinf) upstream of the cold surface is 100°C +//The surface temprature(Ts) is 20°C +hbr=200; +Tinf=100; +Ts=20; +//The rate of heat transfer per unit area is q +disp ("The rate of heat transfer per unit area q=hbr*(Tinf-Ts) in W/m^2") +q=hbr*(Tinf-Ts) -- cgit