ModvegeSite {growR}R Documentation

ModvegeSite

Description

Implements the ModVege grass growth model based off of Jouven et al. (2006).

This class contains model and site parameters and state variables as attributes and has methods for running ModVege with weather and management input.

Use the run() method to carry out a simulation for a given year. The results are stored in the state variables in this instance and can be written to file using write_output().

Model variables

See Jouven et al. (2006) for a thorough description of all model variables.

State Variables

Initial conditions

Public fields

time_step

Used time step in the model in days (untested).

state_variable_names

Vector containing the names of the model's state variables.

n_state_variables

Number of state variables.

version

Version number of the growR package. Is written into output files.

site_name

Name of the site to be simulated.

run_name

Name of the simulation run. Used to distinguish between different runs at the same site.

year

Year to be simulated.

days_per_year

Number of days in this year.

j_start_of_growing_season

Index (DOY) of the day the growing season was determined to begin.

cut_height

Height of remaining grass after cut in m.

parameters

A ModvegeParameters object.

determine_cut

Function used to decide whether a cut occurs on a given DOY. Is overloaded depending on whether management data is provided or not.

cut_DOYs

List of DOYs on which a cut occurred.

cut_during_growth_preriod

Boolean to indicate whether a cut occurred during the growth period, in which case reproductive growth is stopped.

last_DOY_for_initial_cut

autocut Start cutting after this DOY, even if yield target is not reached.

max_cut_period

autocut Maximum period to wait between subsequent cuts.

dry_precipitation_limit

autocut Maximum amount of allowed precipitation (mm) to consider a day.

dry_days_before_cut

autocut Number of days that shold be dry before a cut is made.

dry_days_after_cut

autocut Number of days that shold be dry after a cut is made.

max_cut_delay

autocut Number of days a farmer is willing to wait for dry conditions before a cut is made anyways.

cut_delays

autocut Vector to keep track of cut delay times. wait for dry conditions before a cut is made anyways.

dry_window

autocut Logical that indicates if DOY at index is considered dry enough to cut.

target_biomass

autocut Biomass amount that should to be reached by given DOY for a cut to be made.

end_of_cutting_season

autocut Determined DOY after which no more cuts are made.

BM_after_cut

autocut Amount of biomass that remains after a cut (determined through cut_height and biomass densities BDGV, BDDV, BDGR, BDDR).

weather

A WeatherData object.

management

A ManagementData object. If its is_empty field is TRUE, the autocut routine will be employed.

stubble_height

float. Minimum height the grass can assume. The biomass will not fall below that height. This can and should therefore be smaller than self$cut_height.

Active bindings

stubble_height

float. Minimum height the grass can assume. The biomass will not fall below that height. This can and should therefore be smaller than self$cut_height.

Methods

Public methods


Method new()

Constructor

Usage
ModvegeSite$new(parameters, site_name = "-", run_name = "-")
Arguments
parameters

A ModvegeParameters object.

site_name

string Name of the simulated site.

run_name

string Name of the simulation run. Used to differentiate between different simulation conditions at the same site. Defaults to "-", which indicates no specific run name.


Method get_weather()

Return weather data if it exists

Usage
ModvegeSite$get_weather()
Returns

The WeatherData object, if it exists.


Method get_management()

Return management data if it exists

Usage
ModvegeSite$get_management()
Returns

The ManagementData object, if it exists.


Method determine_cut_from_input()

Read from the input whether a cut occurs on day DOY.

Usage
ModvegeSite$determine_cut_from_input(DOY)
Arguments
DOY

Integer day of the year for which to check.

Returns

Boolean TRUE if a cut happens on day DOY.


Method determine_cut_automatically()

Decide based on simple criteria whether day of year DOY would be a good day to cut.

This follows an implementation described in Petersen, Krischan, David Kraus, Pierluigi Calanca, Mikhail A. Semenov, Klaus Butterbach-Bahl, and Ralf Kiese. “Dynamic Simulation of Management Events for Assessing Impacts of Climate Change on Pre-Alpine Grassland Productivity.” European Journal of Agronomy 128 (August 1, 2021): 126306. https://doi.org/10.1016/j.eja.2021.126306.

The decision to cut is made based on two criteria. First, it is checked whether a target biomass is reached on given DOY. The defined target depends on the DOY and is given through :func:get_target_biomass. If said biomass is present, return TRUE.

Otherwise, it is checked whether a given amount of time has passed since the last cut. Depending on whether this is the first cut of the season or not, the relevant parameters are :int:last_DOY_for_initial_cut and :int:max_cut_period. If that amount of time has passed, return TRUE, otherwise return FALSE.

Usage
ModvegeSite$determine_cut_automatically(DOY)
Arguments
DOY

Integer day of the year for which to make a cut decision.

Returns

Boolean TRUE if a cut happens on day DOY.


Method get_target_biomass()

Get target value of biomass on given DOY, which determines whether a cut is to occur.

The regression for the target biomass is based on Fig. S2 in the supplementary material of Petersen, Krischan, David Kraus, Pierluigi Calanca, Mikhail A. Semenov, Klaus Butterbach-Bahl, and Ralf Kiese. “Dynamic Simulation of Management Events for Assessing Impacts of Climate Change on Pre-Alpine Grassland Productivity.” European Journal of Agronomy 128 (August 1, 2021): 126306. https://doi.org/10.1016/j.eja.2021.126306.

