amici.ode_export.Constant¶
-
class
amici.ode_export.Constant(identifier, name, value)[source]¶ A Constant is a fixed variable in the model with respect to which sensitivities cannot be computed, abbreviated by k
-
__init__(identifier, name, value)[source] Create a new Expression instance.
- Parameters
identifier (
sympy.core.symbol.Symbol) – unique identifier of the Constantname (
str) – individual name of the Constant (does not need to be unique)value (
numbers.Number) – numeric value
Methods Summary
__init__(identifier, name, value)Create a new Expression instance.
get_id()ModelQuantity identifier
get_name()ModelQuantity name
get_val()ModelQuantity value
Methods
-
__init__(identifier, name, value)[source]¶ Create a new Expression instance.
- Parameters
identifier (
sympy.core.symbol.Symbol) – unique identifier of the Constantname (
str) – individual name of the Constant (does not need to be unique)value (
numbers.Number) – numeric value
-
get_id()¶ ModelQuantity identifier
- Return type
- Returns
identifier of the ModelQuantity
-
get_val()¶ ModelQuantity value
- Return type
- Returns
value of the ModelQuantity
-