Chaste Commit::f2ff7ee04e70ac9d06c57344df8d017dbb12b97b
FineCoarseMeshPair< DIM > Class Template Reference

#include <FineCoarseMeshPair.hpp>

+ Collaboration diagram for FineCoarseMeshPair< DIM >:

Public Member Functions

 FineCoarseMeshPair (AbstractTetrahedralMesh< DIM, DIM > &rFineMesh, AbstractTetrahedralMesh< DIM, DIM > &rCoarseMesh)
 
 ~FineCoarseMeshPair ()
 
void SetUpBoxesOnFineMesh (double boxWidth=-1)
 
void SetUpBoxesOnCoarseMesh (double boxWidth=-1)
 
void ComputeFineElementsAndWeightsForCoarseQuadPoints (GaussianQuadratureRule< DIM > &rQuadRule, bool safeMode)
 
void ComputeFineElementsAndWeightsForCoarseNodes (bool safeMode)
 
void PrintStatistics ()
 
void ComputeCoarseElementsForFineNodes (bool safeMode)
 
void ComputeCoarseElementsForFineElementCentroids (bool safeMode)
 
std::vector< ElementAndWeights< DIM > > & rGetElementsAndWeights ()
 
std::vector< unsigned > & rGetCoarseElementsForFineNodes ()
 
std::vector< unsigned > & rGetCoarseElementsForFineElementCentroids ()
 
void DeleteFineBoxCollection ()
 
void DeleteCoarseBoxCollection ()
 
const AbstractTetrahedralMesh< DIM, DIM > & GetFineMesh () const
 
const AbstractTetrahedralMesh< DIM, DIM > & GetCoarseMesh () const
 

Private Member Functions

void ComputeFineElementAndWeightForGivenPoint (ChastePoint< DIM > &rPoint, bool safeMode, unsigned boxForThisPoint, unsigned index)
 
unsigned ComputeCoarseElementForGivenPoint (ChastePoint< DIM > &rPoint, bool safeMode, unsigned boxForThisPoint)
 
void SetUpBoxes (AbstractTetrahedralMesh< DIM, DIM > &rMesh, double boxWidth, DistributedBoxCollection< DIM > *&rpBoxCollection)
 
void CollectElementsInContainingBox (DistributedBoxCollection< DIM > *&rpBoxCollection, unsigned boxIndex, std::set< unsigned > &rElementIndices)
 
void CollectElementsInLocalBoxes (DistributedBoxCollection< DIM > *&rpBoxCollection, unsigned boxIndex, std::set< unsigned > &rElementIndices)
 
void ResetStatisticsVariables ()
 
void ShareFineElementData ()
 
void ShareCoarseElementData ()
 

Private Attributes

AbstractTetrahedralMesh< DIM, DIM > & mrFineMesh
 
AbstractTetrahedralMesh< DIM, DIM > & mrCoarseMesh
 
DistributedBoxCollection< DIM > * mpFineMeshBoxCollection
 
DistributedBoxCollection< DIM > * mpCoarseMeshBoxCollection
 
std::vector< ElementAndWeights< DIM > > mFineMeshElementsAndWeights
 
std::vector< unsignedmNotInMesh
 
std::vector< c_vector< double, DIM+1 > > mNotInMeshNearestElementWeights
 
std::vector< unsignedmStatisticsCounters
 
std::vector< unsignedmCoarseElementsForFineNodes
 
std::vector< unsignedmCoarseElementsForFineElementCentroids
 

Friends

class TestFineCoarseMeshPair
 

Detailed Description

template<unsigned DIM>
class FineCoarseMeshPair< DIM >

Class for a pair of meshes, one fine, one coarse, which should cover the same domain (or very nearly match). This class is used to set up interpolation information from one mesh to the other.

