#include <Node.hpp>
Public Member Functions | |
Node (unsigned index, ChastePoint< SPACE_DIM > point, bool isBoundaryNode=false) | |
Node (unsigned index, std::vector< double > coords, bool isBoundaryNode=false) | |
Node (unsigned index, c_vector< double, SPACE_DIM > location, bool isBoundaryNode=false) | |
Node (unsigned index, bool isBoundaryNode=false, double v1=0, double v2=0, double v3=0) | |
Node (unsigned index, double *location, bool isBoundaryNode=false) | |
void | SetPoint (ChastePoint< SPACE_DIM > point) |
void | SetIndex (unsigned index) |
void | SetAsBoundaryNode (bool value=true) |
ChastePoint< SPACE_DIM > | GetPoint () const |
const c_vector< double, SPACE_DIM > & | rGetLocation () const |
c_vector< double, SPACE_DIM > & | rGetModifiableLocation () |
unsigned | GetIndex () const |
bool | IsBoundaryNode () const |
void | AddElement (unsigned index) |
void | RemoveElement (unsigned index) |
void | RemoveBoundaryElement (unsigned index) |
void | AddBoundaryElement (unsigned index) |
std::set< unsigned > & | rGetContainingElementIndices () |
std::set< unsigned > & | rGetContainingBoundaryElementIndices () |
unsigned | GetNumContainingElements () const |
unsigned | GetNumBoundaryElements () const |
void | MarkAsDeleted () |
bool | IsDeleted () const |
void | MarkAsInternal () |
bool | IsInternal () const |
template<unsigned ELEMENT_DIM> | |
bool | IsFlagged (AbstractTetrahedralMesh< ELEMENT_DIM, SPACE_DIM > &rMesh) |
void | SetRegion (unsigned region) |
unsigned | GetRegion () const |
ContainingElementIterator | ContainingElementsBegin () const |
ContainingElementIterator | ContainingElementsEnd () const |
ContainingBoundaryElementIterator | ContainingBoundaryElementsBegin () const |
ContainingBoundaryElementIterator | ContainingBoundaryElementsEnd () const |
Private Member Functions | |
void | CommonConstructor (unsigned index, bool isBoundaryNode) |
Private Attributes | |
unsigned | mIndex |
unsigned | mRegion |
c_vector< double, SPACE_DIM > | mLocation |
bool | mIsBoundaryNode |
bool | mIsInternal |
bool | mIsDeleted |
std::set< unsigned > | mElementIndices |
std::set< unsigned > | mBoundaryElementIndices |
Classes | |
class | ContainingBoundaryElementIterator |
class | ContainingElementIterator |
Definition at line 46 of file Node.hpp.
Node< SPACE_DIM >::Node | ( | unsigned | index, | |
ChastePoint< SPACE_DIM > | point, | |||
bool | isBoundaryNode = false | |||
) | [inline] |
There are many ways of creating a node, depending on how you wish to specify its spatial location. Constructor which takes the node's location as a ChastePoint.
index | the index of the node in the mesh | |
point | the location of the node in the mesh | |
isBoundaryNode | whether the node is a boundary node (defaults to false) |
Definition at line 49 of file Node.cpp.
References Node< SPACE_DIM >::CommonConstructor(), Node< SPACE_DIM >::mLocation, and ChastePoint< DIM >::rGetLocation().
Node< SPACE_DIM >::Node | ( | unsigned | index, | |
std::vector< double > | coords, | |||
bool | isBoundaryNode = false | |||
) | [inline] |
Constructor which takes the node's location as a std::vector.
index | the index of the node in the mesh | |
coords | the location of the node in the mesh | |
isBoundaryNode | whether the node is a boundary node (defaults to false) |
Definition at line 56 of file Node.cpp.
References Node< SPACE_DIM >::CommonConstructor(), and Node< SPACE_DIM >::mLocation.
Node< SPACE_DIM >::Node | ( | unsigned | index, | |
c_vector< double, SPACE_DIM > | location, | |||
bool | isBoundaryNode = false | |||
) | [inline] |
Constructor which takes the node's location as a c_vector.
index | the index of the node in the mesh | |
location | the location of the node in the mesh | |
isBoundaryNode | whether the node is a boundary node (defaults to false) |
Definition at line 66 of file Node.cpp.
References Node< SPACE_DIM >::CommonConstructor(), and Node< SPACE_DIM >::mLocation.
Node< SPACE_DIM >::Node | ( | unsigned | index, | |
bool | isBoundaryNode = false , |
|||
double | v1 = 0 , |
|||
double | v2 = 0 , |
|||
double | v3 = 0 | |||
) | [inline] |
Constructor which takes the coordinates of the node's location as separate input arguments.
index | the index of the node in the mesh | |
isBoundaryNode | whether the node is a boundary node (defaults to false) | |
v1 | the x-coordinate of the node in the mesh (defaults to 0) | |
v2 | the y-coordinate of the node in the mesh (defaults to 0) | |
v3 | the z-coordinate of the node in the mesh (defaults to 0) |
Definition at line 73 of file Node.cpp.
References Node< SPACE_DIM >::CommonConstructor(), and Node< SPACE_DIM >::mLocation.
Node< SPACE_DIM >::Node | ( | unsigned | index, | |
double * | location, | |||
bool | isBoundaryNode = false | |||
) | [inline] |
Constructor which takes the coordinates of the node's location as array pointer.
index | the index of the node in the mesh | |
isBoundaryNode | whether the node is a boundary node (defaults to false) | |
location | address of the x-coordinate of the node in the mesh (other coordinates are assumed to be in contiguous memory) |
Definition at line 87 of file Node.cpp.
References Node< SPACE_DIM >::CommonConstructor(), and Node< SPACE_DIM >::mLocation.
void Node< SPACE_DIM >::CommonConstructor | ( | unsigned | index, | |
bool | isBoundaryNode | |||
) | [inline, private] |
Extraction of commonality between the constructors.
index | the index of the node in the mesh | |
isBoundaryNode | whether the node is a boundary node |
Definition at line 39 of file Node.cpp.
References Node< SPACE_DIM >::mIndex, Node< SPACE_DIM >::mIsBoundaryNode, Node< SPACE_DIM >::mIsDeleted, Node< SPACE_DIM >::mIsInternal, and Node< SPACE_DIM >::mRegion.
Referenced by Node< SPACE_DIM >::Node().
void Node< SPACE_DIM >::SetPoint | ( | ChastePoint< SPACE_DIM > | point | ) | [inline] |
Set the node's location.
Note: setting the point in space is dangerous. Jacobian and JacobianDeterminant of element need to be updated.
point | the new location of the node |
Definition at line 101 of file Node.cpp.
References Node< SPACE_DIM >::mLocation, and ChastePoint< DIM >::rGetLocation().
Referenced by MutableVertexMesh< ELEMENT_DIM, SPACE_DIM >::DivideEdge().
void Node< SPACE_DIM >::SetIndex | ( | unsigned | index | ) | [inline] |
Set the index of this node in the mesh.
index | the index of the node |
Definition at line 107 of file Node.cpp.
References Node< SPACE_DIM >::mIndex.
Referenced by MutableVertexMesh< ELEMENT_DIM, SPACE_DIM >::AddNode(), MutableMesh< ELEMENT_DIM, SPACE_DIM >::AddNode(), and NodeBasedCellPopulation< DIM >::AddNode().
void Node< SPACE_DIM >::SetAsBoundaryNode | ( | bool | value = true |
) | [inline] |
Set whether this node is a boundary node.
value | whether the node is a boundary node |
Definition at line 113 of file Node.cpp.
References Node< SPACE_DIM >::mIsBoundaryNode.
Referenced by QuadraticMesh< DIM >::AddNodeToBoundaryElement(), QuadraticMesh< DIM >::ConstructFromMeshReader(), MutableMesh< ELEMENT_DIM, SPACE_DIM >::DeleteBoundaryNodeAt(), MutableVertexMesh< ELEMENT_DIM, SPACE_DIM >::DeleteElementPriorToReMesh(), MutableVertexMesh< ELEMENT_DIM, SPACE_DIM >::PerformT1Swap(), MutableVertexMesh< ELEMENT_DIM, SPACE_DIM >::PerformT3Swap(), and MutableVertexMesh< ELEMENT_DIM, SPACE_DIM >::PerformVoidRemoval().
ChastePoint< SPACE_DIM > Node< SPACE_DIM >::GetPoint | ( | ) | const [inline] |
Get the node's location as a ChastePoint.
Definition at line 120 of file Node.cpp.
References Node< SPACE_DIM >::mLocation.
Referenced by Cylindrical2dVertexMesh::AddNode(), Cylindrical2dMesh::AddNode(), AbstractLinearEllipticPde< ELEMENT_DIM, SPACE_DIM >::ComputeConstantInUSourceTermAtNode(), AbstractLinearEllipticPde< ELEMENT_DIM, SPACE_DIM >::ComputeLinearInUCoeffInSourceTermAtNode(), AbstractLinearParabolicPde< ELEMENT_DIM, SPACE_DIM >::ComputeSourceTermAtNode(), and AbstractBoundaryConditionsContainer< ELEMENT_DIM, SPACE_DIM, PROBLEM_DIM >::GetDirichletBCValue().
const c_vector< double, SPACE_DIM > & Node< SPACE_DIM >::rGetLocation | ( | ) | const [inline] |
Get the node's location as a c_vector.
The returned location may not be modified; if you want that functionality use rGetModifiableLocation instead.
Definition at line 126 of file Node.cpp.
References Node< SPACE_DIM >::mIsDeleted, and Node< SPACE_DIM >::mLocation.
Referenced by VertexCryptSimulation2d::ApplyCellPopulationBoundaryConditions(), CryptSimulation2d::ApplyCellPopulationBoundaryConditions(), CryptSimulation1d::ApplyCellPopulationBoundaryConditions(), AbstractFeObjectAssembler< ELEMENT_DIM, SPACE_DIM, PROBLEM_DIM, CAN_ASSEMBLE_VECTOR, CAN_ASSEMBLE_MATRIX, INTERPOLATION_LEVEL >::AssembleOnElement(), BoxCollection< DIM >::CalculateContainingBox(), FineCoarseMeshPair< DIM >::ComputeFineElementsAndWeightsForCoarseNodes(), AbstractTetrahedralMesh< ELEMENT_DIM, SPACE_DIM >::ConstructFromMesh(), Cylindrical2dMesh::Cylindrical2dMesh(), MutableVertexMesh< ELEMENT_DIM, SPACE_DIM >::DivideEdge(), MutableVertexMesh< ELEMENT_DIM, SPACE_DIM >::DivideElementAlongGivenAxis(), MutableVertexMesh< ELEMENT_DIM, SPACE_DIM >::PerformNodeMerge(), MutableVertexMesh< ELEMENT_DIM, SPACE_DIM >::PerformT1Swap(), MutableVertexMesh< ELEMENT_DIM, SPACE_DIM >::PerformT3Swap(), MutableVertexMesh< ELEMENT_DIM, SPACE_DIM >::PerformVoidRemoval(), CellwiseDataGradient< DIM >::SetupGradients(), VertexMesh< ELEMENT_DIM, SPACE_DIM >::VertexMesh(), and DistanceMapCalculator< ELEMENT_DIM, SPACE_DIM >::WorkOnLocalQueue().
c_vector< double, SPACE_DIM > & Node< SPACE_DIM >::rGetModifiableLocation | ( | ) | [inline] |
Get the node's location as a c_vector.
If you modify the returned location, Jacobian and JacobianDeterminant of elements need to be updated.
Don't forget to assign the result of this call to a reference!
Definition at line 133 of file Node.cpp.
References Node< SPACE_DIM >::mIsDeleted, and Node< SPACE_DIM >::mLocation.
Referenced by VertexCryptSimulation2d::ApplyCellPopulationBoundaryConditions(), CryptSimulation2d::ApplyCellPopulationBoundaryConditions(), CryptSimulation1d::ApplyCellPopulationBoundaryConditions(), FineCoarseMeshPair< DIM >::ComputeFineElementsAndWeightsForCoarseNodes(), MutableVertexMesh< ELEMENT_DIM, SPACE_DIM >::PerformNodeMerge(), MutableVertexMesh< ELEMENT_DIM, SPACE_DIM >::PerformT1Swap(), MutableVertexMesh< ELEMENT_DIM, SPACE_DIM >::PerformT3Swap(), and MutableVertexMesh< ELEMENT_DIM, SPACE_DIM >::PerformVoidRemoval().
unsigned Node< SPACE_DIM >::GetIndex | ( | ) | const [inline] |
Get the index of this node in the mesh.
Definition at line 140 of file Node.cpp.
References Node< SPACE_DIM >::mIndex.
Referenced by MutableVertexMesh< ELEMENT_DIM, SPACE_DIM >::AddNode(), MutableMesh< ELEMENT_DIM, SPACE_DIM >::AddNode(), NodeBasedCellPopulation< DIM >::AddNode(), MutableVertexMesh< ELEMENT_DIM, SPACE_DIM >::CheckForT1Swaps(), CellwiseSourcePde< DIM >::ComputeLinearInUCoeffInSourceTermAtNode(), MutableVertexMesh< ELEMENT_DIM, SPACE_DIM >::DeleteElementPriorToReMesh(), MutableVertexMesh< ELEMENT_DIM, SPACE_DIM >::DivideEdge(), MutableVertexMesh< ELEMENT_DIM, SPACE_DIM >::DivideElementAlongGivenAxis(), StreeterFibreGenerator< SPACE_DIM >::GetAveragedThicknessLocalNode(), MutableVertexMesh< ELEMENT_DIM, SPACE_DIM >::IdentifySwapType(), MonodomainAssembler< ELEMENT_DIM, SPACE_DIM >::IncrementInterpolatedQuantities(), BidomainAssembler< ELEMENT_DIM, SPACE_DIM >::IncrementInterpolatedQuantities(), LessThanNode< SPACE_DIM >::operator()(), MutableVertexMesh< ELEMENT_DIM, SPACE_DIM >::PerformNodeMerge(), MutableVertexMesh< ELEMENT_DIM, SPACE_DIM >::PerformT1Swap(), MutableVertexMesh< ELEMENT_DIM, SPACE_DIM >::PerformT2Swap(), MutableVertexMesh< ELEMENT_DIM, SPACE_DIM >::PerformT3Swap(), MutableVertexMesh< ELEMENT_DIM, SPACE_DIM >::PerformVoidRemoval(), VertexMesh< ELEMENT_DIM, SPACE_DIM >::VertexMesh(), and DistanceMapCalculator< ELEMENT_DIM, SPACE_DIM >::WorkOnLocalQueue().
bool Node< SPACE_DIM >::IsBoundaryNode | ( | ) | const [inline] |
Get whether this node is a boundary node.
Definition at line 146 of file Node.cpp.
References Node< SPACE_DIM >::mIsBoundaryNode.
Referenced by BoundaryConditionsContainer< ELEMENT_DIM, SPACE_DIM, PROBLEM_DIM >::AddDirichletBoundaryCondition(), QuadraticMesh< DIM >::AddNodeToBoundaryElement(), AbstractTetrahedralMesh< ELEMENT_DIM, SPACE_DIM >::ConstructFromMesh(), QuadraticMesh< DIM >::ConstructFromMeshReader(), MutableVertexMesh< ELEMENT_DIM, SPACE_DIM >::DivideEdge(), MutableVertexMesh< ELEMENT_DIM, SPACE_DIM >::DivideElementAlongGivenAxis(), MutableVertexMesh< ELEMENT_DIM, SPACE_DIM >::IdentifySwapType(), MutableVertexMesh< ELEMENT_DIM, SPACE_DIM >::PerformT1Swap(), MutableVertexMesh< ELEMENT_DIM, SPACE_DIM >::PerformT2Swap(), MutableVertexMesh< ELEMENT_DIM, SPACE_DIM >::PerformT3Swap(), and VertexMesh< ELEMENT_DIM, SPACE_DIM >::VertexMesh().
void Node< SPACE_DIM >::AddElement | ( | unsigned | index | ) | [inline] |
Add an element that contains this node.
index | of the element to add. |
Definition at line 158 of file Node.cpp.
References Node< SPACE_DIM >::mElementIndices.
Referenced by MutableVertexMesh< ELEMENT_DIM, SPACE_DIM >::MutableVertexMesh(), and VertexMesh< ELEMENT_DIM, SPACE_DIM >::VertexMesh().
void Node< SPACE_DIM >::RemoveElement | ( | unsigned | index | ) | [inline] |
Remove an element that contains this node.
index | of the element to be removed. |
Definition at line 164 of file Node.cpp.
References EXCEPTION, and Node< SPACE_DIM >::mElementIndices.
void Node< SPACE_DIM >::RemoveBoundaryElement | ( | unsigned | index | ) | [inline] |
Remove an boundary element that contains this node.
index | of the boundary element to be removed. |
Definition at line 174 of file Node.cpp.
References EXCEPTION, and Node< SPACE_DIM >::mBoundaryElementIndices.
void Node< SPACE_DIM >::AddBoundaryElement | ( | unsigned | index | ) | [inline] |
Add an boundary element that contains this node.
index | of the element to add. |
Definition at line 184 of file Node.cpp.
References Node< SPACE_DIM >::mBoundaryElementIndices.
std::set< unsigned > & Node< SPACE_DIM >::rGetContainingElementIndices | ( | ) | [inline] |
Return a set of indices of elements containing this node as a vertex.
Definition at line 190 of file Node.cpp.
References Node< SPACE_DIM >::mElementIndices.
Referenced by MutableVertexMesh< ELEMENT_DIM, SPACE_DIM >::CheckForT1Swaps(), MutableMesh< ELEMENT_DIM, SPACE_DIM >::CheckIsVoronoi(), MutableVertexMesh< ELEMENT_DIM, SPACE_DIM >::DeleteElementPriorToReMesh(), MutableVertexMesh< ELEMENT_DIM, SPACE_DIM >::DivideEdge(), MutableVertexMesh< ELEMENT_DIM, SPACE_DIM >::DivideElementAlongGivenAxis(), NagaiHondaForce< DIM >::GetAdhesionParameter(), VertexMesh< ELEMENT_DIM, SPACE_DIM >::GetNeighbouringElementIndices(), MutableVertexMesh< ELEMENT_DIM, SPACE_DIM >::IdentifySwapType(), MutableVertexMesh< ELEMENT_DIM, SPACE_DIM >::PerformNodeMerge(), MutableVertexMesh< ELEMENT_DIM, SPACE_DIM >::PerformT1Swap(), MutableVertexMesh< ELEMENT_DIM, SPACE_DIM >::PerformT2Swap(), MutableVertexMesh< ELEMENT_DIM, SPACE_DIM >::PerformT3Swap(), MeshBasedCellPopulation< DIM >::Update(), and VertexMesh< ELEMENT_DIM, SPACE_DIM >::VertexMesh().
std::set< unsigned > & Node< SPACE_DIM >::rGetContainingBoundaryElementIndices | ( | ) | [inline] |
Return a set of indices of boundary elements containing this node as a vertex.
Definition at line 196 of file Node.cpp.
References Node< SPACE_DIM >::mBoundaryElementIndices.
unsigned Node< SPACE_DIM >::GetNumContainingElements | ( | ) | const [inline] |
Get the number of elements in the mesh that contain this node.
Definition at line 202 of file Node.cpp.
References Node< SPACE_DIM >::mElementIndices.
Referenced by MutableVertexMesh< ELEMENT_DIM, SPACE_DIM >::PerformT1Swap(), and MutableVertexMesh< ELEMENT_DIM, SPACE_DIM >::PerformT3Swap().
unsigned Node< SPACE_DIM >::GetNumBoundaryElements | ( | ) | const [inline] |
Get the number of boundary elements in the mesh that contain this node.
Definition at line 208 of file Node.cpp.
References Node< SPACE_DIM >::mBoundaryElementIndices.
void Node< SPACE_DIM >::MarkAsDeleted | ( | ) | [inline] |
Mark the node as having been removed from the mesh.
Definition at line 218 of file Node.cpp.
References Node< SPACE_DIM >::mIsDeleted.
Referenced by MutableVertexMesh< ELEMENT_DIM, SPACE_DIM >::DeleteElementPriorToReMesh().
bool Node< SPACE_DIM >::IsDeleted | ( | ) | const [inline] |
Get whether the node is marked as deleted.
Definition at line 224 of file Node.cpp.
References Node< SPACE_DIM >::mIsDeleted.
Referenced by AbstractTetrahedralMesh< ELEMENT_DIM, SPACE_DIM >::ConstructFromMesh(), and MutableMesh< ELEMENT_DIM, SPACE_DIM >::DeleteBoundaryNodeAt().
void Node< SPACE_DIM >::MarkAsInternal | ( | ) | [inline] |
Mark the node as being internal (not vertex) in a quadratic element.
Definition at line 230 of file Node.cpp.
References Node< SPACE_DIM >::mIsInternal.
bool Node< SPACE_DIM >::IsInternal | ( | ) | const [inline] |
Get whether the node is internal (not vertex) in a quadratic element.
Definition at line 236 of file Node.cpp.
References Node< SPACE_DIM >::mIsInternal.
bool Node< SPACE_DIM >::IsFlagged | ( | AbstractTetrahedralMesh< ELEMENT_DIM, SPACE_DIM > & | rMesh | ) | [inline] |
Determine if a node lives within a flagged element.
rMesh | the mesh containing the nodes and elements |
Definition at line 271 of file Node.hpp.
References Node< SPACE_DIM >::ContainingElementsBegin(), Node< SPACE_DIM >::ContainingElementsEnd(), and AbstractTetrahedralMesh< ELEMENT_DIM, SPACE_DIM >::GetElement().
void Node< SPACE_DIM >::SetRegion | ( | unsigned | region | ) | [inline] |
Set the node's region ID.
region | the new region ID |
Definition at line 242 of file Node.cpp.
References Node< SPACE_DIM >::mRegion.
unsigned Node< SPACE_DIM >::GetRegion | ( | ) | const [inline] |
Get the node's region ID.
Definition at line 248 of file Node.cpp.
References Node< SPACE_DIM >::mRegion.
ContainingElementIterator Node< SPACE_DIM >::ContainingElementsBegin | ( | ) | const [inline] |
Get a ContainingElementIterator pointing to the first containing element
Definition at line 353 of file Node.hpp.
References Node< SPACE_DIM >::mElementIndices.
Referenced by QuadraticMesh< DIM >::AddNodesToBoundaryElements(), StreeterFibreGenerator< SPACE_DIM >::GetAveragedThicknessLocalNode(), DiscreteSystemForceCalculator::GetNeighbouringNodeIndices(), Node< SPACE_DIM >::IsFlagged(), CellwiseDataGradient< DIM >::SetupGradients(), MeshBasedCellPopulation< DIM >::Update(), and DistanceMapCalculator< ELEMENT_DIM, SPACE_DIM >::WorkOnLocalQueue().
ContainingElementIterator Node< SPACE_DIM >::ContainingElementsEnd | ( | ) | const [inline] |
Get a ContainingElementIterator pointing to one past the last containing element
Definition at line 361 of file Node.hpp.
References Node< SPACE_DIM >::mElementIndices.
Referenced by QuadraticMesh< DIM >::AddNodesToBoundaryElements(), StreeterFibreGenerator< SPACE_DIM >::GetAveragedThicknessLocalNode(), DiscreteSystemForceCalculator::GetNeighbouringNodeIndices(), Node< SPACE_DIM >::IsFlagged(), CellwiseDataGradient< DIM >::SetupGradients(), MeshBasedCellPopulation< DIM >::Update(), and DistanceMapCalculator< ELEMENT_DIM, SPACE_DIM >::WorkOnLocalQueue().
ContainingBoundaryElementIterator Node< SPACE_DIM >::ContainingBoundaryElementsBegin | ( | ) | const [inline] |
Get a ContainingBoundaryElementIterator pointing to the first containing boundary element
Definition at line 420 of file Node.hpp.
References Node< SPACE_DIM >::mBoundaryElementIndices.
ContainingBoundaryElementIterator Node< SPACE_DIM >::ContainingBoundaryElementsEnd | ( | ) | const [inline] |
Get a ContainingBoundaryElementIterator pointing to one past the last containing boundary element
Definition at line 428 of file Node.hpp.
References Node< SPACE_DIM >::mBoundaryElementIndices.
The index of this node within the mesh.
Definition at line 51 of file Node.hpp.
Referenced by Node< SPACE_DIM >::CommonConstructor(), Node< SPACE_DIM >::GetIndex(), and Node< SPACE_DIM >::SetIndex().
A region ID.
Definition at line 54 of file Node.hpp.
Referenced by Node< SPACE_DIM >::CommonConstructor(), Node< SPACE_DIM >::GetRegion(), and Node< SPACE_DIM >::SetRegion().
The location of this node within the mesh.
Definition at line 57 of file Node.hpp.
Referenced by Node< SPACE_DIM >::GetPoint(), Node< SPACE_DIM >::Node(), Node< SPACE_DIM >::rGetLocation(), Node< SPACE_DIM >::rGetModifiableLocation(), and Node< SPACE_DIM >::SetPoint().
bool Node< SPACE_DIM >::mIsBoundaryNode [private] |
Whether this node is a boundary node.
Definition at line 60 of file Node.hpp.
Referenced by Node< SPACE_DIM >::CommonConstructor(), Node< SPACE_DIM >::IsBoundaryNode(), and Node< SPACE_DIM >::SetAsBoundaryNode().
bool Node< SPACE_DIM >::mIsInternal [private] |
Whether this node is an internal node. (For use with QuadraticMesh)
Definition at line 63 of file Node.hpp.
Referenced by Node< SPACE_DIM >::CommonConstructor(), Node< SPACE_DIM >::IsInternal(), and Node< SPACE_DIM >::MarkAsInternal().
bool Node< SPACE_DIM >::mIsDeleted [private] |
Whether this node has been deleted, and hence whether its location in the mesh can be re-used. (For use in MutableMesh)
Definition at line 69 of file Node.hpp.
Referenced by Node< SPACE_DIM >::CommonConstructor(), Node< SPACE_DIM >::IsDeleted(), Node< SPACE_DIM >::MarkAsDeleted(), Node< SPACE_DIM >::rGetLocation(), and Node< SPACE_DIM >::rGetModifiableLocation().
std::set<unsigned> Node< SPACE_DIM >::mElementIndices [private] |
Set of indices of elements containing this node as a vertex.
Definition at line 72 of file Node.hpp.
Referenced by Node< SPACE_DIM >::AddElement(), Node< SPACE_DIM >::ContainingElementsBegin(), Node< SPACE_DIM >::ContainingElementsEnd(), Node< SPACE_DIM >::GetNumContainingElements(), Node< SPACE_DIM >::RemoveElement(), and Node< SPACE_DIM >::rGetContainingElementIndices().
std::set<unsigned> Node< SPACE_DIM >::mBoundaryElementIndices [private] |
Set of indices of boundary elements containing this node as a vertex.
Definition at line 75 of file Node.hpp.
Referenced by Node< SPACE_DIM >::AddBoundaryElement(), Node< SPACE_DIM >::ContainingBoundaryElementsBegin(), Node< SPACE_DIM >::ContainingBoundaryElementsEnd(), Node< SPACE_DIM >::GetNumBoundaryElements(), Node< SPACE_DIM >::RemoveBoundaryElement(), and Node< SPACE_DIM >::rGetContainingBoundaryElementIndices().