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/CH11/EX11.3/Chapter113.sce | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100755 1910/CH11/EX11.3/Chapter113.sce (limited to '1910/CH11/EX11.3') diff --git a/1910/CH11/EX11.3/Chapter113.sce b/1910/CH11/EX11.3/Chapter113.sce new file mode 100755 index 000000000..ad2c4a0be --- /dev/null +++ b/1910/CH11/EX11.3/Chapter113.sce @@ -0,0 +1,21 @@ +// Display mode +mode(0); +// Display warning for floating point exception +ieee(1); +clear; +clc; +disp("Introduction to heat transfer by S.K.Som, Chapter 11, Example 3") +disp("The view factors F13 and F31 between the surfaces 1 and 3 are ") +//Determine the view factors F13 and F31 between the surfaces 1 and 3. +//F1-2,3=F12+F13 +//So F13=F1-2,3-F12 +//Let F1-2,3=F123 +//From Radiation Shape factor b/w two perpendicular rectangles with a commom edge table we get F12=.027,F1-2,3=0.31 +F123=0.31;//View factor +F12=.27;//View factor +F13=F123-F12//View factor +//A1,A2 and A3 are the emitting surface areas +//From reciprocity relation F31=(A1/A3)/F13 +A1=2; +A3=2.5; +F31=(A1/A3)*F13 -- cgit