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 --- 2741/CH8/EX8.12/Chapter8_Example12.sce | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100755 2741/CH8/EX8.12/Chapter8_Example12.sce (limited to '2741/CH8/EX8.12/Chapter8_Example12.sce') 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) -- cgit