R/example4.R

Defines functions example4

Documented in example4

#' Example ODE system 4
#'
#' The derivative function of an example two-dimensional autonomous ODE system.
#'
#' \code{example4} evaluates the derivatives of the following coupled ODE system
#' at the point \ifelse{html}{\out{(<i>t</i>, <i>x</i>, <i>y</i>)}}{
#' \eqn{(t, x, y)}}:
#'
#' \ifelse{html}{\out{<i>dx</i>/<i>dt</i> = -<i>x</i>,
#' <i>dy</i>/<i>dt</i> = 4<i>x</i>.}}{\deqn{\frac{dx}{dt} = -x,
#' \frac{dy}{dt} = 4x.}}
#'
#' Its format is designed to be compatible with \code{\link[deSolve]{ode}} from
#' the \code{\link[deSolve]{deSolve}} package.
#'
#' @param t The value of \ifelse{html}{\out{<i>t</i>}}{\eqn{t}}, the independent
#' variable, to evaluate the derivative at. Should be a
#' \code{\link[base]{numeric}} \code{\link[base]{vector}} of
#' \code{\link[base]{length}} one.
#' @param y The values of \ifelse{html}{\out{<i>x</i>}}{\eqn{x}} and
#' \ifelse{html}{\out{<i>y</i>}}{\eqn{y}}, the dependent variables, to evaluate
#' the derivative at. Should be a \code{\link[base]{numeric}}
#' \code{\link[base]{vector}} of \code{\link[base]{length}} two.
#' @param parameters The values of the parameters of the system. Not used here.
#' @return Returns a \code{\link[base]{list}} containing the values of the two
#' derivatives at
#' \ifelse{html}{\out{(<i>t</i>, <i>x</i>, <i>y</i>)}}{\eqn{(t, x, y)}}.
#' @author Michael J Grayling
#' @seealso \code{\link[deSolve]{ode}}
#' @examples
#' # Plot the velocity field, nullclines and several trajectories
#' example4_flowField  <- flowField(example4,
#'                                  xlim   = c(-3, 3),
#'                                  ylim   = c(-5, 5),
#'                                  points = 19,
#'                                  add    = FALSE)
#' y0                  <- matrix(c(1, 0, -1, 0, 2, 2,
#'                                 -2, 2, -3, -4), 5, 2,
#'                               byrow = TRUE)
#' example4_nullclines <- nullclines(example4,
#'                                   xlim = c(-3, 3),
#'                                   ylim = c(-5, 5))
#' example4_trajectory <- trajectory(example4,
#'                                   y0   = y0,
#'                                   tlim = c(0,10))
#' @export
example4 <- function(t, y, parameters){
  list(c(-y[1], 4*y[2]))
}

Try the phaseR package in your browser

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

phaseR documentation built on Sept. 2, 2022, 5:07 p.m.