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 /2741/CH8/EX8.12/Chapter8_Example12.sce | |
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 '2741/CH8/EX8.12/Chapter8_Example12.sce')
-rwxr-xr-x | 2741/CH8/EX8.12/Chapter8_Example12.sce | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/2741/CH8/EX8.12/Chapter8_Example12.sce b/2741/CH8/EX8.12/Chapter8_Example12.sce new file mode 100755 index 000000000..3d0413d71 --- /dev/null +++ b/2741/CH8/EX8.12/Chapter8_Example12.sce @@ -0,0 +1,14 @@ +clc
+clear
+//Input data
+E=1.53*10^5;//The energy radiated from an iron furnace in calories per hour
+A=10^-4;//The cross section area of an iron furnace in m^2
+e=0.8;//The relative emittance of the furnace
+t=3600;//The time in seconds
+s=1.36*10^-8;//Stefans constant in cal/m^2-s-K^4
+
+//Calculations
+T=((E)/(A*e*s*t))^(1/4);//The temperature of the furnace in K
+
+//Output
+printf('The temperature of the furnace is T = %3.0f K ',T)
|