ListSubsystems - MapleSim Help

Online Help

All Products    Maple    MapleSim


ListSubsystems

list subsystems defined in the linked model

 

Calling Sequence

Parameters

Returns

Options

Description

Examples

Calling Sequence

A := MapleSim:-LinkModel();

A:-ListSubsystems(options)

Parameters

options

-

(optional) equation(s) of the form name = value

Returns

• 

list of strings : list of subsystem names

Options

• 

localonly : true or false

  

Specifies whether to return subsystems that are defined only locally in the model. If localonly = false then the names of all submodels are also returned. Default is true.

Description

• 

A:-ListSubsystems returns the names of the subsystems defined in the linked model.

• 

The A := MapleSim:-LinkModel() statement needs to be run prior to successfully using any of the ModelObject A's export functions.

Examples

Linking to a MapleSim model (located in .msim file):

AMapleSim:-LinkModelfilename=catkerneloptstoolboxdir=MapleSim,/data/examples/RLCcircuit.msim:

Listing subsystems defined in the model:

A:-ListSubsystems

RLC

(1)

Listing all subsystems in the model:

A:-ListSubsystemslocalonly=false

S1,RLC,RLC.C1,RLC.G2,RLC.R1,RLC.I1,RLC.SC1,RLC.PS1

(2)

See Also

MapleSim

MapleSim[LinkModel]

MapleSim[LinkModel][GetSubsystemName]

MapleSim[LinkModel][SetSubsystemName]