Nothing
#' automatic title
#'
#' @param sourceIndex no manual documentation
#' @param rate_constant no manual documentation
#' @autocomment These comments were created by the auto_comment_roclet by
#' inspection of the code. You can use the "update_auto_comment_roclet" to
#' automatically adapt them to changes in the source code. This will remove
#' `@param` tags for parameters that are no longer present in the source code
#' and add `@param` tags with a default description for yet undocumented
#' parameters. If you remove this `@autocomment` tag your comments will no
#' longer be touched by the "update_autocomment_roclet".
setMethod(
'ConstantOutFluxRate_by_PoolIndex'
,signature=signature(
sourceIndex='numeric' # this also covers the preferred argument class 'PoolIndex' since it contains integer and so also numeric
,rate_constant='numeric'
)
,def=function(sourceIndex,rate_constant){
if (rate_constant<0){
stop(
"Negative rate constant.
A rate_constant defines a flux F with F = rate_constant*pool_content.
Since fluxes have to be positive and pool contents are positive
rate constants have to be positive too."
)
}
rate=new(
'ConstantOutFluxRate_by_PoolIndex'
,sourceIndex=PoolIndex(id=sourceIndex)
,rate_constant=rate_constant
)
rate
}
)
#' new object with the source pool id converted to a PoolName if necessary
#'
#' This method exists only for classes that do not contain functions of
#' the state_variables since we cannot automatically translate functions
#' with a state vector arguments to functions of the respective state variables
#' which would require symbolic computations.
#' The reverse direction is always possible and is therefore
#' the preferred way to input
#' rate functions that depend on state variables.
#' @param obj an object of class ConstantOutFluxRate_by_PoolIndex
#' @param poolNames names of pools
setMethod(
f="by_PoolName",
signature=c(obj='ConstantOutFluxRate_by_PoolIndex'),
def=function(obj,poolNames){
new(
'ConstantOutFluxRate_by_PoolName'
,sourceName=PoolName(id=obj@sourceIndex,poolNames)
,rate_constant=obj@rate_constant
)
}
)
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.