Branch data Line data Source code
1 : : // ***************************************************************************** 2 : : /*! 3 : : \file src/PDE/Riemann/LaxFriedrichs.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 Lax-Friedrichs Riemann flux function 9 : : \details This file implements the Lax-Friedrichs Riemann solver. 10 : : */ 11 : : // ***************************************************************************** 12 : : #ifndef LaxFriedrichs_h 13 : : #define LaxFriedrichs_h 14 : : 15 : : #include <vector> 16 : : 17 : : #include "Types.hpp" 18 : : #include "Fields.hpp" 19 : : #include "FunctionPrototypes.hpp" 20 : : #include "Inciter/Options/Flux.hpp" 21 : : #include "EoS/EoS.hpp" 22 : : 23 : : namespace inciter { 24 : : 25 : : //! Lax-Friedrichs approximate Riemann solver 26 : : //! \details This class can be used polymorphically with inciter::RiemannSolver 27 : : struct LaxFriedrichs { 28 : : 29 : : //! Lax-Friedrichs approximate Riemann solver flux function 30 : : //! \param[in] fn Face/Surface normal 31 : : //! \param[in] u Left and right unknown/state vector 32 : : //! \return Riemann solution according Lax and Friedrichs 33 : : //! \note The function signature must follow tk::RiemannFluxFn 34 : : static tk::RiemannFluxFn::result_type 35 : 1248000 : flux( const std::array< tk::real, 3 >& fn, 36 : : const std::array< std::vector< tk::real >, 2 >& u, 37 : : const std::vector< std::array< tk::real, 3 > >& = {} ) 38 : : { 39 [ + - ]: 1248000 : std::vector< tk::real > flx( u[0].size(), 0.0 ), 40 [ + - ]: 2496000 : fluxl( u[0].size(), 0.0 ), 41 [ + - ]: 2496000 : fluxr( u[0].size(), 0.0 ); 42 : : 43 : : // Primitive variables 44 : 1248000 : auto rhol = u[0][0]; 45 : 1248000 : auto rhor = u[1][0]; 46 : : 47 : 1248000 : auto ul = u[0][1]/rhol; 48 : 1248000 : auto vl = u[0][2]/rhol; 49 : 1248000 : auto wl = u[0][3]/rhol; 50 : : 51 : 1248000 : auto ur = u[1][1]/rhor; 52 : 1248000 : auto vr = u[1][2]/rhor; 53 : 1248000 : auto wr = u[1][3]/rhor; 54 : : 55 [ + - ]: 1248000 : auto pl = eos_pressure< tag::compflow >( 0, rhol, ul, vl, wl, u[0][4] ); 56 [ + - ]: 1248000 : auto pr = eos_pressure< tag::compflow >( 0, rhor, ur, vr, wr, u[1][4] ); 57 : : 58 [ + - ]: 1248000 : auto al = eos_soundspeed< tag::compflow >( 0, rhol, pl ); 59 [ + - ]: 1248000 : auto ar = eos_soundspeed< tag::compflow >( 0, rhor, pr ); 60 : : 61 : : // Face-normal velocities 62 : 1248000 : auto vnl = ul*fn[0] + vl*fn[1] + wl*fn[2]; 63 : 1248000 : auto vnr = ur*fn[0] + vr*fn[1] + wr*fn[2]; 64 : : 65 : : // Flux functions 66 : 1248000 : fluxl[0] = u[0][0] * vnl; 67 : 1248000 : fluxl[1] = u[0][1] * vnl + pl*fn[0]; 68 : 1248000 : fluxl[2] = u[0][2] * vnl + pl*fn[1]; 69 : 1248000 : fluxl[3] = u[0][3] * vnl + pl*fn[2]; 70 : 1248000 : fluxl[4] = ( u[0][4] + pl ) * vnl; 71 : : 72 : 1248000 : fluxr[0] = u[1][0] * vnr; 73 : 1248000 : fluxr[1] = u[1][1] * vnr + pr*fn[0]; 74 : 1248000 : fluxr[2] = u[1][2] * vnr + pr*fn[1]; 75 : 1248000 : fluxr[3] = u[1][3] * vnr + pr*fn[2]; 76 : 1248000 : fluxr[4] = ( u[1][4] + pr ) * vnr; 77 : : 78 : 1248000 : auto lambda = std::max(al,ar) + std::max( std::abs(vnl), std::abs(vnr) ); 79 : : 80 : : // Numerical flux function 81 [ + + ]: 7488000 : for(std::size_t c=0; c<5; ++c) 82 : 6240000 : flx[c] = 0.5 * (fluxl[c] + fluxr[c] - lambda*(u[1][c] - u[0][c])); 83 : : 84 : 2496000 : return flx; 85 : : } 86 : : 87 : : //! Flux type accessor 88 : : //! \return Flux type 89 : 80 : static ctr::FluxType type() noexcept { return ctr::FluxType::LaxFriedrichs; } 90 : : }; 91 : : 92 : : } // inciter:: 93 : : 94 : : #endif // LaxFriedrichs_h