R/plantcoupmodel.R
plant_coupmodel.RdCreates a daily sequence for one year from parameters
plant_coupmodel(
minval_before_incr,
minval_after_decr = minval_before_incr,
maxval,
doy.incr,
doy.max,
doy.min,
shape.incr,
shape.decr,
maxdoy
)Minimum value used for the time period before
doy.incr.
Minimum value used for time period after
doy.decr.
Maximum value.
Day of year when increasing from minval_before_incr to
maxval begins.
Day of year when maxval is reached.
Day of year when minval_after_decr is reached.
Shape parameter of the increasing phase.
Shape parameter of the decreasing phase.
Length of the year, 366 for leap years, 365 for normal years.
A numeric vector of length maxdoy.
Jansson, P.-E. & Karlberg, L. (2004): "Coupled heat and mass transfer model for soil-plant-atmosphere systems." Royal Institute of Technolgy, Dept of Civil and Environmental Engineering Stockholm
plot(plant_coupmodel(0,0.2,5,121, 200, 280, 0.3, 3, 365))