Branch data Line data Source code
1 : : // *****************************************************************************
2 : : /*!
3 : : \file src/Control/Inciter/Options/Material.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 Material types for inciter
9 : : \details Material types for inciter.
10 : : */
11 : : // *****************************************************************************
12 : : #ifndef MaterialOptions_h
13 : : #define MaterialOptions_h
14 : :
15 : : #include <brigand/sequences/list.hpp>
16 : :
17 : : #include "Toggle.hpp"
18 : : #include "PUPUtil.hpp"
19 : :
20 : : namespace inciter {
21 : : namespace ctr {
22 : :
23 : : //! Material types
24 : : enum class MaterialType : uint8_t { STIFFENEDGAS
25 : : , JWL
26 : : , SMALLSHEARSOLID
27 : : , GODUNOVROMENSKIALUMINUM
28 : : };
29 : :
30 : : //! Pack/Unpack MaterialType: forward overload to generic enum class packer
31 : 437 : inline void operator|( PUP::er& p, MaterialType& e ) { PUP::pup( p, e ); }
32 : :
33 : : //! \brief Material options: outsource to base templated on enum type
34 : : class Material : public tk::Toggle< MaterialType > {
35 : :
36 : : public:
37 : : //! \brief Options constructor
38 : : //! \details Simply initialize in-line and pass associations to base, which
39 : : //! will handle client interactions
40 : 130 : explicit Material() :
41 : : tk::Toggle< MaterialType >(
42 : : //! Group, i.e., options, name
43 : : "Material EOS",
44 : : //! Enums -> names (if defined, policy codes, if not, name)
45 : 0 : { { MaterialType::STIFFENEDGAS, "stiffenedgas" }
46 : 0 : , { MaterialType::JWL, "jwl" }
47 : 0 : , { MaterialType::SMALLSHEARSOLID, "smallshearsolid" }
48 : 0 : , { MaterialType::GODUNOVROMENSKIALUMINUM, "godunovromenski_aluminum" }
49 : : },
50 : : //! keywords -> Enums
51 : 260 : { { "stiffenedgas", MaterialType::STIFFENEDGAS }
52 : 0 : , { "jwl", MaterialType::JWL }
53 : 0 : , { "smallshearsolid", MaterialType::SMALLSHEARSOLID }
54 : 0 : , { "godunovromenski_aluminum", MaterialType::GODUNOVROMENSKIALUMINUM }
55 [ + - ][ + - ]: 1170 : } )
[ + - ][ + - ]
[ + - ][ + - ]
[ + - ][ + - ]
[ + - ][ + - ]
[ + - ][ + - ]
[ + + ][ + + ]
[ - - ][ - - ]
56 : 130 : {}
57 : :
58 : : };
59 : :
60 : : } // ctr::
61 : : } // inciter::
62 : :
63 : : #endif // MaterialOptions_h
|