The functionality is based on the four information-transfers required in cardiac electro-mechanics problems

  1. Calcium (or voltage) to induce deformation: FINE(electrics) MESH NODEs —> COARSE(mechanics) MESH QUADRATURE POINTS
  2. Deformation gradient (assume constant in any coarse element) for altering conductivities: COARSE ELEMENTS —> FINE ELEMENTS
  3. Deformation gradient/fibre-stretch (assume constant in any coarse element) for cell-model stretch activated channels COARSE ELEMENTS —> FINE NODES
  4. Voltage visualisation on coarse mesh FINE NODES —> COARSE NODES

The usage of this class for each of these tasks is:

  1. FINE NODEs —> COARSE QUADRATURE POINTS FineCoarseMeshPair<2> mesh_pair(fine_mesh,coarse_mesh); mesh_pair.SetUpBoxesOnFineMesh(); mesh_pair.ComputeFineElementsAndWeightsForCoarseQuadPoints(quad_rule, false); mesh_pair.rGetElementsAndWeights();
  2. COARSE ELEMENTS —> FINE ELEMENTS FineCoarseMeshPair<2> mesh_pair(fine_mesh,coarse_mesh); mesh_pair.SetUpBoxesOnCoarseMesh(); mesh_pair.ComputeCoarseElementsForFineElementCentroids(); mesh_pair.rGetCoarseElementsForFineElementCentroids();
  3. COARSE ELEMENTS —> FINE NODES FineCoarseMeshPair<2> mesh_pair(fine_mesh,coarse_mesh); mesh_pair.SetUpBoxesOnCoarseMesh(); mesh_pair.ComputeCoarseElementsForFineNodes(); mesh_pair.rGetCoarseElementsForFineNodes();
  4. FINE NODES —> COARSE NODES Note the this should not be done at the same time as (1), because the results are stored in the same place FineCoarseMeshPair<2> mesh_pair(fine_mesh,coarse_mesh); mesh_pair.SetUpBoxesOnFineMesh(); mesh_pair.ComputeFineElementsAndWeightsForCoarseNodes(false); mesh_pair.rGetElementsAndWeights();

To see progression for any of these methods, run test from the command line with '-mesh_pair_verbose' as a command line parameter

Definition at line 106 of file FineCoarseMeshPair.hpp.

Constructor & Destructor Documentation

◆ FineCoarseMeshPair()

template<unsigned DIM>
FineCoarseMeshPair< DIM >::FineCoarseMeshPair ( AbstractTetrahedralMesh< DIM, DIM > &  rFineMesh,
AbstractTetrahedralMesh< DIM, DIM > &  rCoarseMesh 
)

Constructor sets up domain size.

Parameters
rFineMeshFine mesh (reference)
rCoarseMeshCoarse mesh (reference)

Definition at line 39 of file FineCoarseMeshPair.cpp.

References FineCoarseMeshPair< DIM >::ResetStatisticsVariables().

◆ ~FineCoarseMeshPair()

template<unsigned DIM>
FineCoarseMeshPair< DIM >::~FineCoarseMeshPair ( )

Destructor just deletes the box collection.

Definition at line 61 of file FineCoarseMeshPair.cpp.

Member Function Documentation

◆ CollectElementsInContainingBox()

template<unsigned DIM>
void FineCoarseMeshPair< DIM >::CollectElementsInContainingBox ( DistributedBoxCollection< DIM > *&  rpBoxCollection,
unsigned  boxIndex,
std::set< unsigned > &  rElementIndices 
)
private

Helper method. Gets all the elements in the given box, in the given box collection and puts them in the returned std::vector.

Parameters
rpBoxCollectionReference to the box collection to use (either mpFineBoxCollection or mpCoarseBoxCollection)
boxIndexbox index
rElementIndicesThe returned vector of element indices in that box of the box collection. Not cleared before use.

Definition at line 561 of file FineCoarseMeshPair.cpp.

References DistributedBoxCollection< DIM >::rGetBox().

◆ CollectElementsInLocalBoxes()

template<unsigned DIM>
void FineCoarseMeshPair< DIM >::CollectElementsInLocalBoxes ( DistributedBoxCollection< DIM > *&  rpBoxCollection,
unsigned  boxIndex,
std::set< unsigned > &  rElementIndices 
)
private

