GetPorts
get the signal ports of the active MapleSim subsystem
Calling Sequence
Parameters
Returns
Options
Description
Examples
A := MapleSim:-LinkModel();
A:-GetPorts(options)
options
-
(optional) equation(s) of the form name = value
list,list : lists of the active subsystem's ports: [InputPorts], [OutputPorts]
toplevel : true or false
Specifies whether the top-level ports should be returned regardless of the active subsystem setting. Default is false.
returnacausal : true or false
Specifies whether to also return possibly present active subsystem's acausal ports. If set to true, the procedure's return will be of the form list,list,list : [InputPorts], [OutputPorts], [AcausalPorts]. AcausalPorts is a list of lists, where each list describes ports for one acausal port and is of the form [flow variable, across variable]. Default is false.
A:-GetPorts returns lists of A's active subsystem's input and output ports and optionally, acausal ports. If no subsystem is active, or the option toplevel is specified, the command returns an empty list of the inputs and a list of A's probe names for the outputs.
The A := MapleSim:-LinkModel() statement needs to be run prior to successfully using any of the ModelObject A's export functions.
Linking to a MapleSim model (located in .msim file):
A≔MapleSim:-LinkModel⁡filename=cat⁡kernelopts⁡toolboxdir=MapleSim,/data/examples/RLCcircuit.msim:
Getting the signal ports of the active subsystem (you are at the top-level):
A:-GetPorts⁡
,Main.Probe1.Vout⁡t
Setting the active subsystem an RLC circuit subsystem:
A:-SetSubsystemName⁡RLC
Getting the signal ports of the RLC subsystem:
Main.RLC.InputSignal⁡t,Main.RLC.OutputSignal⁡t
See Also
MapleSim
MapleSim[LinkModel]
MapleSim[LinkModel][SetSubsystemName]
Download Help Document