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.
multi_linear_isotropic_plane_stress_2d.h
Go to the documentation of this file.
1 // KRATOS ___ _ _ _ _ _ __ _
2 // / __\___ _ __ ___| |_(_) |_ _ _| |_(_)_ _____ / / __ ___ _____ /_\ _ __ _ __
3 // / / / _ \| '_ \/ __| __| | __| | | | __| \ \ / / _ \/ / / _` \ \ /\ / / __| //_\\| '_ \| '_ |
4 // / /__| (_) | | | \__ \ |_| | |_| |_| | |_| |\ V / __/ /__| (_| |\ V V /\__ \/ _ \ |_) | |_) |
5 // \____/\___/|_| |_|___/\__|_|\__|\__,_|\__|_| \_/ \___\____/\__,_| \_/\_/ |___/\_/ \_/ .__/| .__/
6 // |_| |_|
7 //
8 // License: BSD License
9 // license: structural_mechanics_application/license.txt
10 //
11 // Main authors: Klaus B. Sautter
12 //
13 
14 #pragma once
15 
16 
17 // Project includes
18 #include "custom_constitutive/linear_plane_stress.h"
19 
20 namespace Kratos
21 {
22 
37 class KRATOS_API(CONSTITUTIVE_LAWS_APPLICATION) MultiLinearIsotropicPlaneStress2D
38  : public LinearPlaneStress
39 {
40 public:
41 
44 
45 
50 
51  ConstitutiveLaw::Pointer Clone() const override;
52 
57 
58 
63 
73  int Check(
74  const Properties& rMaterialProperties,
75  const GeometryType& rElementGeometry,
76  const ProcessInfo& rCurrentProcessInfo
77  ) const override;
78 
79 
80 
81 protected:
82 
88  void CalculateElasticMatrix(Matrix& C, ConstitutiveLaw::Parameters& rValues) override;
89 
96  void CalculatePK2Stress(
97  const Vector& rStrainVector,
98  Vector& rStressVector,
100  ) override;
101 
102 
103 private:
104 
105  friend class Serializer;
106 
107  void save(Serializer& rSerializer) const override
108  {
110  }
111 
112  void load(Serializer& rSerializer) override
113  {
115  }
116 
117 
118 }; // Class MultiLinearIsotropicPlaneStress2D
119 } // namespace Kratos.
Geometry base class.
Definition: geometry.h:71
This class defines a small deformation linear elastic constitutive model for plane stress cases.
Definition: linear_plane_stress.h:50
KRATOS_CLASS_POINTER_DEFINITION(MultiLinearIsotropicPlaneStress2D)
Counted pointer of MultiLinearIsotropicPlaneStress2D.
ProcessInfo holds the current value of different solution parameters.
Definition: process_info.h:59
Properties encapsulates data shared by different Elements or Conditions. It can store any type of dat...
Definition: properties.h:69
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
This constitutive law represents a multi linear elastic 2d claw for plane stress.
int C
Definition: generate_hyper_elastic_simo_taylor_neo_hookean.py:27
def load(f)
Definition: ode_solve.py:307
Definition: constitutive_law.h:189