Class sysc::SystemCoupling
Definition: SystemCoupling.hpp (line 47)
Provide the main class for interacting with the System Coupling participant library.
For co-simulation, this class maintains the socket connection to the System Coupling solver. The coupling participant will need to provide host and port information for existing System Coupling server, as well as the name of this coupling participant.
For mapping, an instance of this class should be created to perform mapping.
There should only be one instance of this System Coupling class.
Members
- addCouplingInterface
- addCouplingInterface
- addInputParameter
- addIntegerAttribute
- addOutputParameter
- addRealAttribute
- addRegion
- addStringAttribute
- checkMeshValidity
- checkMeshValidity
- completeCouplingSetup
- completeCouplingSetup
- completeSetup
- disconnect
- doIteration
- doTimeStep
- fatalError
- getAddedCouplingInterface
- getAddedRegion
- getCurrentTimeStep
- getInputParameter
- getIntegerAttribute
- getIntegerAttributeValue
- getNumCouplingInterfaces
- getNumInputParameters
- getNumIntegerAttributes
- getNumOutputParameters
- getNumRealAttributes
- getNumRegions
- getNumStringAttributes
- getOutputParameter
- getParameterValue
- getRealAttribute
- getRealAttributeValue
- getRegion
- getSetupInfo
- getSolutionControl
- getStringAttribute
- getStringAttributeValue
- initializeAnalysis
- operator=
- operator=
- registerDoesTargetDataExist
- registerDoesTargetDataExist
- registerInputComplexScalarDataAccess
- registerInputComplexScalarDataAccess
- registerInputComplexVectorDataAccess
- registerInputComplexVectorDataAccess
- registerInputScalarDataAccess
- registerInputScalarDataAccess
- registerInputScalarDataAccess
- registerInputScalarVariableAccess
- registerInputVectorDataAccess
- registerInputVectorDataAccess
- registerInputVectorDataAccess
- registerInputVectorVariableAccess
- registerOutputComplexScalarDataAccess
- registerOutputComplexScalarDataAccess
- registerOutputComplexVectorDataAccess
- registerOutputComplexVectorDataAccess
- registerOutputScalarDataAccess
- registerOutputScalarDataAccess
- registerOutputScalarDataAccess
- registerOutputScalarVariableAccess
- registerOutputVectorDataAccess
- registerOutputVectorDataAccess
- registerOutputVectorDataAccess
- registerOutputVectorVariableAccess
- registerPointCloudAccess
- registerPointCloudAccess
- registerPointCloudAccess
- registerRestartPointCreation
- registerSurfaceMeshAccess
- registerSurfaceMeshAccess
- registerSurfaceMeshAccess
- registerTargetDataCreation
- registerTargetDataCreation
- registerVolumeMeshAccess
- registerVolumeMeshAccess
- registerVolumeMeshAccess
- registerZoneCountAccess
- setParameterValue
- SystemCoupling
- SystemCoupling
- SystemCoupling
- SystemCoupling
- SystemCoupling
- SystemCoupling
- SystemCoupling
- SystemCoupling
- updateInputs
- updateOutputs
- writeResults
- writeSetupFile
- ~SystemCoupling
Public functions
Function SystemCoupling
sysc::SystemCoupling::SystemCoupling()
Provide a (default) constructor for the SystemCoupling class for non-cosimulation mode.
This is a default constructor that will initialize the participant library in standalone (non-cosimulation) mode.
When running in parallel MPI environment, the parallel communication within the participant library will use MPI_COMM_WORLD communicator.
Return type:
Function SystemCoupling
sysc::SystemCoupling::SystemCoupling(std::size_t mpiCommunicator)
Provide a constructor for the SystemCoupling class for non-cosimulation mode with a custom MPI communicator.
Parameters:
- mpiCommunicator: MPI communicator cast to std::size_t.
This will initialize the participant library in standalone mode and will use the provided MPI communicator for all parallel communication.
Parameters:
- std::size_t mpiCommunicator
Return type:
Function SystemCoupling
sysc::SystemCoupling::SystemCoupling(const ParticipantInfo &participantInfo)
Provide a constructor for the SystemCoupling class with a custom struct representing the default input parameters.
Parameters:
- participantInfo: The struct containing the attributes needed to connect to System Coupling: scHost, scPort, participantName, etc.
Parameters:
- const ParticipantInfo & participantInfo
Return type:
Function SystemCoupling
sysc::SystemCoupling::SystemCoupling(const ParticipantInfo &participantInfo, std::size_t mpiCommunicator)
Provide a constructor for the SystemCoupling class with an mpiCommunicator object set to non default.
Parameters:
- participantInfo: The struct containing the attributes needed to connect to System Coupling: scHost, scPort, participantName, etc.
- mpiCommunicator: MPI communicator cast to std::size_t.
Parameters:
- const ParticipantInfo & participantInfo
- std::size_t mpiCommunicator
Return type:
Function SystemCoupling
sysc::SystemCoupling::SystemCoupling(const std::string &scHost, unsigned short scPort, const std::string &participantName, const std::string &buildInformation="Unknown")
Provide a constructor for the SystemCoupling class for cosimulation mode.
Initializes the participant library in cosimulation mode. It establishes the connection to the System Coupling solver.
The participant solver must have obtained the host and port information from System Coupling prior to creating this object (e.g. via an input argument when participant application was started). Copy constructor and assignment operators are disabled to avoid copying the created object.
Parameters:
- scHost: Name of the host on which System Coupling is running.
- scPort: Port number on which System Coupling is listening for participant connections.
- participantName: Name of this participant (e.g. "MAPDL-1")
- buildInformation: Information about the build of this participant solver. This parameter is optional - default is "Unknown".
Parameters:
- const std::string & scHost
- unsigned short scPort
- const std::string & participantName
- const std::string & buildInformation = "Unknown"
Return type:
Function SystemCoupling
sysc::SystemCoupling::SystemCoupling(const std::string &scHost, unsigned short scPort, const std::string &participantName, std::size_t mpiCommunicator, const std::string &buildInformation)
Provide a constructor for the SystemCoupling class for cosimulation mode with a custom MPI communicator.
This constructor works the same way as the one above (see above), but it takes in one additional argument, which is the MPI communicator, cast as std::size_t.
Parameters:
- scHost: Name of the host on which System Coupling is running.
- scPort: Port number on which System Coupling is listening for participant connections.
- participantName: Name of this participant (e.g. "MAPDL-1")
- mpiCommunicator: MPI communicator cast to std::size_t.
- buildInformation: Information about the build of this participant solver. This parameter is optional - default is "Unknown".
Parameters:
- const std::string & scHost
- unsigned short scPort
- const std::string & participantName
- std::size_t mpiCommunicator
- const std::string & buildInformation
Return type:
Function ~SystemCoupling
sysc::SystemCoupling::~SystemCoupling()
Return type:
Function completeSetup
void sysc::SystemCoupling::completeSetup(const sysc::SetupInfo &setupInfo)
Provide a function to notify System Coupling that setup can be completed.
After this function is called, coupled analysis setup can no longer be updated, i.e. regions and variables cannot be changed. Participant should also pass in sysc::SetupInfo struct to provide additional information about the setup, such as whether steady or transient analysis is to be performed.
Once the setup is complete, any subsequent call to complete the setup will have no effect.
Parameters:
- const sysc::SetupInfo & setupInfo
Return type: void
Function initializeAnalysis
void sysc::SystemCoupling::initializeAnalysis()
Provide a function to notify System Coupling that analysis initialization can be completed.
This function must be called after registering mesh and variable data access and prior to entering the coupled analysis loop.
If this function is called before the coupled analysis is complete, it will automatically complete the coupled analysis and assume steady analysis type.
Return type: void
Function getCurrentTimeStep
sysc::TimeStep sysc::SystemCoupling::getCurrentTimeStep()
Provide a function to get current time step.
Returns:
Returns a time step struct, which contains time step number, start time, and time step size for the current coupling time step.
A default value (time step number 0, start time 0.0, time step size 0.0) is returned if this function is called outside the coupled analysis loop or if the analysis is steady.
Return type: sysc::TimeStep
Function doIteration
bool sysc::SystemCoupling::doIteration()
Provide a function to check whether to do a coupling iteration.
This function returns true if another coupling iteration is required, otherwise it returns false.
Return type: bool
Function doTimeStep
bool sysc::SystemCoupling::doTimeStep()
Provide a function to check whether to do a coupling time step.
This function returns true if another coupling time step is required, otherwise it returns false.
This function should be called to check if another coupling time step should be done. If the previous coupling time step is finished and another time step should be performed, then calling this function will tell System Coupling that the coupling participant is going to advance to the next time step (i.e. calling doTimeStep() will cause doIteration() to change from returning false to returning true, under the conditions described above).
This function only makes sense for transient analysis. It will always return false for steady analysis.
Return type: bool
Function updateInputs
void sysc::SystemCoupling::updateInputs()
Provide a function to update the participants input variables.
Solution data for all input variables will be updated. Depending on the defined interfaces, data will be transferred from another coupling participant solver, or from the opposite side of the same-participant coupling interface.
When doing cosimulation, this function must be called from inside the coupled analysis loop. It tells System Coupling that the participant is about to begin its solver iterations. All input variable data will be up-to-date after returning from this function. If any local coupling interfaces are defined, all corresponding input variable data will also be updated.
When doing same-participant mapping only (without cosimulation), this function should be called whenever input data needs to be brought up-to-date.
Return type: void
Function updateOutputs
void sysc::SystemCoupling::updateOutputs(ConvergenceStatus status)
Provide a function to update the participants output variables.
This function must be called from inside the coupled analysis loop. It tells System Coupling that the participant has finished performing its solver iterations.
Parameters:
- status: Status of participant solver after its solver iteration(s). See ConvergenceStatus for details
Parameters:
- ConvergenceStatus status
Return type: void
Function disconnect
void sysc::SystemCoupling::disconnect()
Provide a function to end the analysis and disconnect from System Coupling.
Return type: void
Function fatalError
void sysc::SystemCoupling::fatalError(const std::string &errorMessage)
Provide a function to notify System Coupling about a fatal error.
Parameters:
- const std::string & errorMessage
Return type: void
Function addRegion
void sysc::SystemCoupling::addRegion(const Region ®ion)
Provide a function to add a region that could be used in a coupled analysis.
Parameters:
- region: - Region to be added.
If this region has already been added, then this call will have no effect.
If a different region with the same has already been added, then a runtime error will be thrown.
If the region name contains invalid characters, then a runtime error will be thrown.
Parameters:
- const Region & region
Return type: void
Function addInputParameter
void sysc::SystemCoupling::addInputParameter(Parameter parameter)
Provide a method to add an input parameter that could be used in a coupled analysis.
If this parameter has already been added as an input solver parameter, then this call will have no effect.
If a different parameter with the same name has already been added as an input parameter, then a runtime error will be thrown.
If a parameter with the same name has already been added as an output parameter, then a runtime error will be thrown.
If the parameter name contains invalid characters, a runtime error will be thrown.
Parameters:
- parameter: Parameter whose values are provided by System Coupling and consumed by the participant.
Parameters:
- Parameter parameter
Return type: void
Function addOutputParameter
void sysc::SystemCoupling::addOutputParameter(Parameter parameter)
Provide a method to add an output parameter that could be used in a coupled analysis.
If this parameter has already been added as an output solver parameter, then this call will have no effect.
If a different parameter with the same name has already been added as an output parameter, then a runtime error will be thrown.
If a parameter with the same name has already been added as an input parameter, then a runtime error will be thrown.
If the parameter name contains invalid characters, a runtime error will be thrown.
Parameters:
- parameter: Parameter whose values are provided by System Coupling and consumed by the participant.
Parameters:
- Parameter parameter
Return type: void
Function addRealAttribute
void sysc::SystemCoupling::addRealAttribute(const RealAttribute &realAttribute)
Provide a method to add a real attribute that could be used in a coupled analysis.
If this attribute has already been added as a real attribute, then this call will have no effect.
If a different real attribute with the same name has already been added as a real attribute, then a runtime error will be thrown.
If the real attribute name contains invalid characters, a runtime error will be thrown.
Parameters:
- realAttribute: real attribute whose values are provided by System Coupling and consumed by the participant.
Parameters:
- const RealAttribute & realAttribute
Return type: void
Function addIntegerAttribute
void sysc::SystemCoupling::addIntegerAttribute(const IntegerAttribute &integerAttribute)
Provide a method to add an integer attribute that could be used in a coupled analysis.
If this attribute has already been added as an integer attribute, then this call will have no effect.
If a different integer attribute with the same name has already been added as an integer attribute, then a runtime error will be thrown.
If the integer attribute name contains invalid characters, a runtime error will be thrown.
Parameters:
- integerAttribute: integer attribute whose values are provided by System Coupling and consumed by the participant.
Parameters:
- const IntegerAttribute & integerAttribute
Return type: void
Function addStringAttribute
void sysc::SystemCoupling::addStringAttribute(const StringAttribute &stringAttribute)
Provide a method to add a string attribute that could be used in a coupled analysis.
If this attribute has already been added as an string attribute, then this call will have no effect.
If a different string attribute with the same name has already been added as an string attribute, then a runtime error will be thrown.
If the string attribute name contains invalid characters, a runtime error will be thrown.
Parameters:
- stringAttribute: string attribute whose values are provided by System Coupling and consumed by the participant.
Parameters:
- const StringAttribute & stringAttribute
Return type: void
Function addCouplingInterface
void sysc::SystemCoupling::addCouplingInterface(const CouplingInterface &couplingInterface)
Provide a function to add a coupling interface.
Parameters:
- couplingInterface: - coupling interface to be added.
Data transfers will be automatically created. If a variable is defined as an output on all regions on one side of the interface and as an input on all regions on the opposite side of the interface, then the data transfer will be added for this variable.
If this coupling interface has already been added, then this call will have no effect.
If a different coupling interface with the same has already been added, then a runtime error will be thrown.
If the coupling interface name contains invalid characters, then a runtime error will be thrown.
See sysc::CouplingInterface for more details.
Parameters:
- const CouplingInterface & couplingInterface
Return type: void
Function addCouplingInterface
void sysc::SystemCoupling::addCouplingInterface(const CouplingInterface &couplingInterface, bool autoGenerateTransfers)
Provide a function to add a coupling interface.
Parameters:
- couplingInterface: - coupling interface to be added.
- autoGenerateTransfers: - flag whether to automatically create data transfers.
If this coupling interface has already been added, then this call will have no effect.
If a different coupling interface with the same has already been added, then a runtime error will be thrown.
If the coupling interface name contains invalid characters, then a runtime error will be thrown.
If autoGenerateTransfers is true, then the data transfers are generated automatically according to the following rule: if a variable is defined as an output on all regions on one side of the interface and as an input on all regions on the opposite side of the interface, then the data transfer will be added for this variable.
See sysc::CouplingInterface for more details.
Parameters:
- const CouplingInterface & couplingInterface
- bool autoGenerateTransfers
Return type: void
Function getParameterValue
double sysc::SystemCoupling::getParameterValue(const ParameterName ¶meterName)
Provide a function to get a Parameter value.
Parameters:
- parameterName: - name of the parameter.
Parameters:
- const ParameterName & parameterName
Return type: double
Function setParameterValue
void sysc::SystemCoupling::setParameterValue(const ParameterName ¶meterName, double value)
Provide a function to set a Parameter value.
Parameters:
- parameterName: - name of the parameter.
- value: - value of the parameter.
Parameters:
- const ParameterName & parameterName
- double value
Return type: void
Function getRealAttributeValue
double sysc::SystemCoupling::getRealAttributeValue(const AttributeName &attributeName)
Provide a function to get a RealAttribute value.
Parameters:
- attributeName: - name of the real attribute.
Parameters:
- const AttributeName & attributeName
Return type: double
Function getIntegerAttributeValue
int64_t sysc::SystemCoupling::getIntegerAttributeValue(const AttributeName &attributeName)
Provide a function to get an IntegerAttribute value.
Parameters:
- attributeName: - name of the integer attribute.
Parameters:
- const AttributeName & attributeName
Return type: int64_t
Function getStringAttributeValue
std::string sysc::SystemCoupling::getStringAttributeValue(const AttributeName &attributeName)
Provide a function to get a StringAttribute value.
Parameters:
- attributeName: - name of the string attribute.
Parameters:
- const AttributeName & attributeName
Return type: std::string
Function registerInputScalarDataAccess
void sysc::SystemCoupling::registerInputScalarDataAccess(InputScalarDataAccess *dataAccess)
Provide a function to register input scalar data access.
Parameters:
- dataAccess: - a pointer to the function that conforms to sysc::InputScalarDataAccess prototype.
Parameters:
- InputScalarDataAccess * dataAccess
Return type: void
Function registerInputScalarDataAccess
void sysc::SystemCoupling::registerInputScalarDataAccess(OpaqueDataAccess opaqueDataAccess, InputScalarDataAccessWithPointer *dataAccess)
Provide a function to register input scalar data access.
Parameters:
- opaqueDataAccess: - a pointer that is passed into the callback function.
- dataAccess: - a pointer to the function that conforms to sysc::InputScalarDataAccessWithPointer prototype.
Parameters:
- OpaqueDataAccess opaqueDataAccess
- InputScalarDataAccessWithPointer * dataAccess
Return type: void
Function registerInputVectorDataAccess
void sysc::SystemCoupling::registerInputVectorDataAccess(InputVectorDataAccess *dataAccess)
Provide a function to register input vector data access.
Parameters:
- dataAccess: - a pointer to the function that conforms to sysc::InputVectorDataAccess function prototype.
Parameters:
- InputVectorDataAccess * dataAccess
Return type: void
Function registerInputVectorDataAccess
void sysc::SystemCoupling::registerInputVectorDataAccess(OpaqueDataAccess opaqueDataAccess, InputVectorDataAccessWithPointer *dataAccess)
Provide a function to register input vector data access.
Parameters:
- opaqueDataAccess: - a pointer that is passed into the callback function.
- dataAccess: - a pointer to the function that conforms to sysc::InputVectorDataAccessWithPointer prototype.
Parameters:
- OpaqueDataAccess opaqueDataAccess
- InputVectorDataAccessWithPointer * dataAccess
Return type: void
Function registerOutputScalarDataAccess
void sysc::SystemCoupling::registerOutputScalarDataAccess(OutputScalarDataAccess *dataAccess)
Provide a function to register output scalar data access.
Parameters:
- dataAccess: - a pointer to the function that conforms to sysc::OutputScalarDataAccess function prototype.
Parameters:
- OutputScalarDataAccess * dataAccess
Return type: void
Function registerOutputScalarDataAccess
void sysc::SystemCoupling::registerOutputScalarDataAccess(OpaqueDataAccess opaqueDataAccess, OutputScalarDataAccessWithPointer *dataAccess)
Provide a function to register output scalar data access.
Parameters:
- opaqueDataAccess: - a pointer that is passed into the callback function.
- dataAccess: - a pointer to the function that conforms to sysc::OutputScalarDataAccessWithPointer prototype.
Parameters:
- OpaqueDataAccess opaqueDataAccess
- OutputScalarDataAccessWithPointer * dataAccess
Return type: void
Function registerOutputVectorDataAccess
void sysc::SystemCoupling::registerOutputVectorDataAccess(OutputVectorDataAccess *dataAccess)
Provide a function to register output vector data access.
Parameters:
- dataAccess: - a pointer to the function that conforms to sysc::OutputVectorDataAccess function prototype.
Parameters:
- OutputVectorDataAccess * dataAccess
Return type: void
Function registerOutputVectorDataAccess
void sysc::SystemCoupling::registerOutputVectorDataAccess(OpaqueDataAccess opaqueDataAccess, OutputVectorDataAccessWithPointer *dataAccess)
Provide a function to register output vector data access.
Parameters:
- opaqueDataAccess: - a pointer that is passed into the callback function.
- dataAccess: - a pointer to the function that conforms to sysc::OutputVectorDataAccessWithPointer prototype.
Parameters:
- OpaqueDataAccess opaqueDataAccess
- OutputVectorDataAccessWithPointer * dataAccess
Return type: void
Function registerInputComplexScalarDataAccess
void sysc::SystemCoupling::registerInputComplexScalarDataAccess(InputComplexScalarDataAccess *dataAccess)
Provide a function to register input complex scalar data access.
Parameters:
- dataAccess: - a pointer to the function that conforms to sysc::InputComplexScalarDataAccess prototype.
Parameters:
- InputComplexScalarDataAccess * dataAccess
Return type: void
Function registerInputComplexScalarDataAccess
void sysc::SystemCoupling::registerInputComplexScalarDataAccess(OpaqueDataAccess opaqueDataAccess, InputComplexScalarDataAccessWithPointer *dataAccess)
Provide a function to register input complex scalar data access.
Parameters:
- opaqueDataAccess: - a pointer that is passed into the callback function.
- dataAccess: - a pointer to the function that conforms to sysc::InputComplexScalarDataAccess prototype.
Parameters:
- OpaqueDataAccess opaqueDataAccess
- InputComplexScalarDataAccessWithPointer * dataAccess
Return type: void
Function registerInputComplexVectorDataAccess
void sysc::SystemCoupling::registerInputComplexVectorDataAccess(InputComplexVectorDataAccess *dataAccess)
Provide a function to register input complex vector data access.
Parameters:
- dataAccess: - a pointer to the function that conforms to InputComplexVectorDataAccess prototype.
Parameters:
- InputComplexVectorDataAccess * dataAccess
Return type: void
Function registerInputComplexVectorDataAccess
void sysc::SystemCoupling::registerInputComplexVectorDataAccess(OpaqueDataAccess opaqueDataAccess, InputComplexVectorDataAccessWithPointer *dataAccess)
Provide a function to register input complex vector data access.
Parameters:
- opaqueDataAccess: - a pointer that is passed into the callback function.
- dataAccess: - a pointer to the function that conforms to InputComplexVectorDataAccess prototype.
Parameters:
- OpaqueDataAccess opaqueDataAccess
- InputComplexVectorDataAccessWithPointer * dataAccess
Return type: void
Function registerOutputComplexScalarDataAccess
void sysc::SystemCoupling::registerOutputComplexScalarDataAccess(OutputComplexScalarDataAccess *dataAccess)
Provide a function to register output complex scalar data access.
Parameters:
- dataAccess: - a pointer to the function that conforms to OutputComplexScalarDataAccess prototype.
Parameters:
- OutputComplexScalarDataAccess * dataAccess
Return type: void
Function registerOutputComplexScalarDataAccess
void sysc::SystemCoupling::registerOutputComplexScalarDataAccess(OpaqueDataAccess opaqueDataAccess, OutputComplexScalarDataAccessWithPointer *dataAccess)
Provide a function to register output complex scalar data access.
Parameters:
- opaqueDataAccess: - a pointer that is passed into the callback function.
- dataAccess: - a pointer to the function that conforms to OutputComplexScalarDataAccess prototype.
Parameters:
- OpaqueDataAccess opaqueDataAccess
- OutputComplexScalarDataAccessWithPointer * dataAccess
Return type: void
Function registerOutputComplexVectorDataAccess
void sysc::SystemCoupling::registerOutputComplexVectorDataAccess(OutputComplexVectorDataAccess *dataAccess)
Provide a function to register output complex vector data access.
Parameters:
- dataAccess: - a pointer to the function that conforms to OutputComplexVectorDataAccess prototype.
Parameters:
- OutputComplexVectorDataAccess * dataAccess
Return type: void
Function registerOutputComplexVectorDataAccess
void sysc::SystemCoupling::registerOutputComplexVectorDataAccess(OpaqueDataAccess opaqueDataAccess, OutputComplexVectorDataAccessWithPointer *dataAccess)
Provide a function to register output complex vector data access.
Parameters:
- opaqueDataAccess: - a pointer that is passed into the callback function.
- dataAccess: - a pointer to the function that conforms to OutputComplexVectorDataAccess prototype.
Parameters:
- OpaqueDataAccess opaqueDataAccess
- OutputComplexVectorDataAccessWithPointer * dataAccess
Return type: void
Function registerSurfaceMeshAccess
void sysc::SystemCoupling::registerSurfaceMeshAccess(SurfaceMeshAccess *meshAccess)
Provide a function to register surface mesh access.
Parameters:
- meshAccess: - a pointer to the function that conforms to SurfaceMeshAccess function prototype. See SurfaceMeshAccess for details.
Parameters:
- SurfaceMeshAccess * meshAccess
Return type: void
Function registerSurfaceMeshAccess
void sysc::SystemCoupling::registerSurfaceMeshAccess(OpaqueDataAccess opaqueDataAccess, SurfaceMeshAccessWithPointer *meshAccess)
Provide a function to register surface mesh access.
Parameters:
- opaqueDataAccess: - a pointer that is passed into the callback function.
- meshAccess: - a pointer to the function that conforms to SurfaceMeshAccessWithPointer function prototype. See SurfaceMeshAccessWithPointer for details.
Parameters:
- OpaqueDataAccess opaqueDataAccess
- SurfaceMeshAccessWithPointer * meshAccess
Return type: void
Function registerZoneCountAccess
void sysc::SystemCoupling::registerZoneCountAccess(OpaqueDataAccess opaqueDataAccess, ZoneCountAccess *zoneCountAccess)
Parameters:
- OpaqueDataAccess opaqueDataAccess
- ZoneCountAccess * zoneCountAccess
Return type: void
Function registerSurfaceMeshAccess
void sysc::SystemCoupling::registerSurfaceMeshAccess(OpaqueDataAccess opaqueDataAccess, SurfaceMeshMultiZoneAccess *dataAccess)
Parameters:
- OpaqueDataAccess opaqueDataAccess
- SurfaceMeshMultiZoneAccess * dataAccess
Return type: void
Function registerVolumeMeshAccess
void sysc::SystemCoupling::registerVolumeMeshAccess(OpaqueDataAccess opaqueDataAccess, VolumeMeshMultiZoneAccess *dataAccess)
Parameters:
- OpaqueDataAccess opaqueDataAccess
- VolumeMeshMultiZoneAccess * dataAccess
Return type: void
Function registerInputScalarDataAccess
void sysc::SystemCoupling::registerInputScalarDataAccess(OpaqueDataAccess opaqueDataAccess, InputScalarDataMultiZoneAccess *dataAccess)
Parameters:
- OpaqueDataAccess opaqueDataAccess
- InputScalarDataMultiZoneAccess * dataAccess
Return type: void
Function registerOutputScalarDataAccess
void sysc::SystemCoupling::registerOutputScalarDataAccess(OpaqueDataAccess opaqueDataAccess, OutputScalarDataMultiZoneAccess *dataAccess)
Parameters:
- OpaqueDataAccess opaqueDataAccess
- OutputScalarDataMultiZoneAccess * dataAccess
Return type: void
Function registerInputVectorDataAccess
void sysc::SystemCoupling::registerInputVectorDataAccess(OpaqueDataAccess opaqueDataAccess, InputVectorDataMultiZoneAccess *dataAccess)
Parameters:
- OpaqueDataAccess opaqueDataAccess
- InputVectorDataMultiZoneAccess * dataAccess
Return type: void
Function registerOutputVectorDataAccess
void sysc::SystemCoupling::registerOutputVectorDataAccess(OpaqueDataAccess opaqueDataAccess, OutputVectorDataMultiZoneAccess *dataAccess)
Provide a function to register output vector data access.
Parameters:
- opaqueDataAccess: - a pointer that is passed into the callback function.
- dataAccess: - a pointer to the function that conforms to sysc::OutputVectorDataMultiZoneAccess prototype.
Parameters:
- OpaqueDataAccess opaqueDataAccess
- OutputVectorDataMultiZoneAccess * dataAccess
Return type: void
Function registerVolumeMeshAccess
void sysc::SystemCoupling::registerVolumeMeshAccess(VolumeMeshAccess *meshAccess)
Provide a function to register volume mesh access.
Parameters:
- meshAccess: - a pointer to the function that conforms to VolumeMeshAccess function prototype. See VolumeMeshAccess for details.
Parameters:
- VolumeMeshAccess * meshAccess
Return type: void
Function registerVolumeMeshAccess
void sysc::SystemCoupling::registerVolumeMeshAccess(OpaqueDataAccess opaqueDataAccess, VolumeMeshAccessWithPointer *meshAccess)
Provide a function to register volume mesh access.
Parameters:
- opaqueDataAccess: - a pointer that is passed into the callback function.
- meshAccess: - a pointer to the function that conforms to VolumeMeshAccessWithPointer function prototype. See VolumeMeshAccessWithPointer for details.
Parameters:
- OpaqueDataAccess opaqueDataAccess
- VolumeMeshAccessWithPointer * meshAccess
Return type: void
Function registerPointCloudAccess
void sysc::SystemCoupling::registerPointCloudAccess(PointCloudAccess *pointCloudAccess)
Provide a function to register point cloud access.
Parameters:
- pointCloudAccess: - a pointer to the function that conforms to PointCloudAccess function prototype. See PointCloudAccess for details.
Parameters:
- PointCloudAccess * pointCloudAccess
Return type: void
Function registerPointCloudAccess
void sysc::SystemCoupling::registerPointCloudAccess(OpaqueDataAccess opaqueDataAccess, PointCloudAccessWithPointer *pointCloudAccess)
Provide a function to register point cloud access.
Parameters:
- opaqueDataAccess: - a pointer that is passed into the callback function.
- pointCloudAccess: - a pointer to the function that conforms to PointCloudAccessWithPointer function prototype.
Parameters:
- OpaqueDataAccess opaqueDataAccess
- PointCloudAccessWithPointer * pointCloudAccess
Return type: void
Function registerPointCloudAccess
void sysc::SystemCoupling::registerPointCloudAccess(OpaqueDataAccess opaqueDataAccess, PointCloudMultiZoneAccess *pointCloudAccess)
Provide a function to register point cloud access.
Parameters:
- opaqueDataAccess: - a pointer that is passed into the callback function.
- pointCloudAccess: - a pointer to the function that conforms to PointCloudMultiZoneAccess function prototype.
Parameters:
- OpaqueDataAccess opaqueDataAccess
- PointCloudMultiZoneAccess * pointCloudAccess
Return type: void
Function registerRestartPointCreation
void sysc::SystemCoupling::registerRestartPointCreation(RestartPointCreation *restartPointCreation)
Provide a function to register a restart point creation callback.
Parameters:
- restartPointCreation: - a pointer to the function that conforms to RestartPointCreation function prototype. See RestartPointCreation for details.
Parameters:
- RestartPointCreation * restartPointCreation
Return type: void
Function registerTargetDataCreation
void sysc::SystemCoupling::registerTargetDataCreation(TargetDataCreation *targetDataCreation)
Provide a function to register a target data creation callback.
Parameters:
- targetDataCreation: - a pointer to the function that conforms to TargetDataCreation function prototype. See TargetDataCreation for details.
Parameters:
- TargetDataCreation * targetDataCreation
Return type: void
Function registerTargetDataCreation
void sysc::SystemCoupling::registerTargetDataCreation(OpaqueDataAccess opaqueDataAccess, TargetDataCreationWithPointer *targetDataCreation)
Provide a function to register a target data creation callback.
Parameters:
- opaqueDataAccess: a pointer that is passed into the callback function.
- targetDataCreation: a pointer to the function that conforms to TargetDataCreationWithPointer function prototype.
Parameters:
- OpaqueDataAccess opaqueDataAccess
- TargetDataCreationWithPointer * targetDataCreation
Return type: void
Function registerDoesTargetDataExist
void sysc::SystemCoupling::registerDoesTargetDataExist(TargetDataExistenceChecker *doesTargetDataExist)
Provide a function to register a does target data exist callback.
Parameters:
- doesTargetDataExist: a pointer to the function that conforms to DoesTargetDataExist function prototype. See DoesTargetDataExist for details.
Parameters:
- TargetDataExistenceChecker * doesTargetDataExist
Return type: void
Function registerDoesTargetDataExist
void sysc::SystemCoupling::registerDoesTargetDataExist(OpaqueDataAccess opaqueDataAccess, TargetDataExistenceCheckerWithPointer *doesTargetDataExist)
Provide a function to register a does target data exist callback.
Parameters:
- opaqueDataAccess: a pointer that is passed into the callback function.
- doesTargetDataExist: a pointer to the function that conforms to DoesTargetDataExistWithPointer function prototype.
Parameters:
- OpaqueDataAccess opaqueDataAccess
- TargetDataExistenceCheckerWithPointer * doesTargetDataExist
Return type: void
Function writeSetupFile
bool sysc::SystemCoupling::writeSetupFile(const SetupFileInfo &setupFileInfo) const
Provide a function to write the setup file.
This function can be used to generate a System Coupling setup file, which contains participant's setup information. It should be called after calling completeSetup.
Parameters:
- setupFileInfo: - struct containing the setup file info.
Returns:
True if the setup file was successfully written, and false otherwise.
Parameters:
- const SetupFileInfo & setupFileInfo
Return type: bool
Function writeResults
void sysc::SystemCoupling::writeResults(const ResultsInfo &resultsInfo) const
Write results to a file.
Parameters:
- const ResultsInfo & resultsInfo
Return type: void
Function getNumRegions
std::size_t sysc::SystemCoupling::getNumRegions() const
Provide a function to return the number of regions.
Returns:
Number of regions.
Return type: std::size_t
Function getAddedRegion
const Region& sysc::SystemCoupling::getAddedRegion(std::size_t index) const
Provide a function to return region information.
Parameters:
- index: - region index
Returns:
Reference to region information at specified index.
Parameters:
- std::size_t index
Return type: const Region &
Function getSolutionControl
SolutionControl sysc::SystemCoupling::getSolutionControl() const
Get solution control.
Return type: SolutionControl
Function getSetupInfo
const SetupInfo& sysc::SystemCoupling::getSetupInfo() const
Get SetupInfo.
Return type: const SetupInfo &
Function getNumCouplingInterfaces
std::size_t sysc::SystemCoupling::getNumCouplingInterfaces() const
Provide a function to return the number of coupling interfaces.
Returns:
Number of coupling interfaces.
Return type: std::size_t
Function getAddedCouplingInterface
const CouplingInterface& sysc::SystemCoupling::getAddedCouplingInterface(std::size_t index) const
Provide a function to return coupling interface.
Parameters:
- index: - coupling interface index
Returns:
Reference to the coupling interface at specified index.
Parameters:
- std::size_t index
Return type: const CouplingInterface &
Function getInputParameter
const Parameter& sysc::SystemCoupling::getInputParameter(std::size_t index) const
Provide a function to return input parameter information.
Parameters:
- index: - input parameter index
Returns:
Reference to input parameter information at specified index.
Parameters:
- std::size_t index
Return type: const Parameter &
Function getOutputParameter
const Parameter& sysc::SystemCoupling::getOutputParameter(std::size_t index) const
Provide a function to return output parameter information.
Parameters:
- index: - output parameter index
Returns:
Reference to output parameter information at specified index.
Parameters:
- std::size_t index
Return type: const Parameter &
Function getNumInputParameters
std::size_t sysc::SystemCoupling::getNumInputParameters() const
Provide a function to return the number of input parameters.
Returns:
Number of input parameters.
Return type: std::size_t
Function getNumOutputParameters
std::size_t sysc::SystemCoupling::getNumOutputParameters() const
Provide a function to return the number of output parameters.
Returns:
Number of output parameters.
Return type: std::size_t
Function getNumRealAttributes
std::size_t sysc::SystemCoupling::getNumRealAttributes() const
Provide a function to return the number of real attributes.
Returns:
Number of real attributes.
Return type: std::size_t
Function getNumIntegerAttributes
std::size_t sysc::SystemCoupling::getNumIntegerAttributes() const
Provide a function to return the number of integer attributes.
Returns:
Number of integer attributes.
Return type: std::size_t
Function getNumStringAttributes
std::size_t sysc::SystemCoupling::getNumStringAttributes() const
Provide a function to return the number of string attributes.
Returns:
Number of string attributes.
Return type: std::size_t
Function getRealAttribute
const RealAttribute& sysc::SystemCoupling::getRealAttribute(std::size_t index) const
Provide a function to return real attribute information.
Parameters:
- index: - real attribute index
Returns:
Reference to real attribute information at specified index.
Parameters:
- std::size_t index
Return type: const RealAttribute &
Function getIntegerAttribute
const IntegerAttribute& sysc::SystemCoupling::getIntegerAttribute(std::size_t index) const
Provide a function to return integer attribute information.
Parameters:
- index: - integer attribute index
Returns:
Reference to integer attribute information at specified index.
Parameters:
- std::size_t index
Return type: const IntegerAttribute &
Function getStringAttribute
const StringAttribute& sysc::SystemCoupling::getStringAttribute(std::size_t index) const
Provide a function to return string attribute information.
Parameters:
- index: - string attribute index
Returns:
Reference to string attribute information at specified index.
Parameters:
- std::size_t index
Return type: const StringAttribute &
Function completeCouplingSetup
void sysc::SystemCoupling::completeCouplingSetup()
This function will be deprecated. Use completeSetup() instead.
Return type: void
Function completeCouplingSetup
void sysc::SystemCoupling::completeCouplingSetup(sysc::AnalysisType analysisType)
This function will be deprecated. Use completeSetup() instead.
Parameters:
- sysc::AnalysisType analysisType
Return type: void
Function registerInputScalarVariableAccess
void sysc::SystemCoupling::registerInputScalarVariableAccess(InputScalarVariableAccess *dataAccess)
Deprecated - do not use.
Parameters:
- InputScalarVariableAccess * dataAccess
Return type: void
Function registerInputVectorVariableAccess
void sysc::SystemCoupling::registerInputVectorVariableAccess(InputVectorVariableAccess *dataAccess)
Deprecated - do not use.
Parameters:
- InputVectorVariableAccess * dataAccess
Return type: void
Function registerOutputScalarVariableAccess
void sysc::SystemCoupling::registerOutputScalarVariableAccess(OutputScalarVariableAccess *dataAccess)
Deprecated - do not use.
Parameters:
- OutputScalarVariableAccess * dataAccess
Return type: void
Function registerOutputVectorVariableAccess
void sysc::SystemCoupling::registerOutputVectorVariableAccess(OutputVectorVariableAccess *dataAccess)
Deprecated - do not use.
Parameters:
- OutputVectorVariableAccess * dataAccess
Return type: void
Function checkMeshValidity
MeshValidityStatus sysc::SystemCoupling::checkMeshValidity(const Region ®ion)
Deprecated. Use sysc::SurfaceMesh::checkValidity instead.
Parameters:
- const Region & region
Return type: MeshValidityStatus
Function checkMeshValidity
MeshValidityStatus sysc::SystemCoupling::checkMeshValidity(const std::string ®ionName)
Deprecated. Use sysc::SurfaceMesh::checkValidity instead.
Parameters:
- const std::string & regionName
Return type: MeshValidityStatus
Function getRegion
const Region& sysc::SystemCoupling::getRegion(std::size_t index) const
Deprecated. Use getAddedRegion() instead.
Parameters:
- std::size_t index
Return type: const Region &
Function SystemCoupling
sysc::SystemCoupling::SystemCoupling(const SystemCoupling &)=delete
Delete the copy-constructor.
Parameters:
- const SystemCoupling &
Return type:
Function SystemCoupling
sysc::SystemCoupling::SystemCoupling(SystemCoupling &&)=default
Provide the move-constructor.
Parameters:
Return type:
Function operator=
SystemCoupling& sysc::SystemCoupling::operator=(const SystemCoupling &)=delete
Delete the copy-assign operator.
Parameters:
- const SystemCoupling &
Return type: SystemCoupling &
Function operator=
SystemCoupling& sysc::SystemCoupling::operator=(SystemCoupling &&)=default
Provide the move-assign operator.
Parameters:
Return type: SystemCoupling &