Re2 | R Documentation |
Calculating the Reynolds Number 2
Re2(D, V, nu)
D |
numeric vector that contains the hydraulic diameters "(four times the area in flow divided by the wetted surface) is a characteristic length" (m or ft) [Reference: Lindeburg Manual] |
V |
numeric vector that contains the average fluid velocity (m/s or ft/s) [Reference: Lindeburg Manual] |
nu |
numeric vector that contains the kinematic viscosity of the fluid (m^2/s or lbf-sec/ft^2) [Reference: Lindeburg Manual] |
the Reynolds number as a numeric vector
for Re2
Irucka Embry
Re1
for the additional seealso, description, details, note, and references sections, Re3
, Re4
# from Lindeburg Reference page 17-8
# where
# D = 0.3355 ft
# V = 7.56 ft/sec
# nu = 1.41 * 10 ^ -5 ft^2 / sec
# and
# Re = 1.8 * 10 ^ 5
library(iemisc)
Re2(D = 0.3355, V = 7.56, nu = 1.41 * 10 ^ -5)
# compare to Re1(D = 0.3355, V = 7.56, rho = 1.937, mu = 2.09 * 10 ^ -5, units = "slug")
Re2(D = 0.3355, V = 7.56, nu = 1.08 * 10 ^ -5)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.