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.
surface_moment_condition.hpp
Go to the documentation of this file.
1 //
2 // Project Name: KratosSolidMechanicsApplication $
3 // Created by: $Author: JMCarbonell $
4 // Last modified by: $Co-Author: $
5 // Date: $Date: August 2017 $
6 // Revision: $Revision: 0.0 $
7 //
8 //
9 
10 #if !defined(KRATOS_SURFACE_MOMENT_CONDITION_H_INCLUDED)
11 #define KRATOS_SURFACE_MOMENT_CONDITION_H_INCLUDED
12 
13 // System includes
14 
15 // External includes
16 
17 // Project includes
19 
20 namespace Kratos
21 {
35 
36 // Surface moment condition for 3D geometries.
37 
38 class KRATOS_API(SOLID_MECHANICS_APPLICATION) SurfaceMomentCondition
39  : public MomentCondition
40 {
41 public:
42 
45  // Counted pointer of SurfaceMomentCondition
48 
51 
53  SurfaceMomentCondition( IndexType NewId, GeometryType::Pointer pGeometry );
54 
55  SurfaceMomentCondition( IndexType NewId, GeometryType::Pointer pGeometry, PropertiesType::Pointer pProperties );
56 
59 
61  ~SurfaceMomentCondition() override;
62 
66 
67 
71 
79  Condition::Pointer Create(IndexType NewId,
80  NodesArrayType const& ThisNodes,
81  PropertiesType::Pointer pProperties ) const override;
82 
83 
91  Condition::Pointer Clone(IndexType NewId,
92  NodesArrayType const& ThisNodes) const override;
93 
94 
95 
96  //************* COMPUTING METHODS
97 
98 
106  int Check( const ProcessInfo& rCurrentProcessInfo ) const override;
107 
121 
122 protected:
135 
139  void InitializeConditionVariables(ConditionVariables& rVariables,
140  const ProcessInfo& rCurrentProcessInfo) override;
141 
142 
146  void CalculateKinematics(ConditionVariables& rVariables,
147  const double& rPointNumber) override;
148 
152  void CalculateExternalMoment(ConditionVariables& rVariables) override;
153 
157  void CalculateAndAddKuug(MatrixType& rLeftHandSideMatrix,
158  ConditionVariables& rVariables,
159  double& rIntegrationWeight) override;
160 
161 
165 
166 
170 
171 
175 
176 
178 
179 private:
182 
183 
187 
191 
192 
196 
197 
201 
202 
206 
210 
211  friend class Serializer;
212 
213  void save(Serializer& rSerializer) const override;
214 
215  void load(Serializer& rSerializer) override;
216 
217 }; // class SurfaceMomentCondition.
218 
219 } // namespace Kratos.
220 
221 #endif // KRATOS_SURFACE_MOMENT_CONDITION_H_INCLUDED defined
std::size_t IndexType
Definition: flags.h:74
Load Condition for 3D and 2D geometries. (base class)
Definition: moment_condition.hpp:45
PointerVector is a container like stl vector but using a vector to store pointers to its data.
Definition: pointer_vector.h:72
ProcessInfo holds the current value of different solution parameters.
Definition: process_info.h:59
The serialization consists in storing the state of an object into a storage format like data file or ...
Definition: serializer.h:123
Definition: surface_moment_condition.hpp:40
SurfaceMomentCondition()
Definition: surface_moment_condition.hpp:128
KRATOS_CLASS_INTRUSIVE_POINTER_DEFINITION(SurfaceMomentCondition)
Matrix MatrixType
Definition: geometrical_transformation_utilities.h:55
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