PDE/ConfigureMultiMat.hpp
// ***************************************************************************** /*! \file src/PDE/ConfigureMultiMat.hpp \copyright 2012-2015 J. Bakosi, 2016-2018 Los Alamos National Security, LLC., 2019-2021 Triad National Security, LLC. All rights reserved. See the LICENSE file for details. \brief Register and compile configuration for multi-material compressible flow PDE \details Register and compile configuration for compressible multi-material flow PDE. */ // ***************************************************************************** #ifndef ConfigureMultiMat_h #define ConfigureMultiMat_h #include "PDEFactory.hpp" #include "Inciter/Options/PDE.hpp" namespace inciter { //! Register compressible flow PDEs into PDE factory void registerMultiMat( DGFactory& df, FVFactory& ff, std::set< ctr::PDEType >& fvt, std::set< ctr::PDEType >& dgt ); //! Return information on the multi-material compressible flow PDE std::vector< std::pair< std::string, std::string > > infoMultiMat( std::map< ctr::PDEType, tk::ncomp_t >& cnt ); } // inciter:: #endif // ConfigureMultiMat_h