Branch data Line data Source code
1 : : // *****************************************************************************
2 : : /*!
3 : : \file src/Control/Inciter/Options/AMRError.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 Options for computing error estimates for adaptive mesh refinement
9 : : \details Options for computing error estimates for adaptive mesh refinement.
10 : : */
11 : : // *****************************************************************************
12 : : #ifndef InciterAMRErrorOptions_h
13 : : #define InciterAMRErrorOptions_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 partitioning algorithm types
24 : : enum class AMRErrorType : uint8_t { JUMP
25 : : , HESSIAN };
26 : :
27 : : //! Pack/Unpack AMRErrorType: forward overload to generic enum class packer
28 : 1766 : inline void operator|( PUP::er& p, AMRErrorType& e ) { PUP::pup( p, e ); }
29 : :
30 : : //! AMRError options: outsource searches to base templated on enum type
31 : : class AMRError : public tk::Toggle< AMRErrorType > {
32 : :
33 : : public:
34 : : //! \brief Options constructor
35 : : //! \details Simply initialize in-line and pass associations to base, which
36 : : //! will handle client interactions
37 : 40 : explicit AMRError() :
38 : : tk::Toggle< AMRErrorType >(
39 : : //! Group, i.e., options, name
40 : : "AMR error estimator",
41 : : //! Enums -> names
42 : 0 : { { AMRErrorType::JUMP, "jump" },
43 : 0 : { AMRErrorType::HESSIAN, "hessian" } },
44 : : //! keywords -> Enums
45 : 80 : { { "jump", AMRErrorType::JUMP },
46 [ + - ][ + - ]: 200 : { "hessian", AMRErrorType::HESSIAN } } ) {}
[ + - ][ + - ]
[ + - ][ + - ]
[ + - ][ + - ]
[ + + ][ + + ]
[ - - ][ - - ]
47 : : };
48 : :
49 : : } // ctr::
50 : : } // inciter::
51 : :
52 : : #endif // InciterAMRErrorOptions_h
|