74: Effects of temperature on decomposition rates according to a...

Description Usage Arguments Value Author(s) Examples

Description

Calculates the effects of temperature on decomposition rates according to the modified Van't Hoff function (Q10 function).

Usage

1
fT.Q10(Temp, k_ref = 1, T_ref = 10, Q10 = 2)

Arguments

Temp

A scalar or vector containing values of temperature for which the effects on decomposition rates are calculated.

k_ref

A scalar representing the value of the decomposition rate at a reference temperature vaule.

T_ref

A scalar representing the reference temperature.

Q10

A scalar. Temperature coefficient Q10.

Value

A scalar or a vector containing the effects of temperature on decomposition rates (unitless).

Author(s)

Carlos A. Sierra, Markus Mueller

Examples

1
2
3
4
5
6
Temperature=0:50
plot(Temperature,fT.Q10(Temperature),type="l",ylab="f(T) (unitless)", 
     main="Effects of temperature on decomposition rates according to a Q10 function")
lines(Temperature, fT.Q10(Temperature,Q10=2.2),col=2)
lines(Temperature, fT.Q10(Temperature,Q10=1.4),col=4)
legend("topleft",c("Q10 = 2", "Q10 = 2.2", "Q10 = 1.4"),lty=c(1,1,1),col=c(1,2,4),bty="n")

Example output

Loading required package: deSolve
Loading required package: parallel
Loading required package: RUnit

SoilR documentation built on May 4, 2017, 9:08 p.m.

Related to 74 in SoilR...