preCICE v3.2.0
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
Public Types | Public Member Functions | Static Public Attributes | Private Member Functions | Private Attributes | List of all members
precice::mesh::Mesh Class Reference

Container and creator for meshes. More...

#include <Mesh.hpp>

Collaboration diagram for precice::mesh::Mesh:
[legend]

Public Types

using VertexContainer = std::deque<Vertex>
 
using EdgeContainer = std::deque<Edge>
 
using TriangleContainer = std::deque<Triangle>
 
using TetraContainer = std::deque<Tetrahedron>
 
using DataContainer = std::vector<PtrData>
 
using BoundingBoxMap = std::map<int, BoundingBox>
 
using VertexDistribution = std::map<Rank, std::vector<VertexID>>
 A mapping from rank to used (not necessarily owned) vertex IDs.
 
using CommunicationMap = std::map<Rank, std::vector<VertexID>>
 A mapping from remote local ranks to the IDs that must be communicated.
 
using ConnectionMap = CommunicationMap
 
using VertexOffsets = std::vector<int>
 

Public Member Functions

 Mesh (std::string name, int dimensions, MeshID id, bool isJustInTime=false)
 Constructor.
 
Vertexvertex (VertexID id)
 Mutable access to a vertex by VertexID.
 
const Vertexvertex (VertexID id) const
 Const access to a vertex by VertexID.
 
VertexContainervertices ()
 Returns modifieable container holding all vertices.
 
const VertexContainervertices () const
 Returns const container holding all vertices.
 
std::size_t nVertices () const
 Returns the number of vertices.
 
bool empty () const
 Does the mesh contain any vertices?
 
EdgeContaineredges ()
 Returns modifiable container holding all edges.
 
const EdgeContaineredges () const
 Returns const container holding all edges.
 
bool hasEdges () const
 
TriangleContainertriangles ()
 Returns modifiable container holding all triangles.
 
const TriangleContainertriangles () const
 Returns const container holding all triangles.
 
bool hasTriangles () const
 
TetraContainertetrahedra ()
 Returns modifiable container holding all tetrahedra.
 
const TetraContainertetrahedra () const
 Returns const container holding all tetrahedra.
 
bool hasTetrahedra () const
 
bool hasConnectivity () const
 
int getDimensions () const
 
VertexcreateVertex (const Eigen::Ref< const Eigen::VectorXd > &coords)
 Creates and initializes a Vertex object.
 
EdgecreateEdge (Vertex &vertexOne, Vertex &vertexTwo)
 Creates and initializes an Edge object.
 
TrianglecreateTriangle (Edge &edgeOne, Edge &edgeTwo, Edge &edgeThree)
 Creates and initializes a Triangle object.
 
TrianglecreateTriangle (Vertex &vertexOne, Vertex &vertexTwo, Vertex &vertexThree)
 Creates and initializes a Triangle object.
 
TetrahedroncreateTetrahedron (Vertex &vertexOne, Vertex &vertexTwo, Vertex &vertexThree, Vertex &vertexFour)
 Creates and initializes a Tetrahedron object.
 
PtrDatacreateData (const std::string &name, int dimension, DataID id, int waveformDegree=time::Time::DEFAULT_WAVEFORM_DEGREE)
 Create only data for vertex.
 
const DataContainerdata () const
 Allows access to all data.
 
bool hasDataID (DataID dataID) const
 Returns whether Mesh has Data with the matchingID.
 
const PtrDatadata (DataID dataID) const
 Returns the data with the matching ID.
 
bool hasDataName (std::string_view dataName) const
 Returns whether Mesh has Data with the dataName.
 
std::vector< std::stringavailableData () const
 Returns the names of all available data.
 
const PtrDatadata (std::string_view dataName) const
 Returns the data with the matching name.
 
const std::stringgetName () const
 Returns the name of the mesh, as set in the config file.
 
MeshID getID () const
 Returns the base ID of the mesh.
 
bool isValidVertexID (VertexID vertexID) const
 Returns true if the given vertexID is valid.
 
void allocateDataValues ()
 Allocates memory for the vertex data values and corresponding gradient values.
 
void computeBoundingBox ()
 Computes the boundingBox for the vertices.
 
void clear ()
 Removes all mesh elements and data values (does not remove data or the bounding boxes).
 
void clearPartitioning ()
 Clears the partitioning information.
 
void clearDataStamples ()
 Clears all data stamples.
 
void setVertexDistribution (VertexDistribution vd)
 
