Description Usage Arguments Value Author(s) Examples
This function returns the largest hypoxic area that can be support for the given conditions.
1 | A.hy(NPP, Exchange, O2.surf, Depth, Area, L)
|
NPP |
Net primary production (mol C/[m2 y]) |
Exchange |
Exchange coefficient between surface and bottom waters (/y) |
O2.surf |
Surface oxygen concentration (mol/m3) |
Depth |
Water depth (m) |
Area |
Area of primary production (m2) |
L |
Thickness of bottom water layer (m) |
Returns the largest hypoxic area supported by given conditions (m2)
Daniel C. Reed
1 2 3 4 5 6 7 8 9 10 11 12 | ##---- Should be DIRECTLY executable !! ----
##-- ==> Define data, use random,
##-- or do help(data=index) for the standard data sets.
## The function is currently defined as
function (NPP, Exchange, O2.surf, Depth, Area, L)
{
M.sed <- C.flux(NPP, Depth) * Area
gamma <- p.remin(Depth)
return(M.sed * (gamma * 77/60 - 17/60)/(L * Exchange * (O2.surf -
0.063)))
}
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.