sbiosteadystate
Find steady state of SimBiology model
Syntax
Description
[
attempts to find a steady state of a SimBiology® model, success
, variant_out
]
= sbiosteadystate(model
)model
. The function returns
success
, which is true
if a steady state
was found, and a SimBiology
Variant object
,
variant_out
, with all nonconstant species, compartments,
and parameters of the model having the steady-state values. If a steady state was
not found, then the success
is false
and
variant_out
contains the last values found by the
algorithm.
[
applies the alternate quantity values stored in a variant object or vector of
objects, success
, variant_out
]
= sbiosteadystate(model
, variant_in
)variant_in
, to the model before trying to find the
steady-state values.
[
also applies a success
, variant_out
]
= sbiosteadystate(model
, variant_in
, scheduleDose
)ScheduleDose
object or vector of schedule doses
scheduleDose
to the corresponding model quantities before
trying to find the steady state values. Only doses at time = 0 are allowed, that is,
the dose time of each dose object must be 0. To specify a dose without specifying a
variant, set variant_in
to an empty array,
[]
.
[
also returns a SimBiology model, success
, variant_out
, model_out
]
= sbiosteadystate(model
,___)model_out
that is a copy of the input
model
with the states set to the steady-state solution that
was found. Also, model_out
has all initial assignment rules
disabled.
[
also returns the exit information about the steady state computation.success
, variant_out
, model_out
, exitInfo
]
= sbiosteadystate(model
,___)
[___] = sbiosteadystate(___,
uses
additional options specified by one or more Name,Value
)Name,Value
pair
arguments.
Examples
Input Arguments
Name-Value Arguments
Output Arguments
More About
Version History
Introduced in R2016a
See Also
sbiosimulate
| sbiovariant
| sbiomodel
| sbioaccelerate
| Model object
| ScheduleDose
object
| Variant object
| commit