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 "Keywords.hpp"
19 : : #include "PUPUtil.hpp"
20 : :
21 : : namespace inciter {
22 : : namespace ctr {
23 : :
24 : : //! Material types
25 : : enum class MaterialType : uint8_t { STIFFENEDGAS
26 : : , JWL
27 : : };
28 : :
29 : : //! Pack/Unpack MaterialType: forward overload to generic enum class packer
30 : : inline void operator|( PUP::er& p, MaterialType& e ) { PUP::pup( p, e ); }
31 : :
32 : : //! \brief Material options: outsource to base templated on enum type
33 : 107 : class Material : public tk::Toggle< MaterialType > {
34 : :
35 : : public:
36 : : //! Valid expected choices to make them also available at compile-time
37 : : using keywords = brigand::list< kw::stiffenedgas
38 : : , kw::jwl
39 : : >;
40 : :
41 : : //! \brief Options constructor
42 : : //! \details Simply initialize in-line and pass associations to base, which
43 : : //! will handle client interactions
44 : 107 : explicit Material() :
45 : : tk::Toggle< MaterialType >(
46 : : //! Group, i.e., options, name
47 : 107 : kw::flux::name(),
48 : : //! Enums -> names (if defined, policy codes, if not, name)
49 : 107 : { { MaterialType::STIFFENEDGAS, kw::stiffenedgas::name() }
50 [ - + ][ - - ]: 107 : , { MaterialType::JWL, kw::jwl::name() }
51 : : },
52 : : //! keywords -> Enums
53 : 107 : { { kw::stiffenedgas::string(), MaterialType::STIFFENEDGAS }
54 [ - + ][ - - ]: 107 : , { kw::jwl::string(), MaterialType::JWL }
55 [ + - ][ + - ]: 1070 : } )
[ + + ][ - + ]
[ - + ][ + + ]
[ - + ][ - + ]
[ - - ][ - - ]
[ - - ][ - - ]
[ - - ][ - - ]
56 : 107 : {}
57 : :
58 : : };
59 : :
60 : : } // ctr::
61 : : } // inciter::
62 : :
63 : : #endif // MaterialOptions_h
|