const VertexDistributiongetVertexDistribution () const
 Returns a mapping from rank to used (not necessarily owned) vertex IDs.
 
const VertexOffsetsgetVertexOffsets () const
 
bool isPartitionEmpty (Rank rank) const
 checks if the given ranks partition is empty
 
void setVertexOffsets (VertexOffsets vertexOffsets)
 Only used for tests.
 
int getGlobalNumberOfVertices () const
 
void setGlobalNumberOfVertices (int num)
 
Eigen::VectorXd getOwnedVertexData (const Eigen::VectorXd &values)
 
void tagAll ()
 
const std::vector< Rank > & getConnectedRanks () const
 Returns a vector of connected ranks.
 
void setConnectedRanks (std::vector< Rank > ranks)
 Returns a vector of connected ranks.
 
CommunicationMapgetCommunicationMap ()
 Returns a mapping from remote local connected ranks to the corresponding vertex IDs.
 
void addMesh (Mesh &deltaMesh)
 
const BoundingBoxgetBoundingBox () const
 Returns the bounding box of the mesh.
 
void expandBoundingBox (const BoundingBox &bounding_box)
 
bool operator== (const Mesh &other) const
 
bool operator!= (const Mesh &other) const
 
const query::Indexindex () const
 Call preprocess() before index() to ensure correct projection handling.
 
query::Indexindex ()
 Call preprocess() before index() to ensure correct projection handling.
 
bool isJustInTime () const
 
void preprocess ()
 

Static Public Attributes

static constexpr MeshID MESH_ID_UNDEFINED {-1}
 Use if the id of the mesh is not necessary.
 

Private Member Functions

void removeDuplicates ()
 Removes all duplicate connectivity.
 
void generateImplictPrimitives ()
 

Private Attributes

logging::Logger _log {"mesh::Mesh"}
 
std::string _name
 Name of the mesh.
 
int _dimensions
 Dimension of mesh.
 
MeshID _id
 The ID of this mesh.
 
VertexContainer _vertices
 Holds vertices, edges, triangles and tetrahedra.
 
EdgeContainer _edges
 
TriangleContainer _triangles
 
TetraContainer _tetrahedra
 
DataContainer _data
 Data hold by the vertices of the mesh.
 
VertexDistribution _vertexDistribution
 Vertex distribution for the primary rank, holding for each secondary rank all vertex IDs it owns.
 
VertexOffsets _vertexOffsets
 Holds the index of the last vertex for each rank.
 
int _globalNumberOfVertices = -1
 Number of unique vertices for complete distributed mesh.
 
std::vector< Rank_connectedRanks
 each rank stores list of connected remote ranks. In the m2n package, this is used to create the initial communication channels.
 
CommunicationMap _communicationMap
 each rank stores list of connected ranks and corresponding vertex IDs here. In the m2n package, this is used to create the final communication channels.
 
bool _isJustInTime = false
 for just-in-time mapping, we need an artificial mesh, which we can use
 
BoundingBox _boundingBox
 
query::Index _index
 

Detailed Description

Container and creator for meshes.

A Mesh can consist of Vertices, Edges, Triangles, and nested Meshes. It provides functionality to conveniently create those objects.

In addition to creating the topological information of a mesh, the Mesh class can also be used to add data to the vertices of a mesh, such as function values or also gradient values.

Usage example: precice::mesh::tests::MeshTest::testDemonstration()

Definition at line 38 of file Mesh.hpp.

Member Typedef Documentation

◆ BoundingBoxMap

Definition at line 45 of file Mesh.hpp.

◆ CommunicationMap

A mapping from remote local ranks to the IDs that must be communicated.

Definition at line 51 of file Mesh.hpp.

◆ ConnectionMap

Definition at line 52 of file Mesh.hpp.

◆ DataContainer

Definition at line 44 of file Mesh.hpp.

◆ EdgeContainer

Definition at line 41 of file Mesh.hpp.

◆ TetraContainer

Definition at line 43 of file Mesh.hpp.

◆ TriangleContainer

Definition at line 42 of file Mesh.hpp.

◆ VertexContainer

Definition at line 40 of file Mesh.hpp.

◆ VertexDistribution

A mapping from rank to used (not necessarily owned) vertex IDs.

Definition at line 48 of file Mesh.hpp.

◆ VertexOffsets

Definition at line 54 of file Mesh.hpp.

Constructor & Destructor Documentation

◆ Mesh()

precice::mesh::Mesh::Mesh ( std::string name,
int dimensions,
MeshID id,
bool isJustInTime = false )

