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.8/Chapter18.sce | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100755 1910/CH1/EX1.8/Chapter18.sce (limited to '1910/CH1/EX1.8') 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 -- cgit