Structure Class PARAMETER
Package:
CL-SBML
Class Precedence List:
PARAMETER, SBML-ELEMENT, SBML-BASE, STRUCTURE-CLASS, T.
Slots:
- VALUE: default value 0.0d0, type DOUBLE-FLOAT, initarg :VALUE
- UNITS: default value NIL, type (OR NULL STRING CONS), initarg :UNITS
- CONSTANT-P: default value NIL, type BOOLEAN, initarg :CONSTANT-P
Description:
The instances of this structure class represent SBML parameter definitions.
The accessors PARAMETER-VALUE, PARAMETER-UNITS, and PARAMETER-CONSTANT-P, are used to extract and set the structure fields.
To access the parameter "name" the accessor PARAMETER-NAME is available. The accessor is defined because of the inheritance of SBML-ELEMENT.
Affected By:
None.
Exceptional Situations:
None.
See Also:
SBML-ELEMENT, PARAMETER-P, PARAMETER-VALUE, PARAMETER-UNITS, PARAMETER-CONSTANT-P, and MAKE-PARAMETER.
Notes:
Types
SBML states that the values of the UNITS
field should be of type SID (SId
.) The definition here
is more liberal, as the type specifier SID is defined in terms of
SATISFIES, which is a notorious complication in
the CL type system. If the need arises, the type
specification of the slots can be made stricter.