Constructor.

Parameters
[in]nameUnique name of the mesh.
[in]dimensionsDimensionalty of the mesh.
[in]idThe id of this mesh

Definition at line 27 of file Mesh.cpp.

Member Function Documentation

◆ addMesh()

void precice::mesh::Mesh::addMesh ( Mesh & deltaMesh)

Definition at line 332 of file Mesh.cpp.

Here is the call graph for this function:

◆ allocateDataValues()

void precice::mesh::Mesh::allocateDataValues ( )

Allocates memory for the vertex data values and corresponding gradient values.

Definition at line 235 of file Mesh.cpp.

Here is the call graph for this function:

◆ availableData()

std::vector< std::string > precice::mesh::Mesh::availableData ( ) const

Returns the names of all available data.

Definition at line 202 of file Mesh.cpp.

Here is the call graph for this function:

◆ clear()

void precice::mesh::Mesh::clear ( )

Removes all mesh elements and data values (does not remove data or the bounding boxes).

A mesh element is a

  • vertex
  • edge
  • triangle

Definition at line 258 of file Mesh.cpp.

Here is the call graph for this function:

◆ clearDataStamples()

void precice::mesh::Mesh::clearDataStamples ( )

Clears all data stamples.

Definition at line 282 of file Mesh.cpp.

Here is the call graph for this function:

◆ clearPartitioning()

void precice::mesh::Mesh::clearPartitioning ( )

Clears the partitioning information.

Todo
this should be handled by the Partition

Definition at line 273 of file Mesh.cpp.

Here is the call graph for this function:

◆ computeBoundingBox()

void precice::mesh::Mesh::computeBoundingBox ( )

Computes the boundingBox for the vertices.

Definition at line 244 of file Mesh.cpp.

Here is the call graph for this function:

◆ createData()

PtrData & precice::mesh::Mesh::createData ( const std::string & name,
int dimension,
DataID id,
int waveformDegree = time::Time::DEFAULT_WAVEFORM_DEGREE )

Create only data for vertex.

Definition at line 153 of file Mesh.cpp.

Here is the call graph for this function:

◆ createEdge()

Edge & precice::mesh::Mesh::createEdge ( Vertex & vertexOne,
Vertex & vertexTwo )

Creates and initializes an Edge object.

Parameters
[in]vertexOneReference to first Vertex defining the Edge.
[in]vertexTwoReference to second Vertex defining the Edge.

Definition at line 113 of file Mesh.cpp.

Here is the call graph for this function:

◆ createTetrahedron()

Tetrahedron & precice::mesh::Mesh::createTetrahedron ( Vertex & vertexOne,
Vertex & vertexTwo,
Vertex & vertexThree,
Vertex & vertexFour )

Creates and initializes a Tetrahedron object.

Parameters
[in]vertexOneReference to first vertex defining the Tetrahedron.
[in]vertexTwoReference to second vertex defining the Tetrahedron.
[in]vertexThreeReference to third vertex defining the Tetrahedron.
[in]vertexFourReference to fourth vertex defining the Tetrahedron.

Definition at line 143 of file Mesh.cpp.

Here is the call graph for this function:

◆ createTriangle() [1/2]

Triangle & precice::mesh::Mesh::createTriangle ( Edge & edgeOne,
Edge & edgeTwo,
Edge & edgeThree )

Creates and initializes a Triangle object.

Parameters
[in]edgeOneReference to first edge defining the Triangle.
[in]edgeTwoReference to second edge defining the Triangle.
[in]edgeThreeReference to third edge defining the Triangle.

Definition at line 121 of file Mesh.cpp.

Here is the call graph for this function:

◆ createTriangle() [2/2]

Triangle & precice::mesh::Mesh::createTriangle ( Vertex & vertexOne,
Vertex & vertexTwo,
Vertex & vertexThree )

Creates and initializes a Triangle object.

Parameters
[in]vertexOneReference to first edge defining the Triangle.
[in]vertexTwoReference to second edge defining the Triangle.
[in]vertexThreeReference to third edge defining the Triangle.

Definition at line 134 of file Mesh.cpp.

Here is the call graph for this function:

◆ createVertex()

Vertex & precice::mesh::Mesh::createVertex ( const Eigen::Ref< const Eigen::VectorXd > & coords)

Creates and initializes a Vertex object.

Definition at line 105 of file Mesh.cpp.

Here is the call graph for this function:

◆ data() [1/3]

const Mesh::DataContainer & precice::mesh::Mesh::data ( ) const

