Branch data Line data Source code
1 : : // *****************************************************************************
2 : : /*!
3 : : \file src/Control/Inciter/Options/MeshVelocity.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 Mesh velocity configuration options for inciter
9 : : \details Mesh velocity configuration options for inciter.
10 : : */
11 : : // *****************************************************************************
12 : : #ifndef MeshVelocityOptions_h
13 : : #define MeshVelocityOptions_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 : : //! Mesh velocity configuration option types
24 : : enum class MeshVelocityType : uint8_t { SINE
25 : : , FLUID
26 : : , USER_DEFINED
27 : : };
28 : :
29 : : //! Pack/Unpack MeshVelocityType: forward overload to generic enum class packer
30 : 1766 : inline void operator|( PUP::er& p, MeshVelocityType& e ) { PUP::pup( p, e ); }
31 : :
32 : : //! \brief Mesh velocity options: outsource to base templated on enum type
33 : : class MeshVelocity : public tk::Toggle< MeshVelocityType > {
34 : :
35 : : public:
36 : : //! \brief Options constructor
37 : : //! \details Simply initialize in-line and pass associations to base, which
38 : : //! will handle client interactions
39 : 20 : explicit MeshVelocity() :
40 : : tk::Toggle< MeshVelocityType >(
41 : : //! Group, i.e., options, name
42 : : "Mesh velocity",
43 : : //! Enums -> names (if defined, policy codes, if not, name)
44 : 0 : { { MeshVelocityType::SINE, "sine" }
45 : 0 : , { MeshVelocityType::FLUID, "fluid" }
46 : 0 : , { MeshVelocityType::USER_DEFINED, "user_defined" }
47 : : },
48 : : //! keywords -> Enums
49 : 40 : { { "sine", MeshVelocityType::SINE }
50 : 0 : , { "fluid", MeshVelocityType::FLUID }
51 : 0 : , { "user_defined", MeshVelocityType::USER_DEFINED }
52 [ + - ][ + - ]: 140 : } )
[ + - ][ + - ]
[ + - ][ + - ]
[ + - ][ + - ]
[ + - ][ + - ]
[ + + ][ + + ]
[ - - ][ - - ]
53 : 20 : {}
54 : :
55 : : };
56 : :
57 : : } // ctr::
58 : : } // inciter::
59 : :
60 : : #endif // MeshVelocityOptions_h
|