Commit 629f1b3e authored by David's avatar David
Browse files

docs: Remove RunModel.SD from exported functions

Showing with 2 additions and 32 deletions
+2 -32
......@@ -21,7 +21,6 @@ S3method(CreateRunOptions,character)
S3method(RunModel,GR)
S3method(RunModel,GRiwrmInputsModel)
S3method(RunModel,InputsModel)
S3method(RunModel,SD)
S3method(RunModel,Supervisor)
S3method(isNodeDownstream,GRiwrm)
S3method(isNodeDownstream,GRiwrmInputsModel)
......
......@@ -50,7 +50,7 @@ CreateController <- function(supervisor, ctrl.id, Y, U, FUN){
if(!is.null(supervisor$controllers[[ctrl.id]])) {
warning("The existing controller '", ctrl.id, "' has been overwritten in the supervisor")
} else {
message("The controller has been added to the supervisor")
message("The controller '", ctrl.id, "' has been added to the supervisor")
}
supervisor$controllers[[ctrl.id]] <- ctrlr
invisible(ctrlr)
......
......@@ -5,7 +5,7 @@
#' @param ... further arguments passed to or from other methods
#'
#' @return `OutputsModel` object. See [airGR::RunModel_Lag]
#' @export
#' @noRd
#'
RunModel.SD <- function(x, RunOptions, Param, QcontribDown, ...) {
if (x$isReservoir) {
......
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/RunModel.SD.R
\name{RunModel.SD}
\alias{RunModel.SD}
\title{Run a semi-distributed model from rainfall-runoff model outputs}
\usage{
\method{RunModel}{SD}(x, RunOptions, Param, QcontribDown, ...)
}
\arguments{
\item{x}{[object of class \code{InputsModel}] used as \code{InputsModel} parameter for \link[airGR:RunModel_Lag]{airGR::RunModel_Lag}}
\item{RunOptions}{[object of class \emph{RunOptions}] see \code{\link[airGR]{CreateRunOptions}} for details}
\item{Param}{[numeric] vector of 1 parameter
\tabular{ll}{
Velocity \tab mean flow velocity [m/s]
}
}
\item{QcontribDown}{[numeric] vector or [OutputsModel] containing the time series of the runoff contribution of the downstream sub-basin}
\item{...}{further arguments passed to or from other methods}
}
\value{
\code{OutputsModel} object. See \link[airGR:RunModel_Lag]{airGR::RunModel_Lag}
}
\description{
Run a semi-distributed model from rainfall-runoff model outputs
}
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment