Branch data Line data Source code
1 : : // *****************************************************************************
2 : : /*!
3 : : \file src/PDE/EoS/SmallShearSolid.hpp
4 : : \copyright 2012-2015 J. Bakosi,
5 : : 2016-2018 Los Alamos National Security, LLC.,
6 : : 2019-2021 Triad National Security, LLC.
7 : : All rights reserved. See the LICENSE file for details.
8 : : \brief Small shear strain equation of state for solids
9 : : \details This file declares functions for the SmallShearSolid equation of
10 : : state for the compressible flow equations. These functions are
11 : : taken from Plohr, J. N., & Plohr, B. J. (2005). Linearized analysis
12 : : of Richtmyer–Meshkov flow for elastic materials. Journal of Fluid
13 : : Mechanics, 537, 55-89. The SmallShearSolid EOS uses a small-shear
14 : : approximation for the elastic contribution, and a stiffened gas EOS
15 : : for the hydrodynamic contribution of the internal energy.
16 : : */
17 : : // *****************************************************************************
18 : : #ifndef SmallShearSolid_h
19 : : #define SmallShearSolid_h
20 : :
21 : : #include "Data.hpp"
22 : :
23 : : namespace inciter {
24 : :
25 : : class SmallShearSolid {
26 : :
27 : : private:
28 : : tk::real m_gamma, m_pstiff, m_cv, m_mu, m_rho0;
29 : :
30 : : //! \brief Calculate elastic contribution to material energy from the
31 : : //! material density, and deformation gradient tensor
32 : : tk::real elasticEnergy(
33 : : const std::array< std::array< tk::real, 3 >, 3 >& defgrad,
34 : : tk::real& eps2 ) const;
35 : :
36 : : public:
37 : : //! Default constructor
38 : : SmallShearSolid() = default;
39 : :
40 : : //! Constructor
41 : : SmallShearSolid(tk::real gamma, tk::real pstiff, tk::real cv, tk::real mu );
42 : :
43 : : //! Set rho0 EOS parameter; i.e. the initial density
44 : : void setRho0(tk::real rho0);
45 : :
46 : : //! Calculate density from the material pressure and temperature
47 : : tk::real density( tk::real pr,
48 : : tk::real temp ) const;
49 : :
50 : : //! Calculate pressure from the material density, momentum and total energy
51 : : tk::real pressure(
52 : : tk::real arho,
53 : : tk::real u,
54 : : tk::real v,
55 : : tk::real w,
56 : : tk::real arhoE,
57 : : tk::real alpha=1.0,
58 : : std::size_t imat=0,
59 : : const std::array< std::array< tk::real, 3 >, 3 >& defgrad={{}} ) const;
60 : :
61 : : //! \brief Calculate the elastic Cauchy stress tensor from the material
62 : : //! density, momentum, total energy, and inverse deformation gradient
63 : : //! tensor using the SmallShearSolid equation of state
64 : : std::array< std::array< tk::real, 3 >, 3 >
65 : : CauchyStress(
66 : : tk::real,
67 : : tk::real,
68 : : tk::real,
69 : : tk::real,
70 : : tk::real,
71 : : tk::real alpha,
72 : : std::size_t /*imat*/,
73 : : const std::array< std::array< tk::real, 3 >, 3 >& adefgrad ) const;
74 : :
75 : : //! Calculate speed of sound from the material density and material pressure
76 : : tk::real soundspeed(
77 : : tk::real arho,
78 : : tk::real apr,
79 : : tk::real alpha=1.0,
80 : : std::size_t imat=0,
81 : : const std::array< std::array< tk::real, 3 >, 3 >& adefgrad={{}},
82 : : const std::array< tk::real, 3 >& asigman={{}} ) const;
83 : :
84 : : //! Calculate speed of shear waves
85 : : tk::real shearspeed(
86 : : tk::real arho,
87 : : tk::real alpha=1.0,
88 : : std::size_t imat=0 ) const;
89 : :
90 : : //! \brief Calculate material specific total energy from the material
91 : : //! density, momentum and material pressure
92 : : tk::real totalenergy(
93 : : tk::real rho,
94 : : tk::real u,
95 : : tk::real v,
96 : : tk::real w,
97 : : tk::real pr,
98 : : const std::array< std::array< tk::real, 3 >, 3 >& defgrad={{}} ) const;
99 : :
100 : : //! \brief Calculate material temperature from the material density, and
101 : : //! material specific total energy
102 : : tk::real temperature(
103 : : tk::real arho,
104 : : tk::real u,
105 : : tk::real v,
106 : : tk::real w,
107 : : tk::real arhoE,
108 : : tk::real alpha=1.0,
109 : : const std::array< std::array< tk::real, 3 >, 3 >& defgrad={{}} ) const;
110 : :
111 : : //! Compute the minimum allowed pressure
112 : : tk::real min_eff_pressure(
113 : : tk::real min,
114 : : tk::real,
115 : : tk::real ) const;
116 : :
117 : : //! Compute the reference density
118 : : tk::real refDensity() const { return density(refPressure(), 300.0); }
119 : :
120 : : //! Compute the reference pressure
121 : : tk::real refPressure() const { return 1.0e5; }
122 : :
123 : : //! Return initial density
124 : 0 : tk::real rho0() const { return m_rho0; }
125 : :
126 : : /** @name Charm++ pack/unpack serializer member functions */
127 : : ///@{
128 : : //! \brief Pack/Unpack serialize member function
129 : : //! \param[in,out] p Charm++'s PUP::er serializer object reference
130 : : void pup( PUP::er &p ) /*override*/ {
131 : : p | m_gamma;
132 : : p | m_pstiff;
133 : : p | m_cv;
134 : : p | m_mu;
135 : : p | m_rho0;
136 : : }
137 : : //! \brief Pack/Unpack serialize operator|
138 : : //! \param[in,out] p Charm++'s PUP::er serializer object reference
139 : : //! \param[in,out] i SmallShearSolid object reference
140 : : friend void operator|( PUP::er& p, SmallShearSolid& i ) { i.pup(p); }
141 : : //@}
142 : : };
143 : :
144 : : } //inciter::
145 : :
146 : : #endif // SmallShearSolid_h
|