Package | Description |
---|---|
org.eclipse.ice.datastructures.form.mesh |
Modifier and Type | Method and Description |
---|---|
BoundaryCondition |
EdgeProperties.getFluidBoundaryCondition()
Gets the fluid boundary condition for the edge.
|
BoundaryCondition |
Polygon.getFluidBoundaryCondition(int edgeId)
Gets the fluid boundary condition for an edge of the polygon.
|
BoundaryCondition |
EdgeProperties.getOtherBoundaryCondition(int otherId)
Gets a passive scalar boundary condition from the edge.
|
BoundaryCondition |
Polygon.getOtherBoundaryCondition(int edgeId,
int otherId)
Gets a passive scalar boundary condition for an edge of the polygon.
|
BoundaryCondition |
EdgeProperties.getThermalBoundaryCondition()
Gets the thermal boundary condition for the edge.
|
BoundaryCondition |
Polygon.getThermalBoundaryCondition(int edgeId)
Gets the thermal boundary condition for an edge of the polygon.
|
Modifier and Type | Method and Description |
---|---|
java.util.ArrayList<BoundaryCondition> |
EdgeProperties.getOtherBoundaryConditions()
Gets all passive scalar boundary conditions for the edge.
|
Modifier and Type | Method and Description |
---|---|
void |
BoundaryCondition.copy(BoundaryCondition condition)
This operation copies the contents of a BoundaryCondition into the
current object using a deep copy.
|
boolean |
EdgeProperties.setFluidBoundaryCondition(BoundaryCondition condition)
Sets the fluid boundary condition for the edge.
|
void |
Polygon.setFluidBoundaryCondition(int edgeId,
BoundaryCondition condition)
Sets a fluid boundary condition for an edge of the polygon.
|
boolean |
EdgeProperties.setOtherBoundaryCondition(int otherId,
BoundaryCondition condition)
Sets a passive scalar boundary condition for the edge.
|
void |
Polygon.setOtherBoundaryCondition(int edgeId,
int otherId,
BoundaryCondition condition)
Sets a passive scalar boundary condition for an edge of the polygon.
|
boolean |
EdgeProperties.setThermalBoundaryCondition(BoundaryCondition condition)
Sets the thermal boundary condition for the edge.
|
void |
Polygon.setThermalBoundaryCondition(int edgeId,
BoundaryCondition condition)
Sets a thermal boundary condition for an edge of the polygon.
|