wedderburn.number: Calculates Wedderburn Number for a lake.

Description Usage Arguments Value References See Also Examples

View source: R/wedderburn.number.R

Description

Wedderburn Number (Wn) is a dimensionless parameter measuring the balance between wind stress and bouyancy force and is used to estimate the amount of upwelling occuring in a lake. When Wn is much greater than 1, the bouyancy force is much greater than the wind stress and therefore there is a strong vertical stratification with little horizontal variation in the stratification. When Wn is much less than 1, the wind stress is much greater than the bouyancy force and upwelling is likely occuring at the upwind end of the lake. When Wn is near 1, the bouyance force and wind stress are nearly equal and horizontal mixing is considered important

Usage

1
wedderburn.number(delta_rho, metaT, uSt, Ao, AvHyp_rho)

Arguments

delta_rho

Numeric value for the water density difference between the epilimnion and hypolimnion (kg/m^3)

metaT

Numeric value for the thickness of the water body's surface layer (m)

uSt

Numeric value for the water friction velocity due to wind stress (m/s)

Ao

Numeric value for the water body surface area (m^2) at zero meters depth

AvHyp_rho

Numeric value for the average water density of the hypolimnion layer (kg/m^3)

Value

The dimensionless numeric value of Wedderburn Number

References

Imberger, J., Patterson, J.C., 1990. Physical limnology. Advances in Applied Mechanics 27, 353-370.

See Also

ts.wedderburn.number lake.number

Examples

1
2
3
4
5
6
delta_rho <- c(3.1,1.5)
metaT <- c(5.5,2.4)
uSt <- c(0.0028,0.0032)
Ao <- c(80300,120000)
AvHyp_rho <- c(999.31,999.1)
wedderburn.number(delta_rho, metaT, uSt, Ao, AvHyp_rho)

GLEON/rLakeAnalyzer documentation built on May 3, 2021, 1:32 p.m.