Helper method. Gets all the elements in the given box, or in a box local to the given box, in the given box collection, and puts them in the returned std::vector.

Parameters
rpBoxCollectionReference to the box collection to use (either mpFineBoxCollection or mpCoarseBoxCollection)
boxIndexbox index
rElementIndicesThe returned vector of element indices in that box or a local box. Not cleared before use.

Definition at line 574 of file FineCoarseMeshPair.cpp.

References DistributedBoxCollection< DIM >::rGetBox(), and DistributedBoxCollection< DIM >::rGetLocalBoxes().

◆ ComputeCoarseElementForGivenPoint()

template<unsigned DIM>
unsigned FineCoarseMeshPair< DIM >::ComputeCoarseElementForGivenPoint ( ChastePoint< DIM > &  rPoint,
bool  safeMode,
unsigned  boxForThisPoint 
)
private
Returns
for a given point the containing element in the coarse mesh
Parameters
rPointThe point
safeModeSee documentation in ComputeCoarseElementsForFineNodes
boxForThisPointThe box in coarse box collection containing this point
Todo:
: could possibly merge with ComputeFineElementAndWeightForGivenPoint(). Differences between the methods are: the other method uses fine mesh and fine mesh box, computes weights as well (and sets the element and weight in the vec), rather than returning the element, and that method saves information in mStatisticsCounters.

Definition at line 485 of file FineCoarseMeshPair.cpp.

◆ ComputeCoarseElementsForFineElementCentroids()

template<unsigned DIM>
void FineCoarseMeshPair< DIM >::ComputeCoarseElementsForFineElementCentroids ( bool  safeMode)

Compute the element in the coarse mesh that each fine element centroid is contained in (or nearest to). Call SetUpBoxesOnCoarseMesh() before, and rGetCoarseElementsForFineElementCentroids() afterwards.

Parameters
safeModeThis method uses the elements in the boxes to guess which element a point is in. If a point is in none of these elements, then if safeMode==true, it will then search the whole mesh. If safeMode==false it will assume immediately the point isn't in the coarse mesh at all. safeMode=false is will far more efficient with big meshes. It should be fine to use safeMode=false if SetUpBoxesOnFineMesh() is called with default values.

Definition at line 443 of file FineCoarseMeshPair.cpp.

References EXCEPTION, and CommandLineArguments::Instance().

◆ ComputeCoarseElementsForFineNodes()

template<unsigned DIM>
void FineCoarseMeshPair< DIM >::ComputeCoarseElementsForFineNodes ( bool  safeMode)

Compute the element in the coarse mesh that each fine mesh node is contained in (or nearest to). Call SetUpBoxesOnCoarseMesh() before, and rGetCoarseElementsForFineNodes() afterwards.

Parameters
safeModeThis method uses the elements in the boxes to guess which element a point is in. If a point is in none of these elements, then if safeMode==true, it will then search the whole mesh. If safeMode==false it will assume immediately the point isn't in the coarse mesh at all. safeMode=false is will far more efficient with big meshes. It should be fine to use safeMode=false if SetUpBoxesOnFineMesh() is called with default values.

Definition at line 404 of file FineCoarseMeshPair.cpp.

References EXCEPTION, and CommandLineArguments::Instance().

◆ ComputeFineElementAndWeightForGivenPoint()

template<unsigned DIM>
void FineCoarseMeshPair< DIM >::ComputeFineElementAndWeightForGivenPoint ( ChastePoint< DIM > &  rPoint,
bool  safeMode,
unsigned  boxForThisPoint,
unsigned  index 
)
private

For a given point, compute the containing element and corresponding weight in the fine mesh.

Parameters
rPointThe point
safeModeSee documentation for ComputeFineElementsAndWeightsForCoarseQuadPoints()
boxForThisPointThe box in the fine box collection containing this point
indexThe index into the mFineMeshElementsAndWeights std::vector
Todo:
: could possibly merge with ComputeCoarseElementForGivenPoint(). Difference between the methods are: this uses fine mesh and fine mesh box, computes weights as well (and sets the element and weight in the vec), rather than returning the element, and this method saves information in mStatisticsCounters.

