diff options
Diffstat (limited to '587/CH13/EX13.12/example13_12.sce')
-rwxr-xr-x | 587/CH13/EX13.12/example13_12.sce | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/587/CH13/EX13.12/example13_12.sce b/587/CH13/EX13.12/example13_12.sce new file mode 100755 index 000000000..f4bdc35c0 --- /dev/null +++ b/587/CH13/EX13.12/example13_12.sce @@ -0,0 +1,11 @@ +clear;
+clc;
+
+//Example13.12[Radiation Effect on Temperature Measurements]
+//Given:-
+Tw=400,Tth=650;//Temperature of duct wall and hota air flowing in it[K]
+e=0.6;//emissivity
+h=80;//Heat transfer coefficient[W/m^2.K]
+//Solution:-
+Tf=Tth+((e*5.67*10^(-8)*((Tth^4)-(Tw^4)))/h);//[K]
+disp("K",round(Tf),"The temperature of actual air is")
|