|
Chaste Release::3.1
|
#include <AbstractTetrahedralElement.hpp>
Inheritance diagram for AbstractTetrahedralElement< ELEMENT_DIM, SPACE_DIM >:
Collaboration diagram for AbstractTetrahedralElement< ELEMENT_DIM, SPACE_DIM >:Public Member Functions | |
| AbstractTetrahedralElement (unsigned index, const std::vector< Node< SPACE_DIM > * > &rNodes) | |
| AbstractTetrahedralElement (unsigned index=INDEX_IS_NOT_USED) | |
| virtual | ~AbstractTetrahedralElement () |
| c_vector< double, SPACE_DIM > | CalculateCentroid () const |
| void | CalculateJacobian (c_matrix< double, SPACE_DIM, ELEMENT_DIM > &rJacobian, double &rJacobianDeterminant) |
| void | CalculateWeightedDirection (c_vector< double, SPACE_DIM > &rWeightedDirection, double &rJacobianDeterminant) |
| c_vector< double, SPACE_DIM > | CalculateNormal () |
| void | CalculateInverseJacobian (c_matrix< double, SPACE_DIM, ELEMENT_DIM > &rJacobian, double &rJacobianDeterminant, c_matrix< double, ELEMENT_DIM, SPACE_DIM > &rInverseJacobian) |
| double | GetVolume (double determinant) const |
| void | GetStiffnessMatrixGlobalIndices (unsigned problemDim, unsigned *pIndices) const |
Protected Member Functions | |
| void | RefreshJacobian (c_matrix< double, SPACE_DIM, ELEMENT_DIM > &rJacobian) |
This abstract class defines a tetrahedral element for use in the Finite Element Method.
Definition at line 52 of file AbstractTetrahedralElement.hpp.
| AbstractTetrahedralElement< ELEMENT_DIM, SPACE_DIM >::AbstractTetrahedralElement | ( | unsigned | index, |
| const std::vector< Node< SPACE_DIM > * > & | rNodes | ||
| ) |
Constructor which takes in a vector of nodes.
| index | the index of the element in the mesh |
| rNodes | the nodes owned by the element |
Definition at line 63 of file AbstractTetrahedralElement.cpp.
References AbstractTetrahedralElement< ELEMENT_DIM, SPACE_DIM >::CalculateJacobian(), AbstractTetrahedralElement< ELEMENT_DIM, SPACE_DIM >::CalculateWeightedDirection(), and AbstractElement< ELEMENT_DIM, SPACE_DIM >::mNodes.
| AbstractTetrahedralElement< ELEMENT_DIM, SPACE_DIM >::AbstractTetrahedralElement | ( | unsigned | index = INDEX_IS_NOT_USED | ) |
Default constructor, which doesn't fill in any nodes. The nodes must be added later.
| index | the index of the element in the mesh (defaults to INDEX_IS_NOT_USED) |
Definition at line 105 of file AbstractTetrahedralElement.cpp.
| virtual AbstractTetrahedralElement< ELEMENT_DIM, SPACE_DIM >::~AbstractTetrahedralElement | ( | ) | [inline, virtual] |
Virtual destructor, since this class has virtual methods.
Definition at line 84 of file AbstractTetrahedralElement.hpp.
| c_vector< double, SPACE_DIM > AbstractTetrahedralElement< ELEMENT_DIM, SPACE_DIM >::CalculateCentroid | ( | ) | const |
Get the location of the centroid of the element.
Definition at line 198 of file AbstractTetrahedralElement.cpp.
| void AbstractTetrahedralElement< ELEMENT_DIM, SPACE_DIM >::CalculateInverseJacobian | ( | c_matrix< double, SPACE_DIM, ELEMENT_DIM > & | rJacobian, |
| double & | rJacobianDeterminant, | ||
| c_matrix< double, ELEMENT_DIM, SPACE_DIM > & | rInverseJacobian | ||
| ) |
Compute the Jacobian and the inverse Jacobian for this element.
| rJacobian | the Jacobian matrix (output) |
| rJacobianDeterminant | the determinant of the Jacobian (output) |
| rInverseJacobian | the inverse Jacobian matrix (output) |
Definition at line 209 of file AbstractTetrahedralElement.cpp.
References Inverse().
Referenced by AbstractFeCableIntegralAssembler< ELEMENT_DIM, SPACE_DIM, PROBLEM_DIM, CAN_ASSEMBLE_VECTOR, CAN_ASSEMBLE_MATRIX, INTERPOLATION_LEVEL >::AssembleOnCableElement(), and AbstractFunctionalCalculator< ELEMENT_DIM, SPACE_DIM, PROBLEM_DIM >::CalculateOnElement().
| void AbstractTetrahedralElement< ELEMENT_DIM, SPACE_DIM >::CalculateJacobian | ( | c_matrix< double, SPACE_DIM, ELEMENT_DIM > & | rJacobian, |
| double & | rJacobianDeterminant | ||
| ) |
Compute the Jacobian for this element.
| rJacobian | the Jacobian matrix |
| rJacobianDeterminant | the determinant of the Jacobian |
Definition at line 110 of file AbstractTetrahedralElement.cpp.
References Determinant(), and EXCEPTION.
Referenced by AbstractTetrahedralElement< ELEMENT_DIM, SPACE_DIM >::AbstractTetrahedralElement().
| c_vector< double, SPACE_DIM > AbstractTetrahedralElement< ELEMENT_DIM, SPACE_DIM >::CalculateNormal | ( | ) |
Compute a unit vector normal to this element, if possible.
Definition at line 177 of file AbstractTetrahedralElement.cpp.
References EXCEPTION.
Referenced by AbstractNonlinearElasticitySolver< DIM >::AssembleOnBoundaryElementForPressureOnDeformedBc().
| void AbstractTetrahedralElement< ELEMENT_DIM, SPACE_DIM >::CalculateWeightedDirection | ( | c_vector< double, SPACE_DIM > & | rWeightedDirection, |
| double & | rJacobianDeterminant | ||
| ) |
Compute the weighted direction for this element.
| rWeightedDirection | the weighted direction vector |
| rJacobianDeterminant | the determinant of the Jacobian |
Definition at line 128 of file AbstractTetrahedralElement.cpp.
References EXCEPTION, NEVER_REACHED, and SubDeterminant().
Referenced by AbstractTetrahedralElement< 0, SPACE_DIM >::AbstractTetrahedralElement(), and AbstractTetrahedralElement< ELEMENT_DIM, SPACE_DIM >::AbstractTetrahedralElement().
| void AbstractTetrahedralElement< ELEMENT_DIM, SPACE_DIM >::GetStiffnessMatrixGlobalIndices | ( | unsigned | problemDim, |
| unsigned * | pIndices | ||
| ) | const |
Place in the pIndices array, the global indices (within the stiffness matrix) of the degrees of freedom associated with this element.
| problemDim | the problem dimension e.g. 2 for Bidomain. |
| pIndices | where to store results: an unsigned array with ELEMENT_DIM+1 entries. |
Definition at line 243 of file AbstractTetrahedralElement.cpp.
Referenced by AbstractFeVolumeIntegralAssembler< ELEMENT_DIM, SPACE_DIM, PROBLEM_DIM, CAN_ASSEMBLE_VECTOR, CAN_ASSEMBLE_MATRIX, INTERPOLATION_LEVEL >::DoAssemble(), AbstractFeSurfaceIntegralAssembler< ELEMENT_DIM, SPACE_DIM, PROBLEM_DIM >::DoAssemble(), and AbstractFeCableIntegralAssembler< ELEMENT_DIM, SPACE_DIM, PROBLEM_DIM, CAN_ASSEMBLE_VECTOR, CAN_ASSEMBLE_MATRIX, INTERPOLATION_LEVEL >::DoAssemble().
| double AbstractTetrahedralElement< ELEMENT_DIM, SPACE_DIM >::GetVolume | ( | double | determinant | ) | const |
Get the volume of an element (or area in 2d, or length in 1d)
| determinant | a pre-calculated Jacobian determinant for this element. |
Definition at line 220 of file AbstractTetrahedralElement.cpp.
| void AbstractTetrahedralElement< ELEMENT_DIM, SPACE_DIM >::RefreshJacobian | ( | c_matrix< double, SPACE_DIM, ELEMENT_DIM > & | rJacobian | ) | [protected] |
Refresh the Jacobian for this element.
| rJacobian | the Jacobian matrix |
Definition at line 47 of file AbstractTetrahedralElement.cpp.
References EXCEPTION.