Definition at line 306 of file FineCoarseMeshPair.cpp.

◆ ComputeFineElementsAndWeightsForCoarseNodes()

template<unsigned DIM>
void FineCoarseMeshPair< DIM >::ComputeFineElementsAndWeightsForCoarseNodes ( bool  safeMode)

Set up the containing (fine) elements and corresponding weights for all the nodes in the coarse mesh. Call GetElementsAndWeights() after calling this with the index of the nodes.

If calling this DO NOT call ComputeFineElementsAndWeightsForCoarseQuadPoints until you do done with this data.

Parameters
safeModeThis method uses the elements in the boxes to guess which element a point is in. If a point is in none of these elements, then if safeMode==true, it will then search the whole mesh. If safeMode==false it will assume immediately the point isn't in the coarse mesh at all. safeMode=false is will far more efficient with big meshes. It should be fine to use safeMode=false if SetUpBoxesOnFineMesh() is called with default values.

Definition at line 250 of file FineCoarseMeshPair.cpp.

References EXCEPTION, CommandLineArguments::Instance(), Node< SPACE_DIM >::rGetLocation(), and Node< SPACE_DIM >::rGetModifiableLocation().

Referenced by VoltageInterpolaterOntoMechanicsMesh< DIM >::VoltageInterpolaterOntoMechanicsMesh().

◆ ComputeFineElementsAndWeightsForCoarseQuadPoints()

template<unsigned DIM>
void FineCoarseMeshPair< DIM >::ComputeFineElementsAndWeightsForCoarseQuadPoints ( GaussianQuadratureRule< DIM > &  rQuadRule,
bool  safeMode 
)

Set up the containing (fine) elements and corresponding weights for all the quadrature points in the coarse mesh. Call GetElementsAndWeights() after calling this with the index of the quad point (=the index of the quad point in a QuadraturePointsGroup= the index if the quad points were listed by looping over all the element and then looping over all the quad points).

If calling this DO NOT call ComputeFineElementsAndWeightsForCoarseNodes until you do done with this data

Parameters
rQuadRuleThe quadrature rule, used to determine the number of quadrature points per element.
safeModeThis method uses the elements in the boxes to guess which element a quad point is in. If a quad point is in none of these elements, then if safeMode==true, it will then search the whole mesh. If safeMode==false it will assume immediately the quad point isn't in the mesh at all. safeMode=false is will far more efficient with big meshes. It should be fine to use safeMode=false if SetUpBoxesOnFineMesh() is called with default values.

Definition at line 188 of file FineCoarseMeshPair.cpp.

References EXCEPTION, CommandLineArguments::Instance(), QuadraturePointsGroup< DIM >::rGet(), and QuadraturePointsGroup< DIM >::Size().

◆ DeleteCoarseBoxCollection()

template<unsigned DIM>
void FineCoarseMeshPair< DIM >::DeleteCoarseBoxCollection ( )

Destroy the box collection for the coarse mesh - can be used to free memory once ComputeCoarseElementsForFineNodes (etc) has been called.

Definition at line 78 of file FineCoarseMeshPair.cpp.

◆ DeleteFineBoxCollection()

template<unsigned DIM>
void FineCoarseMeshPair< DIM >::DeleteFineBoxCollection ( )

Destroy the box collection for the fine mesh - can be used to free memory once ComputeFineElementsAndWeightsForCoarseQuadPoints (etc) has been called.

Definition at line 68 of file FineCoarseMeshPair.cpp.

◆ GetCoarseMesh()

template<unsigned DIM>
const AbstractTetrahedralMesh< DIM, DIM > & FineCoarseMeshPair< DIM >::GetCoarseMesh ( ) const

Access the coarse mesh of this mesh pair

Returns
the coarse mesh

Definition at line 55 of file FineCoarseMeshPair.cpp.

