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 /587/CH13/EX13.2 | |
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 '587/CH13/EX13.2')
-rwxr-xr-x | 587/CH13/EX13.2/example13_2.sce | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/587/CH13/EX13.2/example13_2.sce b/587/CH13/EX13.2/example13_2.sce new file mode 100755 index 000000000..224004269 --- /dev/null +++ b/587/CH13/EX13.2/example13_2.sce @@ -0,0 +1,14 @@ +clear;
+clc;
+
+//Example13.2[Fraction of Radiation Leaving through an Opening]
+//Given:-
+r1=0.1;//Radius of enclosure[m]
+L=0.1;//Length of Enclosure[m]
+r2=0.05,r3=0.08;//Inner and outer radii of the ring[m]
+//Solution:-
+//Using Chart in Fig 13.7
+F12=0.11;
+F13=0.28;
+F1_ring=F13-F12;
+disp(F1_ring,"The fraction of the radiation leaving the base cyllinder enclosure that escapes through coaxial ring opening at its top surface is")
|