R/exogeneous.R

Defines functions ExogenousForcing

Documented in ExogenousForcing

# generic methods for exogenous forcing

#' @title Modify parameters due to exogenous forcing
#' @description This method dispatches on the type of `pars$EXpar`.
#' @param t current simulation time
#' @param y state vector
#' @param pars an [environment]
#' @return none
#' @export
ExogenousForcing <- function(t, y, pars) {
  UseMethod("ExogenousForcing", pars$EXpar)
}

Try the exDE package in your browser

Any scripts or data that you put into this service are public.

exDE documentation built on Nov. 18, 2022, 5:08 p.m.