summaryrefslogtreecommitdiff
path: root/1910/CH1/EX1.4
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /1910/CH1/EX1.4
downloadScilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip
initial commit / add all books
Diffstat (limited to '1910/CH1/EX1.4')
-rwxr-xr-x1910/CH1/EX1.4/Chapter14.sce16
1 files changed, 16 insertions, 0 deletions
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)