Referenced by AbstractCardiacMechanicsSolver< ELASTICITY_SOLVER, DIM >::SetFineCoarseMeshPair().

◆ GetFineMesh()

template<unsigned DIM>
const AbstractTetrahedralMesh< DIM, DIM > & FineCoarseMeshPair< DIM >::GetFineMesh ( ) const

Access the fine mesh of this mesh pair

Returns
the fine mesh

Definition at line 49 of file FineCoarseMeshPair.cpp.

◆ PrintStatistics()

template<unsigned DIM>
void FineCoarseMeshPair< DIM >::PrintStatistics ( )

Print information about the number of points found in the searched mesh. What the points are and which mesh was searched depends on whichever of the main Compute methods was last called.

If ComputeFineElementsAndWeightsForCoarseQuadPoints() or ComputeFineElementsAndWeightsForCoarseNodes() were last called, the indices of the points that were not found to be contained in the searched mesh are also printed, along with the weights for that point in the nearest element (which indicates how far from the mesh the points are).

Definition at line 676 of file FineCoarseMeshPair.cpp.

◆ ResetStatisticsVariables()

template<unsigned DIM>
void FineCoarseMeshPair< DIM >::ResetStatisticsVariables ( )
private

Resets mNotInMesh, mNotInMeshNearestElementWeights and mStatisticsCounters.

Definition at line 597 of file FineCoarseMeshPair.cpp.

Referenced by FineCoarseMeshPair< DIM >::FineCoarseMeshPair().

◆ rGetCoarseElementsForFineElementCentroids()

template<unsigned DIM>
std::vector< unsigned > & FineCoarseMeshPair< DIM >::rGetCoarseElementsForFineElementCentroids ( )
inline
Returns
the elements in the coarse mesh that each fine mesh element centroid is contained in (or nearest to). ComputeCoarseElementsForFineElementCentroids() needs to be called before calling this.

Definition at line 390 of file FineCoarseMeshPair.hpp.

References FineCoarseMeshPair< DIM >::mCoarseElementsForFineElementCentroids.

◆ rGetCoarseElementsForFineNodes()

template<unsigned DIM>
std::vector< unsigned > & FineCoarseMeshPair< DIM >::rGetCoarseElementsForFineNodes ( )
inline
Returns
the elements in the coarse mesh that each fine mesh node is contained in (or nearest to). ComputeCoarseElementsForFineNodes() needs to be called before calling this.

Definition at line 380 of file FineCoarseMeshPair.hpp.

References FineCoarseMeshPair< DIM >::mCoarseElementsForFineNodes.

◆ rGetElementsAndWeights()

template<unsigned DIM>
std::vector< ElementAndWeights< DIM > > & FineCoarseMeshPair< DIM >::rGetElementsAndWeights ( )
inline
Returns
A reference to the elements/weights information

Definition at line 371 of file FineCoarseMeshPair.hpp.

References FineCoarseMeshPair< DIM >::mFineMeshElementsAndWeights.

Referenced by VoltageInterpolaterOntoMechanicsMesh< DIM >::VoltageInterpolaterOntoMechanicsMesh().

◆ SetUpBoxes()

template<unsigned DIM>
void FineCoarseMeshPair< DIM >::SetUpBoxes ( AbstractTetrahedralMesh< DIM, DIM > &  rMesh,
double  boxWidth,
DistributedBoxCollection< DIM > *&  rpBoxCollection 
)
private

Set up a box collection on the given mesh. Should only be called using either SetUpBoxes(*mpFineMesh, boxWidth, mpFineBoxCollection) (from SetUpBoxesOnFineMesh) or SetUpBoxes(*mpCoarseMesh, boxWidth, mpCoarseBoxCollection) (from SetUpBoxesOnCoarseMesh)

Parameters
rMeshThe mesh, either *mpFineMesh or *mpCoarseMesh)
boxWidthbox width (see SetUpBoxesOnCoarseMesh() dox)
rpBoxCollectionreference to either mpFineBoxCollection or mpCoarseBoxCollection

