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 /2510/CH10/EX10.9/Ex10_9.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 '2510/CH10/EX10.9/Ex10_9.sce')
-rwxr-xr-x | 2510/CH10/EX10.9/Ex10_9.sce | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/2510/CH10/EX10.9/Ex10_9.sce b/2510/CH10/EX10.9/Ex10_9.sce new file mode 100755 index 000000000..97ce4585f --- /dev/null +++ b/2510/CH10/EX10.9/Ex10_9.sce @@ -0,0 +1,21 @@ +//Variable declaration: +Ts = 113.0+273.0 //Surface temperature of bulb (K) +Too = 31.0+273.0 //Ambient air temperature (K) +D = 0.06 //Diameter of sphere (m) +g = 9.8 //Gravitational acceleration (m/s^2) + +//Calculation: +Tf = (Ts+Too)/2 //Mean temperature (K) +//From Appendix: +v = (22.38*10**-5)*0.0929 //Kinematic viscosity (m^2/s) +Pr = 0.70 //Prandtl number +k = 0.01735*1.729 //Thermal conductivity (W/m.K) +B = 1.0/(Tf) //Coefficient of expansion (K^-1) +Gr = g*B*(Ts-Too)*D**3/v**2 //Grashof number +Ra = Gr*Pr //Rayleigh number + +//From equation 10.13: +h = (k/D)*0.6*Ra**(1.0/4.0) //Heat transferred from bulb (W/m^2.K) + +//Result: +printf("The heat transferred from bulb to air is : %.2f W/m^2.K.",h) |