diff --git a/R/modvegesite.R b/R/modvegesite.R index 9b6db7d..95e4700 100644 --- a/R/modvegesite.R +++ b/R/modvegesite.R @@ -1152,6 +1152,8 @@ ModvegeSite = R6Class( #' @param ... Arguments are passed on to [ModvegeSite]`$plot()`. #' @return NULL, but plots to the active device. #' +#' @seealso The different `[modvegeSite]$plot_XXX()` methods. +#' #' @md #' @export plot.ModvegeSite = function(x, ...) { diff --git a/_pkgdown.yml b/_pkgdown.yml index 6bcedfe..c087890 100644 --- a/_pkgdown.yml +++ b/_pkgdown.yml @@ -36,6 +36,7 @@ reference: - title: Analysis desc: Utilities for analysis of simulated results. - contents: + - plot.ModvegeSite - get_bias - willmott - box_smooth @@ -64,7 +65,6 @@ reference: - logger - title: Other - contents: - - ERROR - SEA - aCO2_inverse - append_to_table @@ -75,6 +75,7 @@ reference: - compare.R - create_combinations - create_example_environment + - ensure_table_columns - ensure_unique_filename - fCO2_growth_mod - fCO2_transpiration_mod @@ -88,6 +89,7 @@ reference: - get_site_name - growR_package_options - management_parameters + - make_yearDOY - metric_map - parse_year_strings - posieux_weather diff --git a/man/ModvegeParameters.Rd b/man/ModvegeParameters.Rd index bc0b762..3649841 100644 --- a/man/ModvegeParameters.Rd +++ b/man/ModvegeParameters.Rd @@ -38,6 +38,16 @@ composition. \item \code{KlGR} basic abscission rate GR (dimensionless). \item \code{maxOMDDV} organic matter digestibility in gram per gram DV. \item \code{minOMDDR} organic matter digestibility in gram per gram DR. +\item \code{CO2_growth_factor} strength of effect of CO2 concentration on growth. See +parameter \emph{b} in \code{\link[=fCO2_growth_mod]{fCO2_growth_mod()}}. +\item \code{crop_coefficient} multiplicative factor K~c~ by which +reference evapotranspiration ET~0~ has to be multiplied to get the crop +evapotranspiration ET~c~: +ET~c~ = K~c~ ET~0~ +\item \code{senescence_cap} fraction c~s~ of \emph{GRO} to which \emph{SEN} is +limited: SEN~i~^max^ = c~s~ GRO~i~ +for \emph{i} in \emph{GV}, \emph{GR}. Makes it less likely for grass population to die out. +Can be set to large values in order to effectively disable senescence capping. } } diff --git a/man/plot.ModvegeSite.Rd b/man/plot.ModvegeSite.Rd index 76b95b5..fb7ec94 100644 --- a/man/plot.ModvegeSite.Rd +++ b/man/plot.ModvegeSite.Rd @@ -17,3 +17,6 @@ NULL, but plots to the active device. \description{ This wraps the \code{ModvegeSite} instance's \code{plot()} method. } +\seealso{ +The different \verb{[modvegeSite]$plot_XXX()} methods. +}