kinvisc: Calculate the kinematic viscosity of a fluid.

Description Usage Arguments Value Author(s) See Also Examples

Description

The kinematic viscosity of a homogeneous body or fluid is defined as the value of its dynamic viscosity divided by its density. This function can also divide by gravity, which would be necessary in the computation of, for example, hydraulic conductivity.

Usage

1
2
kinvisc(dyn_visc = NULL, fluid_dens = NULL, grav.divide = FALSE,
  verbose = FALSE)

Arguments

dyn_visc

scalar; representing the dynamic fluid viscosity, with units [Pa \cdot s]

fluid_dens

scalar; representing the fluid density, with units [kg m^{-3}]

grav.divide

logical; should the kinematic viscosiy be divided by standard gravitational acceleration?

verbose

logical; should messages be displayed?

Value

scalar, a form of kinematic viscosity with units or either:

Author(s)

Andrew J. Barbour <andy.barbour@gmail.com>

See Also

hydrogeo.p, hydraulic_conductivity

Examples

1
2
3
4
kinvisc()	# use defaults (water at STP)
kinvisc(verbose=TRUE)	# no message
kinvisc(grav.divide=TRUE)	# divide by standard gravity
kinvisc(grav.divide=TRUE, verbose=TRUE)	# message

abarbour/hydrogeo documentation built on May 10, 2019, 4:06 a.m.