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 /2354/CH18/EX18.10/18_10.sce | |
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 '2354/CH18/EX18.10/18_10.sce')
-rwxr-xr-x | 2354/CH18/EX18.10/18_10.sce | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/2354/CH18/EX18.10/18_10.sce b/2354/CH18/EX18.10/18_10.sce new file mode 100755 index 000000000..c05ba61e3 --- /dev/null +++ b/2354/CH18/EX18.10/18_10.sce @@ -0,0 +1,16 @@ +//example 18.10
+clc; funcprot(0);
+// Initialization of Variable
+e1=0.8;
+e2=0.4;
+T1=1200;
+T2=500;
+A=1;
+Jr=(108323+59043)/2;
+sigma=5.67e-8;
+q1=sigma*(T1^4-T2^4)/((1-e1/e1/A)+1/(A*0.5+(2+2)^-1)+(1-e2)/e2/A);
+disp(q1/1000,"the rate of energy supply in kW/m");
+
+Tr=(Jr/sigma)^0.25;
+disp(Tr,"temperature in radiating surface in K");
+clear()
|