variable_names module¶
The functions to define the names of the variables used in the scalable problem.
- gemseo.problems.scalable.parametric.core.variable_names.get_constraint_name(index)[source]¶
Return the name of the constraint specific to a scalable discipline.
- gemseo.problems.scalable.parametric.core.variable_names.get_coupling_name(index)[source]¶
Return the name of the coupling variable outputted by a scalable discipline.
- gemseo.problems.scalable.parametric.core.variable_names.get_u_local_name(index)[source]¶
Return the name of an uncertain variable specific to a scalable discipline.
- gemseo.problems.scalable.parametric.core.variable_names.get_x_local_name(index)[source]¶
Return the name of the design variable specific to a scalable discipline.
- gemseo.problems.scalable.parametric.core.variable_names.CONSTRAINT_VARIABLE_BASE_NAME: Final[str] = 'c'¶
The base name of a constraint.
To be suffixed by the index of the corresponding scalable discipline, e.g.
"c_3"
.
- gemseo.problems.scalable.parametric.core.variable_names.COUPLING_VARIABLE_BASE_NAME: Final[str] = 'y'¶
The base name of a coupling variable.
To be suffixed by the index of the corresponding scalable discipline, e.g.
"y_3"
.
- gemseo.problems.scalable.parametric.core.variable_names.LOCAL_DESIGN_VARIABLE_BASE_NAME: Final[str] = 'x'¶
The base name of a design variable.
To be suffixed by the index of the corresponding scalable discipline, e.g.
"x_3"
.
- gemseo.problems.scalable.parametric.core.variable_names.OBJECTIVE_NAME: Final[str] = 'f'¶
The name of the objective.