re_u {pipenostics} | R Documentation |
Estimate Reynolds number
Description
Estimate Reynolds number for fluid flow in a cylindrical pipe.
Usage
re_u(d, mu, u, rho)
re_v(d, mu, v, rho)
re_m(d, mu, m)
Arguments
d |
internal diameter of pipe, [m]. Type: |
mu |
dynamic viscosity of fluid in pipe, [kg/m/s]. Type: |
u |
mean velocity of fluid in pipe, [m/s]. Type: |
rho |
mass density of fluid in pipe, [kg/m^3]. Type: |
v |
volumetric flow rate of fluid in pipe, [m^3/s]. Type: |
m |
mass flow rate of fluid in pipe, [kg/s]. Type: |
Details
The calculation of Reynolds number is bounded by physically reasonable limits of fluid properties found in domain specificity of the package.
Value
Reynolds number - a dimensionless quantity that reveals the ratio
between inertial and viscous forces in the fluid, []. Type: assert_double
.
See Also
Other Fluid properties:
fric_buzelli()
,
fric_romeo()
,
fric_vatankhan()
Examples
library(pipenostics)
# Reynolds numbers for typical district heating water flows at temperature
# near 25 C in a set of pipes with different sizes:
range(re_u(seq(.25, 1, 0.05), .89, 1, 1000))
# [1] 280.8989 1123.5955