diff options
Diffstat (limited to '2510/CH11/EX11.15')
-rwxr-xr-x | 2510/CH11/EX11.15/Ex11_15.sce | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/2510/CH11/EX11.15/Ex11_15.sce b/2510/CH11/EX11.15/Ex11_15.sce new file mode 100755 index 000000000..6d61ab3f2 --- /dev/null +++ b/2510/CH11/EX11.15/Ex11_15.sce @@ -0,0 +1,10 @@ +//Variable declaration: +//From example 11.14: +Qc = 15.0 //Convection heat transfer coefficient (W/m^2.K) +hr = 7.2 //Radiation heat transfer coefficient (W/m^2.K) + +//Calculation: +X = hr/(Qc+hr)*100.0 //Percent heat transfer by radiation (%) + +//Result: +printf("The percent heat transfer by radiation is : %.1f %%.",X) |