KratosMultiphysics
KRATOS Multiphysics (Kratos) is a framework for building parallel, multi-disciplinary simulation software, aiming at modularity, extensibility, and high performance. Kratos is written in C++, and counts with an extensive Python interface.
updated_lagrangian_U_J_W_wP_HO_element.hpp
Go to the documentation of this file.
1 //
2 // Project Name: KratosPfemSolidMechanicsApplication $
3 // Created by: $Author: PNavas $
4 // Last modified by: $Co-Author: LMonforte $
5 // Date: $Date: October 2017 $
6 // Revision: $Revision: -0.1 $
7 //
8 //
9 
10 #if !defined(KRATOS_UPDATED_LAGRANGIAN_U_J_W_WP_HO_ELEMENT_H_INCLUDED )
11 #define KRATOS_UPDATED_LAGRANGIAN_U_J_W_WP_HO_ELEMENT_H_INCLUDED
12 
13 // System includes
14 
15 // External includes
16 
17 // Project includes
19 
20 namespace Kratos
21 {
36 
38 
39 
40 class KRATOS_API(PFEM_SOLID_MECHANICS_APPLICATION) UpdatedLagrangianUJWwPHOElement
42 {
43 public:
44 
50  typedef ConstitutiveLawType::Pointer ConstitutiveLawPointerType;
55 
59 
62 
65 
67  UpdatedLagrangianUJWwPHOElement(IndexType NewId, GeometryType::Pointer pGeometry);
68 
69  UpdatedLagrangianUJWwPHOElement(IndexType NewId, GeometryType::Pointer pGeometry, PropertiesType::Pointer pProperties);
70 
73 
74 
77 
81 
84 
85 
89 
100  Element::Pointer Create(IndexType NewId, NodesArrayType const& ThisNodes, PropertiesType::Pointer pProperties) const override;
101 
109  Element::Pointer Clone(IndexType NewId, NodesArrayType const& ThisNodes) const override;
110 
114 
125 protected:
131 
135 
139 
140 
144  virtual void CalculateAndAddHighOrderKPP(MatrixType& rK,
145  ElementDataType & rVariables,
146  double& rIntegrationWeight
147  ) override;
148 
152  virtual void CalculateAndAddHighOrderRHS(VectorType& rRightHandSideVector,
153  ElementDataType & rVariables,
154  double& rIntegrationWeight
155  ) override;
156 
157 
161  virtual void CalculateAndAddHighOrderDampingMatrix(MatrixType& rDampingMatrix,
162  ElementDataType & rVariables,
163  double& rIntegrationWeight
164  ) override;
165 
176 
177 private:
178 
184 
185 
189 
190 
194 
195 
200 
204  friend class Serializer;
205 
206  // A private default constructor necessary for serialization
207 
208  virtual void save(Serializer& rSerializer) const override;
209 
210  virtual void load(Serializer& rSerializer) override;
211 
212 
219 
220 
221 }; // Class UpdatedLagrangianUJWwPHOElement
222 
223 
224 
225 } // namespace Kratos
226 #endif // KRATOS_UPDATED_LAGRANGIAN_U_J_W_wP_HO_ELEMENT_H_INCLUDED
227 
PeriodicInterfaceProcess & operator=(const PeriodicInterfaceProcess &)=delete
Definition: constitutive_law.h:47
StressMeasure
Definition: constitutive_law.h:69
std::size_t IndexType
Definition: flags.h:74
IntegrationMethod
Definition: geometry_data.h:76
PointerVector is a container like stl vector but using a vector to store pointers to its data.
Definition: pointer_vector.h:72
The serialization consists in storing the state of an object into a storage format like data file or ...
Definition: serializer.h:123
Updated Lagrangian Large Displacement Lagrangian U-W Element for 3D and 2D geometries....
Definition: updated_lagrangian_U_J_W_wP_element.hpp:42
Updated Lagrangian Large Displacement Lagrangian U-W Element for 3D and 2D geometries....
Definition: updated_lagrangian_U_J_W_wP_HO_element.hpp:42
ConstitutiveLaw ConstitutiveLawType
Definition: updated_lagrangian_U_J_W_wP_HO_element.hpp:48
ConstitutiveLawType::Pointer ConstitutiveLawPointerType
Pointer type for constitutive laws.
Definition: updated_lagrangian_U_J_W_wP_HO_element.hpp:50
GeometryData::IntegrationMethod IntegrationMethod
Type definition for integration methods.
Definition: updated_lagrangian_U_J_W_wP_HO_element.hpp:54
KRATOS_CLASS_INTRUSIVE_POINTER_DEFINITION(UpdatedLagrangianUJWwPHOElement)
Counted pointer of LargeDisplacementUPElement.
ConstitutiveLawType::StressMeasure StressMeasureType
StressMeasure from constitutive laws.
Definition: updated_lagrangian_U_J_W_wP_HO_element.hpp:52
Modeler::Pointer Create(const std::string &ModelerName, Model &rModel, const Parameters ModelParameters)
Checks if the modeler is registered.
Definition: modeler_factory.cpp:30
REF: G. R. Cowper, GAUSSIAN QUADRATURE FORMULAS FOR TRIANGLES.
Definition: mesh_condition.cpp:21
def load(f)
Definition: ode_solve.py:307
Definition: solid_element.hpp:83