Branch data Line data Source code
1 : : // ***************************************************************************** 2 : : /*! 3 : : \file src/PDE/DGPDE.cpp 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 Functions common to discontinuous Galerkin PDE types 9 : : \details Functions common to discontinuous Galerkin PDE types. 10 : : */ 11 : : // ***************************************************************************** 12 : : 13 : : #include "DGPDE.hpp" 14 : : 15 : : [[noreturn]] tk::StateFn::result_type 16 : 0 : inciter::invalidBC( ncomp_t, const std::vector< EOS >&, 17 : : const std::vector< tk::real >&, tk::real, tk::real, tk::real, 18 : : tk::real, const std::array< tk::real, 3>& ) 19 : : // ***************************************************************************** 20 : : //! State function for invalid/un-configured boundary conditions 21 : : //! \note The function signature must follow tk::StateFn 22 : : // ***************************************************************************** 23 : : { 24 [ - - ][ - - ]: 0 : Throw( "Invalid boundary condition set up in input file or the PDE does not " [ - - ] 25 : : "support this BC type" ); 26 : : }