A refinement to expected yield as function of altitude has been implemented according to Table 1a in Huguenen-Elie et al. "Düngung von Grasland", Agrarforschung Schweiz, 8, (6), 2017, https://www.agrarforschungschweiz.ch/2017/06/9-duengung-von-grasland-grud-2017/

Usage
ModvegeSite$get_target_biomass(DOY, intensity = "high")
Arguments
DOY

Integer day of the year to consider.

intensity

One of ("high", "middle", "low") specifying management intensity..

Returns

target Biomass (kg / ha) that should be reached on day DOY for this management intensity.


Method run()

Carry out a ModVege simulation for one year.

Usage
ModvegeSite$run(year, weather, management)
Arguments
year

Integer specifying the year to consider.

weather

Weather list for given year as returned by WeatherData⁠$get_weather_for_year⁠.

management

Management list for given year as provided by ModvegeEnvironment⁠$get_environment_for_year()⁠.

Returns

None Fills the state variables of this instance with the simulated values. Access them programmatically or write them to file using write_output().


Method write_output()

Write values of ModVege results into given file.

A header with metadata is prepended to the actual data.

Usage
ModvegeSite$write_output(filename, force = FALSE)
Arguments
filename

Path or name of filename to be created or overwritten.

force

Boolean If TRUE, do not prompt user before writing.

Returns

None Writes simulation results to file filename.


Method set_parameters()

Savely update the values in self$parameters.

This is just a shorthand to the underlying ModvegeParameters object's set_parameters() function. Special care is taken to account for potential changes to functional group weights.

Usage
ModvegeSite$set_parameters(params)
Arguments
params

List of name-value pairs of the parameters to update.

Returns

None Updates this object's parameter values.


Method plot()

Create an overview plot for 16 state variables.

Creates a simple base R plot showing the temporal evolution of 16 modeled state variables.

Can only be sensibly run after a simulation has been carried out, i.e. after this instance's run() method has been called.

Usage
ModvegeSite$plot(...)
Arguments
...

Further arguments are discarded.

Returns

NULL Creates a plot of the result in the active device.


Method plot_bm()

Create an overview plot for biomass.

Creates a simple base R plot showing the BM with cutting events and, if applicable, target biomass, dBM, cBM and hvBM. Can only be sensibly run after a simulation has been carried out, i.e. after this instance's run() method has been called.

Usage
ModvegeSite$plot_bm(smooth_interval = 28, ...)
Arguments
smooth_interval

Int. Number of days over which the variable dBM is smoothened.

...

Further arguments are discarded.

Returns

NULL Creates a plot of the result in the active device.


Method plot_limitations()

Create an overview plot of limiting factors.

Creates a simple base R plot showing the different environmental limitation functions over time. Can only be sensibly run after a simulation has been carried out, i.e. after this instance's run() method has been called.

Usage
ModvegeSite$plot_limitations(...)
Arguments
...

Further arguments are discarded.

Returns

NULL Creates a plot of the result in the active device.


Method plot_water()

Create an overview plot of the water balance.

Creates a simple base R plot showing different variables pertaining to the water balance, namely water reserves WR, actual evapotranspiration AET, leaf area index LAI and LAI of the green vegetative compartment LAIGV.

Can only be sensibly run after a simulation has been carried out, i.e. after this instance's run() method has been called.

Usage
ModvegeSite$plot_water(...)
Arguments
...

Further arguments are discarded.

Returns

NULL Creates a plot of the result in the active device.


Method plot_growth()

Create an overview plot of growth dynamics.

Creates a simple base R plot showing different variables pertaining to the growth dynamics, namely potential growth PGRO, effective growth GRO, the reproductive function REP and the temperature sum ST.

Can only be sensibly run after a simulation has been carried out, i.e. after this instance's run() method has been called.

Usage
ModvegeSite$plot_growth(...)
Arguments
...

Further arguments are discarded.

Returns

NULL Creates a plot of the result in the active device.


Method plot_var()

Plot the temporal evolution of a modeled state variable.

Usage
ModvegeSite$plot_var(var, ...)
Arguments
var

String. Name of the state variable to plot.

...

Further arguments are passed to the base plot() function.

Returns

None, but plots to the current device.


Method clone()

The objects of this class are cloneable with this method.

Usage
ModvegeSite$clone(deep = FALSE)
Arguments
deep

Whether to make a deep clone.

References

Jouven M, Carrère P, Baumont R (2006). “Model Predicting Dynamics of Biomass, Structure and Digestibility of Herbage in Managed Permanent Pastures. 1. Model Description.” Grass and Forage Science, 61(2), 112–124. ISSN 1365-2494, doi:10.1111/j.1365-2494.2006.00515.x, https://onlinelibrary.wiley.com/doi/abs/10.1111/j.1365-2494.2006.00515.x.

See Also

autocut

get_target_biomass()

ModvegeParameters$set_parameters()


[Package growR version 1.2.0 Index]