Skip to main content

Structure SyscRegion

Definition: syscRegion.h (line 42)

Provide a struct for a System Coupling region.

Participant can declare which regions can be used in the coupled analysis. Each region can declare its input variables and output variables. Input variables represent physical quantities whose values the participant expects System Coupling to provide. Output variables represent physical quantities whose values System Coupling expects the participant to provide.

To create and/or initialize the SyscRegion struct, it is highly recommended to use one of the functions with names starting with syscGetRegion. These functions will initialize all members to the correct values and will help to avoid back-compatibility issues in the future. For example:

SyscRegion reg = syscGetRegionT("Wall", SyscSurface);

Members

Public attributes

Variable name

Definition: syscRegion.h (line 43)

char SyscRegion::name[SYSC_STRING_LENGTH][SYSC_STRING_LENGTH]

Unique region name.

Type: char

Variable topology

Definition: syscRegion.h (line 43)

enum SyscTopology SyscRegion::topology

Region topology.

Type: enum SyscTopology

Variable regionDiscretizationType

Definition: syscRegion.h (line 43)

enum SyscRegionDiscretizationType SyscRegion::regionDiscretizationType

Reigon mesh type.

Type: enum SyscRegionDiscretizationType

Variable displayName

Definition: syscRegion.h (line 46)

char SyscRegion::displayName[SYSC_STRING_LENGTH][SYSC_STRING_LENGTH]

User-friendly region name.

Type: char