CompressibleNonlinearElasticitySolver.hpp
00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028 #ifndef COMPRESSIBLENONLINEARELASTICITYSOLVER_HPP_
00029 #define COMPRESSIBLENONLINEARELASTICITYSOLVER_HPP_
00030
00031
00032
00033
00034
00035
00036
00037
00038
00039
00040
00041
00042
00043 #include "AbstractNonlinearElasticitySolver.hpp"
00044 #include "AbstractCompressibleMaterialLaw.hpp"
00045 #include "QuadraticMesh.hpp"
00046 #include "GaussianQuadratureRule.hpp"
00047
00055 template<size_t DIM>
00056 class CompressibleNonlinearElasticitySolver : public AbstractNonlinearElasticitySolver<DIM>
00057 {
00058 friend class TestCompressibleNonlinearElasticitySolver;
00059 protected:
00060
00062 static const size_t NUM_NODES_PER_ELEMENT = AbstractNonlinearElasticitySolver<DIM>::NUM_NODES_PER_ELEMENT;
00063
00065 static const size_t NUM_VERTICES_PER_ELEMENT = AbstractNonlinearElasticitySolver<DIM>::NUM_VERTICES_PER_ELEMENT;
00066
00068 static const size_t NUM_NODES_PER_BOUNDARY_ELEMENT = AbstractNonlinearElasticitySolver<DIM>::NUM_NODES_PER_BOUNDARY_ELEMENT;
00069
00074 static const size_t STENCIL_SIZE = DIM*NUM_NODES_PER_ELEMENT;
00075
00077 static const size_t BOUNDARY_STENCIL_SIZE = DIM*NUM_NODES_PER_BOUNDARY_ELEMENT;
00078
00079
00097 virtual void AssembleOnElement(Element<DIM, DIM>& rElement,
00098 c_matrix<double, STENCIL_SIZE, STENCIL_SIZE >& rAElem,
00099 c_matrix<double, STENCIL_SIZE, STENCIL_SIZE >& rAElemPrecond,
00100 c_vector<double, STENCIL_SIZE>& rBElem,
00101 bool assembleResidual,
00102 bool assembleJacobian);
00103
00122 virtual void AssembleOnBoundaryElement(BoundaryElement<DIM-1, DIM>& rBoundaryElement,
00123 c_matrix<double, BOUNDARY_STENCIL_SIZE, BOUNDARY_STENCIL_SIZE>& rAelem,
00124 c_vector<double, BOUNDARY_STENCIL_SIZE>& rBelem,
00125 bool assembleResidual,
00126 bool assembleJacobian,
00127 unsigned boundaryConditionIndex);
00128
00129
00139 void AssembleSystem(bool assembleResidual, bool assembleJacobian);
00140
00141 public:
00142
00150 CompressibleNonlinearElasticitySolver(QuadraticMesh<DIM>& rQuadMesh,
00151 SolidMechanicsProblemDefinition<DIM>& rProblemDefinition,
00152 std::string outputDirectory);
00153
00155 ~CompressibleNonlinearElasticitySolver();
00156 };
00157
00158 #endif