Definition at line 104 of file FineCoarseMeshPair.cpp.

References AbstractMesh< ELEMENT_DIM, SPACE_DIM >::CalculateBoundingBox(), DistributedBoxCollection< DIM >::CalculateContainingBox(), AbstractTetrahedralMesh< ELEMENT_DIM, SPACE_DIM >::CalculateMinMaxEdgeLengths(), AbstractTetrahedralMesh< ELEMENT_DIM, SPACE_DIM >::GetElement(), AbstractElement< ELEMENT_DIM, SPACE_DIM >::GetNode(), AbstractTetrahedralMesh< ELEMENT_DIM, SPACE_DIM >::GetNumElements(), ChasteCuboid< SPACE_DIM >::GetWidth(), DistributedBoxCollection< DIM >::IsBoxOwned(), DistributedBoxCollection< DIM >::IsOwned(), DistributedBoxCollection< DIM >::rGetBox(), ChasteCuboid< SPACE_DIM >::rGetLowerCorner(), ChasteCuboid< SPACE_DIM >::rGetUpperCorner(), and DistributedBoxCollection< DIM >::SetupAllLocalBoxes().

◆ SetUpBoxesOnCoarseMesh()

template<unsigned DIM>
void FineCoarseMeshPair< DIM >::SetUpBoxesOnCoarseMesh ( double  boxWidth = -1)

Set up boxes on coarse mesh. The elements contained in each box is stored, which makes finding the containing element for a given point much faster. This should be called before ComputeCoarseElementsForFineNodes() or ComputeCoarseElementsForFineElementCentroids()

Parameters
boxWidthwidth to use for the boxes (which will be cubes). Note that a domain which is a touch larger than the smallest containing cuboid of the fine mesh is used. boxWidth defaults to a negative value, in which case a box width such that there are approximately 20 boxes in the x-direction, unless this width is less than maximum (fine mesh edge length), in which case it is chosen accordingly.

Definition at line 98 of file FineCoarseMeshPair.cpp.

◆ SetUpBoxesOnFineMesh()

template<unsigned DIM>
void FineCoarseMeshPair< DIM >::SetUpBoxesOnFineMesh ( double  boxWidth = -1)

Set up boxes on fine mesh. The elements contained in each box is stored, which makes finding the containing element for a given point much faster. This should be called before ComputeFineElementsAndWeightsForCoarseQuadPoints() or ComputeFineElementsAndWeightsForCoarseNodes().

Parameters
boxWidthwidth to use for the boxes (which will be cubes). Note that a domain which is a touch larger than the smallest containing cuboid of the fine mesh is used. boxWidth defaults to a negative value, in which case a box width such that there are approximately 20 boxes in the x-direction, unless this width is less than maximum (fine mesh edge length), in which case it is chosen accordingly.

Definition at line 92 of file FineCoarseMeshPair.cpp.

Referenced by VoltageInterpolaterOntoMechanicsMesh< DIM >::VoltageInterpolaterOntoMechanicsMesh().

◆ ShareCoarseElementData()

template<unsigned DIM>
void FineCoarseMeshPair< DIM >::ShareCoarseElementData ( )
private

In parallel: share mStatisticsCounters and all the "this coarse element index for..." information

Definition at line 650 of file FineCoarseMeshPair.cpp.

References PetscTools::IsSequential().

◆ ShareFineElementData()

template<unsigned DIM>
void FineCoarseMeshPair< DIM >::ShareFineElementData ( )
private

In parallel: share mStatisticsCounters and all the "fine element weights for..." information

Definition at line 605 of file FineCoarseMeshPair.cpp.

References PetscTools::IsSequential().

Friends And Related Symbol Documentation

◆ TestFineCoarseMeshPair

template<unsigned DIM>
friend class TestFineCoarseMeshPair
friend

Definition at line 108 of file FineCoarseMeshPair.hpp.

Member Data Documentation

◆ mCoarseElementsForFineElementCentroids

