GRINS-0.7.0
hookes_law.h
Go to the documentation of this file.
1 //-----------------------------------------------------------------------bl-
2 //--------------------------------------------------------------------------
3 //
4 // GRINS - General Reacting Incompressible Navier-Stokes
5 //
6 // Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner
7 // Copyright (C) 2010-2013 The PECOS Development Team
8 //
9 // This library is free software; you can redistribute it and/or
10 // modify it under the terms of the Version 2.1 GNU Lesser General
11 // Public License as published by the Free Software Foundation.
12 //
13 // This library is distributed in the hope that it will be useful,
14 // but WITHOUT ANY WARRANTY; without even the implied warranty of
15 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 // Lesser General Public License for more details.
17 //
18 // You should have received a copy of the GNU Lesser General Public
19 // License along with this library; if not, write to the Free Software
20 // Foundation, Inc. 51 Franklin Street, Fifth Floor,
21 // Boston, MA 02110-1301 USA
22 //
23 //-----------------------------------------------------------------------el-
24 
25 #ifndef GRINS_HOOKES_LAW_H
26 #define GRINS_HOOKES_LAW_H
27 
28 // GRINS
30 #include "grins/parameter_user.h"
32 
33 // Forward declarations
34 class GetPot;
35 
36 namespace GRINS
37 {
38 
40 
46  class HookesLaw : public StressStrainLaw<HookesLaw>,
47  public ParameterUser
48  {
49  public:
50 
51  HookesLaw( const GetPot& input );
52 
53  HookesLaw( const GetPot& input, const std::string& material );
54 
55  virtual ~HookesLaw();
56 
57  // So we can make implementations private
58  friend class StressStrainLaw<HookesLaw>;
59 
60  private:
61 
62  HookesLaw();
63 
65  void read_input_options(const GetPot& input);
66 
67  void compute_stress_imp( unsigned int dim,
73 
74  void compute_stress_and_elasticity_imp( unsigned int dim,
80  ElasticityTensor& C );
81 
82  libMesh::Real compute_33_stress_imp( const libMesh::TensorValue<libMesh::Real>& g_contra,
86 
88 
90  libMesh::Real _lambda;
91 
93  libMesh::Real _mu;
94 
95  };
96 
97 } // end namespace GRINS
98 
99 #endif // GRINS_HOOKES_LAW_H
void compute_stress_imp(unsigned int dim, const libMesh::TensorValue< libMesh::Real > &g_contra, const libMesh::TensorValue< libMesh::Real > &g_cov, const libMesh::TensorValue< libMesh::Real > &G_contra, const libMesh::TensorValue< libMesh::Real > &G_cov, libMesh::TensorValue< libMesh::Real > &stress)
Definition: hookes_law.C:180
void read_input_options(const GetPot &input)
Parse properties from input.
Definition: hookes_law.C:145
virtual ~HookesLaw()
Definition: hookes_law.C:140
void compute_stress_and_elasticity_imp(unsigned int dim, const libMesh::TensorValue< libMesh::Real > &g_contra, const libMesh::TensorValue< libMesh::Real > &g_cov, const libMesh::TensorValue< libMesh::Real > &G_contra, const libMesh::TensorValue< libMesh::Real > &G_cov, libMesh::TensorValue< libMesh::Real > &stress, ElasticityTensor &C)
Definition: hookes_law.C:211
Elasticity tensor for Hooke's law.
Definition: hookes_law.h:46
GRINS namespace.
ParameterUser base class. Utility methods for subclasses.
libMesh::Real _mu
Lam\'{e} constant.
Definition: hookes_law.h:93
libMesh::Real compute_33_stress_imp(const libMesh::TensorValue< libMesh::Real > &g_contra, const libMesh::TensorValue< libMesh::Real > &g_cov, const libMesh::TensorValue< libMesh::Real > &G_contra, const libMesh::TensorValue< libMesh::Real > &G_cov)
Definition: hookes_law.C:226
libMesh::Real _lambda
Lam\'{e} constant.
Definition: hookes_law.h:90
ElasticityTensor _C
Definition: hookes_law.h:87

Generated on Thu Jun 2 2016 21:52:28 for GRINS-0.7.0 by  doxygen 1.8.10