Branch data Line data Source code
1 : : // ***************************************************************************** 2 : : /*! 3 : : \file src/PDE/MultiMat/RiemannChoice.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 Register available Riemann solvers for multimaterial compressible 9 : : hydrodynamics. 10 : : \details Register available Riemann solvers for multimaterial compressible 11 : : hydrodynamics. 12 : : */ 13 : : // ***************************************************************************** 14 : : #ifndef RiemannChoice_h 15 : : #define RiemannChoice_h 16 : : 17 : : #include "FunctionPrototypes.hpp" 18 : : #include "Inciter/Options/Flux.hpp" 19 : : #include "Riemann/HLL.hpp" 20 : : #include "Riemann/AUSM.hpp" 21 : : #include "Riemann/LaxFriedrichsSolids.hpp" 22 : : #include "Riemann/HLLCMultiMat.hpp" 23 : : #include "Riemann/HLLDMultiMat.hpp" 24 : : #include "Riemann/LDFSS.hpp" 25 : : 26 : : namespace inciter { 27 : : 28 : : //! Get the Riemann solver function according to control file setup 29 : : //! \param[in] flux Riemann solver from input deck 30 : : //! \return Function pointer to the Riemann solver, must be of type 31 : : //! tk::RiemannFluxFn 32 : 194 : const static tk::RiemannFluxFn multimatRiemannSolver(ctr::FluxType flux) 33 : : { 34 : 194 : tk::RiemannFluxFn fluxfn; 35 : : 36 [ + + ]: 194 : if (flux == ctr::FluxType::AUSM) { 37 [ + - ]: 190 : fluxfn = AUSM::flux; 38 : : } 39 [ + - ]: 4 : else if (flux == ctr::FluxType::HLL) { 40 [ + - ]: 4 : fluxfn = HLL::flux; 41 : : } 42 [ - - ]: 0 : else if (flux == ctr::FluxType::LaxFriedrichs) { 43 [ - - ]: 0 : fluxfn = LaxFriedrichsSolids::flux; 44 : : } 45 [ - - ]: 0 : else if (flux == ctr::FluxType::HLLC) { 46 [ - - ]: 0 : fluxfn = HLLCMultiMat::flux; 47 : : } 48 [ - - ]: 0 : else if (flux == ctr::FluxType::HLLD) { 49 [ - - ]: 0 : fluxfn = HLLDMultiMat::flux; 50 : : } 51 [ - - ]: 0 : else if (flux == ctr::FluxType::LDFSS) { 52 [ - - ]: 0 : fluxfn = LDFSS::flux; 53 : : } 54 : : else { 55 [ - - ][ - - ]: 0 : Throw("Riemann solver not set up for multi-material PDEs."); [ - - ] 56 : : } 57 : : 58 : 194 : return fluxfn; 59 : : } 60 : : 61 : : } // inciter:: 62 : : 63 : : #endif // RiemannChoice_h