50 M/s. The Roughness Is 0.0015 Mm. Calculate The Friction Factor Using The Colebrook Equation
50 M/s. The Roughness Is 0.0015 Mm. Calculate The Friction Factor Using The Colebrook Equation
50 m/s. The roughness is = 0.0015 mm. Calculate the friction factor using the Colebrook equation:
Determine the pressure drop in a 1 m section of the tube using the relation
Density of air at 25°C and 1 atm is 1.23 kg/m and viscosity is kg/m-s.
Scilab codes:
rho=1.23;//kg/cubm
mu=1.79e-5//kg/m-s
d=0.004;//m (4 mm dia pipe)
l=1; // 1 m length
v=50;//m/sec
e=0.0015e-3; //m
// // relative roughness
k=e/d;
// // Raynolds num
nRe=rho*v*d/mu;
fricFact=getFricFact(nRe,k)
get_pressure_drop(fricFact, l, v, rho, d)
Result
friction factor = 0.029099
data generated:
sn f fNew
1 0.010000 0.017503
2 0.017503 0.024358
3 0.024358 0.027878
4 0.027878 0.028870
5 0.028870 0.029061
6 0.029061 0.029093
7 0.029093 0.029099
8 0.029099 0.029099