initialize,Model-method {SoilR} | R Documentation |
Internal method to supervise creation of objects of this class
Description
It is usually not necessary for user code to call this method.
It's purpose is to enforce some sanity checks since it gets automatically
called by new
whenever an object of this class is created
Usage
## S4 method for signature 'Model'
initialize(
.Object,
times = c(0, 1),
mat = ConstLinDecompOp(matrix(nrow = 1, ncol = 1, 0)),
initialValues = numeric(),
inputFluxes = BoundInFluxes(function(t) {
return(matrix(nrow = 1, ncol = 1, 1))
}, 0, 1),
solverfunc = deSolve.lsoda.wrapper,
pass = FALSE
)
Arguments
.Object |
no manual documentation |
times |
no manual documentation |
mat |
no manual documentation |
initialValues |
no manual documentation |
inputFluxes |
no manual documentation |
solverfunc |
no manual documentation |
pass |
no manual documentation |
[Package SoilR version 1.2.107 Index]