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/CH3/EX3.15/3_15.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 '1073/CH3/EX3.15/3_15.sce')
-rwxr-xr-x | 1073/CH3/EX3.15/3_15.sce | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/1073/CH3/EX3.15/3_15.sce b/1073/CH3/EX3.15/3_15.sce new file mode 100755 index 000000000..04ad2bf9a --- /dev/null +++ b/1073/CH3/EX3.15/3_15.sce @@ -0,0 +1,21 @@ + +clc; +clear; +//Example 3.15 +u_inf=50 //velocity in [m/s] +mu=2.14*10^-5 //[kg/(m.s)] +rho=0.966 //[kg/cubic m] +k=0.0312 //[W/(m.K)] +Npr=0.695 //Prandtl number +D=0.05 //Diameter in [m] +Nre=D*u_inf*rho/mu ; //Reynold's number +printf("%f",Nre) +Nnu=0.0266*Nre^0.805*Npr^(1/3); +h=Nnu*k/D ; //W/sq m.K +h=171.7 //Approximation +printf("\n%f",h) +Tw=423 //[K] +T_inf=308 //[K] +//Heat loss per unit length is : +Q_by_l=h*%pi*D*(Tw-T_inf); //[W] +printf("Heat lost per unit length of cylinder is %f W(approx)",round(Q_by_l)); |