Branch data Line data Source code
1 : : // ***************************************************************************** 2 : : /*! 3 : : \file src/PDE/MultiMat/Problem/RichtmyerMeshkov.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 Problem configuration for equilibrium interface advection 9 : : \details This file defines a policy class for the multi-material 10 : : compressible flow equations, defined in PDE/MultiMat/MultiMat.hpp. 11 : : See PDE/MultiMat/Problem.hpp for general requirements on Problem policy 12 : : classes for MultiMat. 13 : : */ 14 : : // ***************************************************************************** 15 : : #ifndef MultiMatProblemRichtmyerMeshkov_h 16 : : #define MultiMatProblemRichtmyerMeshkov_h 17 : : 18 : : #include <string> 19 : : 20 : : #include "Types.hpp" 21 : : #include "Fields.hpp" 22 : : #include "Vector.hpp" 23 : : #include "FunctionPrototypes.hpp" 24 : : #include "Inciter/Options/Problem.hpp" 25 : : #include "Inciter/InputDeck/InputDeck.hpp" 26 : : #include "MultiMat/MultiMatIndexing.hpp" 27 : : #include "EoS/EOS.hpp" 28 : : 29 : : namespace inciter { 30 : : 31 : : //! MultiMat system of PDEs problem: equilibrium interface advection 32 : : class MultiMatProblemRichtmyerMeshkov { 33 : : 34 : : protected: 35 : : using ncomp_t = tk::ncomp_t; 36 : : using eq = tag::multimat; 37 : : 38 : : public: 39 : : //! Initialize numerical solution 40 : : static tk::InitializeFn::result_type 41 : : initialize( ncomp_t ncomp, const std::vector< EOS >&, 42 : : tk::real x, tk::real, tk::real, tk::real ); 43 : : 44 : : //! Evaluate analytical solution at (x,y,z,t) for all components 45 : : static std::vector< tk::real > 46 : 0 : analyticSolution( ncomp_t ncomp, 47 : : const std::vector< EOS >& mat_blk, tk::real x, 48 : : tk::real y, tk::real z, tk::real t ) 49 : 0 : { return initialize( ncomp, mat_blk, x, y, z, t ); } 50 : : 51 : : //! Compute and return source term for this problem 52 : : static tk::SrcFn::result_type 53 : 0 : src( ncomp_t, const std::vector< EOS >&, 54 : : tk::real, tk::real, tk::real, tk::real, 55 : : std::vector< tk::real >& sv ) 56 : : { 57 [ - - ]: 0 : for (std::size_t i=0; i<sv.size(); ++i) { 58 : 0 : sv[i] = 0.0; 59 : : } 60 : 0 : } 61 : : 62 : : //! Return problem type 63 : 9084 : static ctr::ProblemType type() noexcept 64 : 9084 : { return ctr::ProblemType::RICHTMYER_MESHKOV; } 65 : : }; 66 : : 67 : : } // inciter:: 68 : : 69 : : #endif // MultiMatProblemRichtmyerMeshkov_h