diff options
author | priyanka | 2015-06-24 15:03:17 +0530 |
---|---|---|
committer | priyanka | 2015-06-24 15:03:17 +0530 |
commit | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch) | |
tree | ab291cffc65280e58ac82470ba63fbcca7805165 /1910/CH1/EX1.8 | |
download | Scilab-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.8')
-rwxr-xr-x | 1910/CH1/EX1.8/Chapter18.sce | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/1910/CH1/EX1.8/Chapter18.sce b/1910/CH1/EX1.8/Chapter18.sce new file mode 100755 index 000000000..5c4c7db64 --- /dev/null +++ b/1910/CH1/EX1.8/Chapter18.sce @@ -0,0 +1,15 @@ +// 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 8")
+//The temprature(T) of asphalt pavement = 50°C
+//The stefan-Boltzman constant(sigma)=5.6697*10^-8 W/(m^2*K^4).
+T=50;
+sigma=5.6697*10^-8;
+//The emitted radiant energy per unit surface area is given by (Eb/A)=sigma*T^4
+disp ("The emitted radiant energy per unit surface area is given by Eb/A=sigma*T^4 in W/m^2")
+//Let Eb/A=F
+F=sigma*(50+273.15)^4
|