Allows access to all data.

Definition at line 172 of file Mesh.cpp.

◆ data() [2/3]

const PtrData & precice::mesh::Mesh::data ( DataID dataID) const

Returns the data with the matching ID.

Definition at line 185 of file Mesh.cpp.

Here is the call graph for this function:

◆ data() [3/3]

const PtrData & precice::mesh::Mesh::data ( std::string_view dataName) const

Returns the data with the matching name.

Definition at line 211 of file Mesh.cpp.

Here is the call graph for this function:

◆ edges() [1/2]

Mesh::EdgeContainer & precice::mesh::Mesh::edges ( )

Returns modifiable container holding all edges.

Definition at line 70 of file Mesh.cpp.

◆ edges() [2/2]

const Mesh::EdgeContainer & precice::mesh::Mesh::edges ( ) const

Returns const container holding all edges.

Definition at line 75 of file Mesh.cpp.

◆ empty()

bool precice::mesh::Mesh::empty ( ) const
inline

Does the mesh contain any vertices?

Definition at line 88 of file Mesh.hpp.

Here is the call graph for this function:

◆ expandBoundingBox()

void precice::mesh::Mesh::expandBoundingBox ( const BoundingBox & bounding_box)

Definition at line 393 of file Mesh.cpp.

Here is the call graph for this function:

◆ generateImplictPrimitives()

void precice::mesh::Mesh::generateImplictPrimitives ( )
private

Generates implicit primitives for correct projection handling

removeDuplicates() should be called first to avoid unnecessary filtering.

Definition at line 455 of file Mesh.cpp.

Here is the call graph for this function:

◆ getBoundingBox()

const BoundingBox & precice::mesh::Mesh::getBoundingBox ( ) const

Returns the bounding box of the mesh.

BoundingBox is a vector of pairs (min, max), one pair for each dimension. Note that the bounding box does not necessarily need to match the bounding box of the contained vertices of the mesh. Examples are the direct mesh access or a computation of the bounding box before applying additional filtering during the repartitioning. Note that mesh::clear doesn't clear the underlying bounding box (which is potentially a user input when using and defining direct mesh access)

Definition at line 388 of file Mesh.cpp.

◆ getCommunicationMap()

CommunicationMap & precice::mesh::Mesh::getCommunicationMap ( )
inline

Returns a mapping from remote local connected ranks to the corresponding vertex IDs.

Definition at line 294 of file Mesh.hpp.

◆ getConnectedRanks()

const std::vector< Rank > & precice::mesh::Mesh::getConnectedRanks ( ) const
inline

Returns a vector of connected ranks.

Definition at line 282 of file Mesh.hpp.

◆ getDimensions()

int precice::mesh::Mesh::getDimensions ( ) const

Definition at line 100 of file Mesh.cpp.

◆ getGlobalNumberOfVertices()

int precice::mesh::Mesh::getGlobalNumberOfVertices ( ) const
inline

Definition at line 265 of file Mesh.hpp.

◆ getID()

MeshID precice::mesh::Mesh::getID ( ) const

Returns the base ID of the mesh.

Definition at line 225 of file Mesh.cpp.

◆ getName()

const std::string & precice::mesh::Mesh::getName ( ) const

Returns the name of the mesh, as set in the config file.

Definition at line 220 of file Mesh.cpp.

◆ getOwnedVertexData()

Eigen::VectorXd precice::mesh::Mesh::getOwnedVertexData ( const Eigen::VectorXd & values)

Definition at line 302 of file Mesh.cpp.

Here is the call graph for this function:

◆ getVertexDistribution()

const VertexDistribution & precice::mesh::Mesh::getVertexDistribution ( ) const
inline

Returns a mapping from rank to used (not necessarily owned) vertex IDs.

Definition at line 246 of file Mesh.hpp.

◆ getVertexOffsets()

const VertexOffsets & precice::mesh::Mesh::getVertexOffsets ( ) const
inline

Definition at line 251 of file Mesh.hpp.

◆ hasConnectivity()

bool precice::mesh::Mesh::hasConnectivity ( ) const
inline

Definition at line 126 of file Mesh.hpp.

Here is the call graph for this function:

◆ hasDataID()

bool precice::mesh::Mesh::hasDataID ( DataID dataID) const

Returns whether Mesh has Data with the matchingID.

Definition at line 177 of file Mesh.cpp.

Here is the call graph for this function:

◆ hasDataName()

bool precice::mesh::Mesh::hasDataName ( std::string_view dataName) const

