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 /1073/CH4/EX4.20 | |
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 '1073/CH4/EX4.20')
-rwxr-xr-x | 1073/CH4/EX4.20/4_20.sce | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/1073/CH4/EX4.20/4_20.sce b/1073/CH4/EX4.20/4_20.sce new file mode 100755 index 000000000..4ca535724 --- /dev/null +++ b/1073/CH4/EX4.20/4_20.sce @@ -0,0 +1,35 @@ +clc;
+clear;
+//Example 4.20
+sigma=5.67*10^-8 //[W/sq m.K^4]
+T1=750 //[K]
+T2=500 //[K]
+e1=0.75;
+e2=0.5;
+//Heat transfer without shield :
+
+Q_by_a=sigma*(T1^4-T2^4)/((1/e1)+(1/e2)-1) //[W/sq m]
+
+//Heat transfer with shield:
+R1=(1-e1)/e1 //Resistance 1
+
+F13=1;
+R2=1/F13 //Resistance 2
+
+e3=0.05
+R3=(1-e3)/e3 //Resistance 3
+
+R4=(1-e3)/e3 //Resistance 4
+
+F32=1;
+R5=1/F32 //Resistance 5
+
+R6=(1-e2)/e2 //Resistance 6
+
+Total_R=R1+R2+R3+R4+R5+R6 //Total resistance
+
+Q_by_as=sigma*(T1^4-T2^4)/Total_R //[W/sq m]
+
+Red=(Q_by_a-Q_by_as)*100/Q_by_a //Reduciton in heat tranfer due to shield
+
+printf("\n Reduction in heat transfer rate as a result of radiaiotn shield is %f percent",Red);
|