Variable initialization target object
OperatingPoint
objects let you save sets of data necessary to
initialize a model, manipulate this data, and then use it to initialize another model,
or the same model before another simulation run. These sets of data contain a hierarchy
of operating point Target
objects, each target consisting of a variable
value, unit, and initialization priority.
t = simscape.op.Target()
creates an empty
Target
object.
t = simscape.op.Target(
creates a value
)Target
object with the Value
property set to provided value.
t = simscape.op.Target(
creates a value
, unit
)Target
object with the Value
property set to provided value and the Unit
property set to
provided unit expression.
t = simscape.op.Target(
creates a value
, unit
, priority
)Target
object with the Value
property set to provided value, the Unit
property set to
provided unit expression, and the Priority
property set to
provided variable initialization priority.