Branch data Line data Source code
1 : : // *****************************************************************************
2 : : /*!
3 : : \file src/Control/Inciter/Options/Flux.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 Flux function options for inciter
9 : : \details Flux function options for inciter
10 : : */
11 : : // *****************************************************************************
12 : : #ifndef FluxOptions_h
13 : : #define FluxOptions_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 : : //! Flux types
24 : : enum class FluxType : uint8_t { LaxFriedrichs
25 : : , HLLC
26 : : , UPWIND
27 : : , AUSM
28 : : , HLL
29 : : , Rusanov
30 : : , LDFSS
31 : : };
32 : :
33 : : //! Pack/Unpack FluxType: forward overload to generic enum class packer
34 : : inline void operator|( PUP::er& p, FluxType& e ) { PUP::pup( p, e ); }
35 : :
36 : : //! \brief Flux options: outsource to base templated on enum type
37 : 254 : class Flux : public tk::Toggle< FluxType > {
38 : :
39 : : public:
40 : : //! \brief Options constructor
41 : : //! \details Simply initialize in-line and pass associations to base, which
42 : : //! will handle client interactions
43 : 254 : explicit Flux() :
44 : : tk::Toggle< FluxType >(
45 : : //! Group, i.e., options, name
46 : : "Flux",
47 : : //! Enums -> names (if defined, policy codes, if not, name)
48 : : { { FluxType::LaxFriedrichs, "laxfriedrichs" }
49 : : , { FluxType::HLLC, "hllc" }
50 : : , { FluxType::UPWIND, "upwind" }
51 : : , { FluxType::AUSM, "ausm" }
52 : : , { FluxType::HLL, "hll" }
53 : : , { FluxType::LDFSS, "ldfss" }
54 : : },
55 : : //! keywords -> Enums
56 : : { { "laxfriedrichs", FluxType::LaxFriedrichs }
57 : : , { "hllc", FluxType::HLLC }
58 : : , { "upwind", FluxType::UPWIND }
59 : : , { "ausm", FluxType::AUSM }
60 : : , { "hll", FluxType::HLL }
61 : : , { "ldfss", FluxType::LDFSS }
62 [ + - ][ + - ]: 4064 : } )
[ + - ][ + + ]
[ - + ][ + + ]
[ - + ][ - - ]
[ - - ][ - - ]
[ - - ]
63 : 254 : {}
64 : :
65 : : };
66 : :
67 : : } // ctr::
68 : : } // inciter::
69 : :
70 : : #endif // FluxOptions_h
|