reco | R Documentation |
Model R_eco from CO2 exchange closed chamber data.
reco(R, Temp, Tref = 10, T0 = -46.02, method = "all", min.dp = 6)
R |
Numeric vector with ecosystem respiration (R_eco) flux rates. |
Temp |
Numeric vector with corresponding temperature values. |
Tref |
Numeric value giving the reference temperature used in the Arrhenius type model. Defaults to 10 (°C). |
T0 |
Numeric value giving the activation temperature used in the Arrhenius type model. Defaults to -46.02 (°C). |
method |
Specifies the model to be used. Partial match is possible. One can either check all included models ( |
min.dp |
Integer. Minimum number of data points accepted. If number is below function execution is stopped and a warning is issued. |
Respiration is controlled by both biological and physical factors. Work by Arrhenius and van’t Hoff in the late-19th century on the temperature dependence of chemical reactions lead to the insight that there is a certain relationship between temperature and respiration (see review by Lloyd and Taylor, 1994). The most prominent models that have been used extenively in the literature can be fitted with this function. For an in-depth review, even more models and references see Richardson et al. 2006.
Models (T = Temp
erature):
linear
| R = t1 + t2*T |
arrhenius
| R = t1 * exp(E0 * (1/(Tref-T0) - 1/(T-T0))) |
Q10
| R = t1 * t2^((Temp-Tref)/10) |
lt
| R = t1 * exp(-t2 / (T+273.15-t3)) |
ltr
| R = t1 * exp(-308.56 / (T + 46.02)) |
logistic
| R = t1 / (1+exp(t2-t3*T)) |
Either returns a list of R_eco models or the specified model structure. The wanted or resultant model can be fed into gpp
or used on its own to predict Reco values.
In its current implementation the lt
and logistic
models are easily over parameterized and therefore find singular gradients and provide no fit.
Gerald Jurasinski, gerald.jurasinski@uni-rostock.de
Lloyd J, Taylor JA, 1994. On the temperature dependence of soil respiration. Functional Ecology 8:315–323.
Richardson et al. 2006. Comparing simple respiration models for eddy flux and dynamic chamber data. Agricultural and Forest Meteorology 141:219–234.
gpp
## see examples at gpp
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.