Description Usage Arguments Examples
This function allows you to calculate the water residence time of a lake based on an evaporation to inflow (E:I) ratio.
1 | eee2eye_WRT(df, E.I, e, SA, V)
|
df |
dataframe with your values |
E.I |
E:I ratio |
e |
annual evaporation depth (m/yr) |
SA |
lake surface area (m2) |
V |
lake volume (m3) |
1 2 3 4 5 | ei_input <- data.frame(E.I = c(0.2042, 0.3138, 0.1838),
e_myr = c(0.3965, 0.3965, 0.3965),
SA_m2 = c(315900, 300825, 589950),
V_m3 = c(2466000, 3004064, 5712829))
eee2eye_WRT(ei_input, 'E.I', 'e_myr', 'SA_m2', 'V_m3')
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.