template<unsigned DIM>
std::vector<unsigned> FineCoarseMeshPair< DIM >::mCoarseElementsForFineElementCentroids
private

The element in the coarse mesh that each fine element centroid is contained in (or nearest to). ComputeCoarseElementsForFineElementCentroids() needs to be called for this to be set up.

Definition at line 168 of file FineCoarseMeshPair.hpp.

Referenced by FineCoarseMeshPair< DIM >::rGetCoarseElementsForFineElementCentroids().

◆ mCoarseElementsForFineNodes

template<unsigned DIM>
std::vector<unsigned> FineCoarseMeshPair< DIM >::mCoarseElementsForFineNodes
private

The element in the coarse mesh that each fine mesh node is contained in (or nearest to). ComputeCoarseElementsForFineNodes() needs to be called for this to be set up.

Definition at line 161 of file FineCoarseMeshPair.hpp.

Referenced by FineCoarseMeshPair< DIM >::rGetCoarseElementsForFineNodes().

◆ mFineMeshElementsAndWeights

template<unsigned DIM>
std::vector<ElementAndWeights<DIM> > FineCoarseMeshPair< DIM >::mFineMeshElementsAndWeights
private

The containing elements and corresponding weights in the fine mesh for the set of points given. The points may have been quadrature points in the coarse mesh, or nodes in coarse mesh, etc.

Definition at line 134 of file FineCoarseMeshPair.hpp.

Referenced by FineCoarseMeshPair< DIM >::rGetElementsAndWeights().

◆ mNotInMesh

template<unsigned DIM>
std::vector<unsigned> FineCoarseMeshPair< DIM >::mNotInMesh
private

Indices of the points which were found to be outside the fine mesh.

Definition at line 137 of file FineCoarseMeshPair.hpp.

◆ mNotInMeshNearestElementWeights

template<unsigned DIM>
std::vector<c_vector<double,DIM+1> > FineCoarseMeshPair< DIM >::mNotInMeshNearestElementWeights
private

The corresponding weights, for the nearest elements, of the points which were found to be outside the fine mesh.

Definition at line 143 of file FineCoarseMeshPair.hpp.

◆ mpCoarseMeshBoxCollection

template<unsigned DIM>
DistributedBoxCollection<DIM>* FineCoarseMeshPair< DIM >::mpCoarseMeshBoxCollection
private

Boxes on the coarse mesh domain, for easier determination of containing element for a given point.

Definition at line 127 of file FineCoarseMeshPair.hpp.

◆ mpFineMeshBoxCollection

template<unsigned DIM>
DistributedBoxCollection<DIM>* FineCoarseMeshPair< DIM >::mpFineMeshBoxCollection
private

Boxes on the fine mesh domain, for easier determination of containing element for a given point.

Definition at line 121 of file FineCoarseMeshPair.hpp.

◆ mrCoarseMesh

template<unsigned DIM>
AbstractTetrahedralMesh<DIM,DIM>& FineCoarseMeshPair< DIM >::mrCoarseMesh
private

Coarse mesh (often this will be a quadratic mesh).

Definition at line 116 of file FineCoarseMeshPair.hpp.

◆ mrFineMesh

template<unsigned DIM>
AbstractTetrahedralMesh<DIM,DIM>& FineCoarseMeshPair< DIM >::mrFineMesh
private

Fine mesh.

Definition at line 113 of file FineCoarseMeshPair.hpp.

◆ mStatisticsCounters

template<unsigned DIM>
std::vector<unsigned> FineCoarseMeshPair< DIM >::mStatisticsCounters
private

2 values, [0] number of points for which the containing element was found [1] num points not in the searched mesh at all

Note, after ComputeFineElementsAndWeightsForCoarseQuadPoints() or ComputeFineElementsAndWeightsForCoarseNodes(), then mStatisticsCounters[1] = mNotInMesh.size() = mNotInMeshNearestElementWeights.size();

Definition at line 154 of file FineCoarseMeshPair.hpp.


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