ftemp_arrh {rpmodel} | R Documentation |
Calculates the Arrhenius-type temperature response
Description
Given a kinetic rate at a reference temperature (argument tkref
)
this function calculates its temperature-scaling factor
following Arrhenius kinetics.
Usage
ftemp_arrh(tk, dha, tkref = 298.15)
Arguments
tk |
Temperature (Kelvin) |
dha |
Activation energy (J mol-1) |
tkref |
Reference temperature (Kelvin) |
Details
To correct for effects by temperature following Arrhenius kinetics,
and given a reference temperature ,
calculates the temperature
scaling. Arrhenius kinetics are described by an equation of form
. The temperature-correction
function
is thus given by
which is:
is given by argument
dha
. is given by argument
tk
and has to be provided in Kelvin. is the universal gas constant
and is 8.3145 J mol-1 K-1. Note that this is equivalent to
Value
A numeric value for
Examples
# Relative rate change from 25 to 10 degrees Celsius (percent change)
print( (1.0-ftemp_arrh( 283.15, 100000, tkref = 298.15))*100 )
[Package rpmodel version 1.2.3 Index]