jones_model {ChillModels}R Documentation

Jones Model

Description

Quantifies the chill accumulation by means of converting temperatures to exponential units temperature.

Usage

jones_model(x, total = TRUE)

Arguments

x

Vector containing temperature values (Celsius-degree).

total

TRUE Shows the total value of accumulation, FALSE shows the value of chill for each temperature (TRUE is default).

Value

The function returns values the chill for each temperature of vector (Total = FALSE), or returns the chill accumulation (Total = TRUE).

References

JONES, H. G., HILLIS, R. M., GORDON, S. L., and BRENNAN, R. M. (2013). An approach to the determination of winter chill requirements for different Ribes cultivars. Plant. Biol.

Examples

 
 x <- rnorm(500, 8, 5)
jones_model(x)
jones_model(x, FALSE) 
 

[Package ChillModels version 1.0.2 Index]