R/plantcoupmodel.R
plant_coupmodel.Rd
Creates a daily sequence for one year from parameters
plant_coupmodel(
minval,
maxval,
doy.incr,
doy.max,
doy.min,
shape.incr,
shape.decr,
maxdoy
)
Minimum value.
Maximum value.
Day of year when increasing from minval
to
maxval
begins.
Day of year when maxval
is reached.
Day of year when minval
is reached again.
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,5, 121, 200, 280, 0.3, 3, 365))