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 /530/CH3/EX3.7 | |
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 '530/CH3/EX3.7')
-rwxr-xr-x | 530/CH3/EX3.7/example_3_7.sce | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/530/CH3/EX3.7/example_3_7.sce b/530/CH3/EX3.7/example_3_7.sce new file mode 100755 index 000000000..f69b48086 --- /dev/null +++ b/530/CH3/EX3.7/example_3_7.sce @@ -0,0 +1,24 @@ +clear;
+clc;
+
+// A Textbook on HEAT TRANSFER by S P SUKHATME
+// Chapter 3
+// Thermal Radiation
+
+// Example 3.7
+// Page 134
+printf("Example 3.7, Page 134 \n\n")
+
+// This is a theoretical problem with no numerical data
+printf("This is a theoretical problem with no numerical data \n");
+
+
+// Considering an elementary circular ring on the surface of the sphere's surface at any arbitary anglr B,
+// we have B1 = B, B2 = 0, L = R and dA_2 = 2*%pi*(R^2)*(sin(B))dB
+// Therefore, from equation 3.6.7
+// F12 = sin^2(a)
+
+printf("Considering an elementary circular ring on the surface of the sphere surface at any arbitary anglr B \n");
+printf("we have B1 = B, B2 = 0, L = R and dA_2 = 2*pi*(R^2)*(sin(B))dB \n");
+printf("Therefore, from equation 3.6.7 \n");
+printf("F12 = sin^2(a)");
\ No newline at end of file |