Returns whether Mesh has Data with the dataName.

Definition at line 194 of file Mesh.cpp.

Here is the call graph for this function:

◆ hasEdges()

bool precice::mesh::Mesh::hasEdges ( ) const
inline

Definition at line 99 of file Mesh.hpp.

Here is the call graph for this function:

◆ hasTetrahedra()

bool precice::mesh::Mesh::hasTetrahedra ( ) const
inline

Definition at line 121 of file Mesh.hpp.

Here is the call graph for this function:

◆ hasTriangles()

bool precice::mesh::Mesh::hasTriangles ( ) const
inline

Definition at line 110 of file Mesh.hpp.

Here is the call graph for this function:

◆ index() [1/2]

query::Index & precice::mesh::Mesh::index ( )
inline

Call preprocess() before index() to ensure correct projection handling.

Definition at line 327 of file Mesh.hpp.

◆ index() [2/2]

const query::Index & precice::mesh::Mesh::index ( ) const
inline

Call preprocess() before index() to ensure correct projection handling.

Definition at line 321 of file Mesh.hpp.

◆ isJustInTime()

bool precice::mesh::Mesh::isJustInTime ( ) const
inline

Definition at line 332 of file Mesh.hpp.

◆ isPartitionEmpty()

bool precice::mesh::Mesh::isPartitionEmpty ( Rank rank) const

checks if the given ranks partition is empty

Definition at line 289 of file Mesh.cpp.

Here is the call graph for this function:

◆ isValidVertexID()

bool precice::mesh::Mesh::isValidVertexID ( VertexID vertexID) const

Returns true if the given vertexID is valid.

Definition at line 230 of file Mesh.cpp.

Here is the call graph for this function:

◆ nVertices()

std::size_t precice::mesh::Mesh::nVertices ( ) const

Returns the number of vertices.

Definition at line 65 of file Mesh.cpp.

Here is the call graph for this function:

◆ operator!=()

bool precice::mesh::Mesh::operator!= ( const Mesh & other) const

Definition at line 532 of file Mesh.cpp.

◆ operator==()

bool precice::mesh::Mesh::operator== ( const Mesh & other) const

Definition at line 520 of file Mesh.cpp.

Here is the call graph for this function:

◆ preprocess()

void precice::mesh::Mesh::preprocess ( )

Removes all duplicates and generates implicit primitives.

This needs to be called for correct projection handling.

See also
removeDuplicates()
generateImplictPrimitives()

Definition at line 398 of file Mesh.cpp.

Here is the call graph for this function:

◆ removeDuplicates()

void precice::mesh::Mesh::removeDuplicates ( )
private

Removes all duplicate connectivity.

Definition at line 404 of file Mesh.cpp.

Here is the call graph for this function:

◆ setConnectedRanks()

void precice::mesh::Mesh::setConnectedRanks ( std::vector< Rank > ranks)
inline

Returns a vector of connected ranks.

Definition at line 288 of file Mesh.hpp.

◆ setGlobalNumberOfVertices()

void precice::mesh::Mesh::setGlobalNumberOfVertices ( int num)
inline

Definition at line 270 of file Mesh.hpp.

◆ setVertexDistribution()

void precice::mesh::Mesh::setVertexDistribution ( VertexDistribution vd)
inline

Definition at line 239 of file Mesh.hpp.

Here is the call graph for this function:

◆ setVertexOffsets()

void precice::mesh::Mesh::setVertexOffsets ( VertexOffsets vertexOffsets)
inline

Only used for tests.

Definition at line 260 of file Mesh.hpp.

◆ tagAll()

void precice::mesh::Mesh::tagAll ( )

Definition at line 325 of file Mesh.cpp.

Here is the call graph for this function:

◆ tetrahedra() [1/2]

Mesh::TetraContainer & precice::mesh::Mesh::tetrahedra ( )

Returns modifiable container holding all tetrahedra.

Definition at line 95 of file Mesh.cpp.

◆ tetrahedra() [2/2]

const Mesh::TetraContainer & precice::mesh::Mesh::tetrahedra ( ) const

Returns const container holding all tetrahedra.

Definition at line 90 of file Mesh.cpp.

◆ triangles() [1/2]

Mesh::TriangleContainer & precice::mesh::Mesh::triangles ( )

Returns modifiable container holding all triangles.

Definition at line 80 of file Mesh.cpp.

◆ triangles() [2/2]

const Mesh::TriangleContainer & precice::mesh::Mesh::triangles ( ) const

