Adding an FMU Participant

To add participant definitions, use the Add Participant dialog or run the AddParticipant() command for each participant. For FMU participants, set the Input File field or the InputFile argument to the *.fmu file.


Note:  You can use the same *.fmu file multiple times. For example, you might load three instances of it — that is, adding three distinct participants defined by that file.


When the dialog is used or the command is run, the participant definitions are loaded and the data model is populated with information from the *.fmu file.

Example 55: Add an Ansys participant and an FMU participant in the CLI

 
 
>>> AddParticipant(InputFile = 'cfx.scp')
 >> AddParticipant(InputFile = 'spring.fmu') 
 
 

Example 56: Add one Ansys participant and two FMU participants defined by the same file in the CLI

 
 
>>> AddParticipant(InputFile = 'cfx.scp')
>>> AddParticipant(InputFile = 'spring.fmu') 
>>> AddParticipant(InputFile = 'spring.fmu')