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.
hyperelastic_plastic_U_P_3D_law.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: July 2015 $
6 // Revision: $Revision: 0.0 $
7 //
8 //
9 
10 #if !defined (KRATOS_HYPERELASTIC_PLASTIC_U_P_3D_LAW_H_INCLUDED)
11 #define KRATOS_HYPERELASTIC_PLASTIC_U_P_3D_LAW_H_INCLUDED
12 
13 // System includes
14 
15 // External includes
16 
17 // Project includes
18 #include "custom_constitutive/hyperelastic_plastic_3D_law.hpp"
19 
20 
21 namespace Kratos
22 {
31 class KRATOS_API(SOLID_MECHANICS_APPLICATION) HyperElasticPlasticUP3DLaw : public HyperElasticPlastic3DLaw
32 {
33 public:
39  typedef std::size_t SizeType;
40 
41  typedef FlowRule::Pointer FlowRulePointer;
42  typedef YieldCriterion::Pointer YieldCriterionPointer;
43  typedef HardeningLaw::Pointer HardeningLawPointer;
44  typedef Properties::Pointer PropertiesPointer;
45 
51 
60 
61 
63 
68 
69 
74  //HyperElasticPlasticUP3DLaw& operator=(const HyperElasticPlasticUP3DLaw& rOther);
75 
80  ConstitutiveLaw::Pointer Clone() const override;
81 
85  ~HyperElasticPlasticUP3DLaw() override;
86 
100  void GetLawFeatures(Features& rFeatures) override;
101 
111  //int Check(const Properties& rMaterialProperties, const GeometryType& rElementGeometry, const ProcessInfo& rCurrentProcessInfo);
112 
113 
114 
121  //String Info() const override;
125  //void PrintInfo(std::ostream& rOStream) const override;
129  //void PrintData(std::ostream& rOStream) const override;
130 
131 protected:
132 
144 
151  double& CalculateVolumetricPressure (const MaterialResponseVariables & rElasticVariables,
152  double & rPressure) override;
153 
159  Vector& CalculateVolumetricPressureFactors (const MaterialResponseVariables & rElasticVariables,
160  Vector & rFactors) override;
161 
162 
163 
164 private:
165 
168 
169 
173 
174 
178 
179 
183 
184 
189 
190 
194  friend class Serializer;
195 
196  void save(Serializer& rSerializer) const override
197  {
199  }
200 
201  void load(Serializer& rSerializer) override
202  {
204  }
205 
206 
207 
208 }; // Class HyperElasticPlasticUP3DLaw
209 } // namespace Kratos.
210 #endif // KRATOS_HYPERELASTIC_PLASTIC_U_P_3D_LAW_H_INCLUDED defined
Definition: constitutive_law.h:47
Definition: hyperelastic_plastic_3D_law.hpp:33
YieldCriterion::Pointer YieldCriterionPointer
Definition: hyperelastic_plastic_3D_law.hpp:62
FlowRule::Pointer FlowRulePointer
Definition: hyperelastic_plastic_3D_law.hpp:61
HardeningLaw::Pointer HardeningLawPointer
Definition: hyperelastic_plastic_3D_law.hpp:63
Definition: hyperelastic_plastic_U_P_3D_law.hpp:32
FlowRule::Pointer FlowRulePointer
Definition: hyperelastic_plastic_U_P_3D_law.hpp:41
ProcessInfo ProcessInfoType
Definition: hyperelastic_plastic_U_P_3D_law.hpp:37
ConstitutiveLaw BaseType
Definition: hyperelastic_plastic_U_P_3D_law.hpp:38
HardeningLaw::Pointer HardeningLawPointer
Definition: hyperelastic_plastic_U_P_3D_law.hpp:43
KRATOS_CLASS_POINTER_DEFINITION(HyperElasticPlasticUP3DLaw)
YieldCriterion::Pointer YieldCriterionPointer
Definition: hyperelastic_plastic_U_P_3D_law.hpp:42
std::size_t SizeType
Definition: hyperelastic_plastic_U_P_3D_law.hpp:39
Properties::Pointer PropertiesPointer
Definition: hyperelastic_plastic_U_P_3D_law.hpp:44
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
#define KRATOS_SERIALIZE_SAVE_BASE_CLASS(Serializer, BaseType)
Definition: define.h:812
#define KRATOS_SERIALIZE_LOAD_BASE_CLASS(Serializer, BaseType)
Definition: define.h:815
REF: G. R. Cowper, GAUSSIAN QUADRATURE FORMULAS FOR TRIANGLES.
Definition: mesh_condition.cpp:21
def load(f)
Definition: ode_solve.py:307
Definition: constitutive_law.h:137
Definition: hyperelastic_3D_law.hpp:43