Returns const container holding all triangles.

Definition at line 85 of file Mesh.cpp.

◆ vertex() [1/2]

Vertex & precice::mesh::Mesh::vertex ( VertexID id)

Mutable access to a vertex by VertexID.

Definition at line 43 of file Mesh.cpp.

Here is the call graph for this function:

◆ vertex() [2/2]

const Vertex & precice::mesh::Mesh::vertex ( VertexID id) const

Const access to a vertex by VertexID.

Definition at line 49 of file Mesh.cpp.

Here is the call graph for this function:

◆ vertices() [1/2]

Mesh::VertexContainer & precice::mesh::Mesh::vertices ( )

Returns modifieable container holding all vertices.

Definition at line 55 of file Mesh.cpp.

◆ vertices() [2/2]

const Mesh::VertexContainer & precice::mesh::Mesh::vertices ( ) const

Returns const container holding all vertices.

Definition at line 60 of file Mesh.cpp.

Member Data Documentation

◆ _boundingBox

BoundingBox precice::mesh::Mesh::_boundingBox
private

Definition at line 404 of file Mesh.hpp.

◆ _communicationMap

CommunicationMap precice::mesh::Mesh::_communicationMap
private

each rank stores list of connected ranks and corresponding vertex IDs here. In the m2n package, this is used to create the final communication channels.

Definition at line 399 of file Mesh.hpp.

◆ _connectedRanks

std::vector<Rank> precice::mesh::Mesh::_connectedRanks
private

each rank stores list of connected remote ranks. In the m2n package, this is used to create the initial communication channels.

Definition at line 393 of file Mesh.hpp.

◆ _data

DataContainer precice::mesh::Mesh::_data
private

Data hold by the vertices of the mesh.

Definition at line 366 of file Mesh.hpp.

◆ _dimensions

int precice::mesh::Mesh::_dimensions
private

Dimension of mesh.

Definition at line 354 of file Mesh.hpp.

◆ _edges

EdgeContainer precice::mesh::Mesh::_edges
private

Definition at line 361 of file Mesh.hpp.

◆ _globalNumberOfVertices

int precice::mesh::Mesh::_globalNumberOfVertices = -1
private

Number of unique vertices for complete distributed mesh.

Duplicated vertices are only accounted once.

Definition at line 387 of file Mesh.hpp.

◆ _id

MeshID precice::mesh::Mesh::_id
private

The ID of this mesh.

Definition at line 357 of file Mesh.hpp.

◆ _index

query::Index precice::mesh::Mesh::_index
private

Definition at line 406 of file Mesh.hpp.

◆ _isJustInTime

bool precice::mesh::Mesh::_isJustInTime = false
private

for just-in-time mapping, we need an artificial mesh, which we can use

Definition at line 402 of file Mesh.hpp.

◆ _log

logging::Logger precice::mesh::Mesh::_log {"mesh::Mesh"}
mutableprivate

Definition at line 348 of file Mesh.hpp.

◆ _name

std::string precice::mesh::Mesh::_name
private

Name of the mesh.

Definition at line 351 of file Mesh.hpp.

◆ _tetrahedra

TetraContainer precice::mesh::Mesh::_tetrahedra
private

Definition at line 363 of file Mesh.hpp.

◆ _triangles

TriangleContainer precice::mesh::Mesh::_triangles
private

Definition at line 362 of file Mesh.hpp.

◆ _vertexDistribution

VertexDistribution precice::mesh::Mesh::_vertexDistribution
private

Vertex distribution for the primary rank, holding for each secondary rank all vertex IDs it owns.

For secondary ranks, this data structure is empty and should not be used.

Definition at line 373 of file Mesh.hpp.

◆ _vertexOffsets

VertexOffsets precice::mesh::Mesh::_vertexOffsets
private

Holds the index of the last vertex for each rank.

The last entry holds the total number of vertices. Needed for the matrix-matrix multiplication of the IMVJ acceleration.

Definition at line 380 of file Mesh.hpp.

◆ _vertices

VertexContainer precice::mesh::Mesh::_vertices
private

Holds vertices, edges, triangles and tetrahedra.

Definition at line 360 of file Mesh.hpp.

◆ MESH_ID_UNDEFINED

constexpr MeshID precice::mesh::Mesh::MESH_ID_UNDEFINED {-1}
staticconstexpr

Use if the id of the mesh is not necessary.

Definition at line 57 of file Mesh.hpp.


The documentation for this class was generated from the following files: