Branch data Line data Source code
1 : : // ***************************************************************************** 2 : : /*! 3 : : \file src/PDE/MultiMat/Problem/ShockHeBubble.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 gas impact 9 : : \details This file defines a policy class for the multi-material 10 : : compressible flow equations, defined in PDE/MultiMat/DGMultiMat.hpp. 11 : : See PDE/MultiMat/Problem.hpp for general requirements on Problem policy 12 : : classes for MultiMat. 13 : : */ 14 : : // ***************************************************************************** 15 : : #ifndef MultiMatProblemShockHeBubble_h 16 : : #define MultiMatProblemShockHeBubble_h 17 : : 18 : : #include <string> 19 : : 20 : : #include "Types.hpp" 21 : : #include "Fields.hpp" 22 : : #include "FunctionPrototypes.hpp" 23 : : #include "Inciter/Options/Problem.hpp" 24 : : #include "Inciter/InputDeck/InputDeck.hpp" 25 : : #include "EoS/EOS.hpp" 26 : : 27 : : namespace inciter { 28 : : 29 : : //! MultiMat system of PDEs problem: Shock He-bubble interaction 30 : : //! \see Quirk, J. J., & Karni, S. (1996). On the dynamics of a shock–bubble 31 : : //! interaction. Journal of Fluid Mechanics, 318, 129-163. 32 : : class MultiMatProblemShockHeBubble { 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 y, tk::real z, 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 >&,tk::real, tk::real, 54 : : tk::real, tk::real, std::vector< tk::real >& sv ) 55 : : { 56 [ - - ]: 0 : for (std::size_t i=0; i<sv.size(); ++i) { 57 : 0 : sv[i] = 0.0; 58 : : } 59 : 0 : } 60 : : 61 : : //! Return problem type 62 : 9084 : static ctr::ProblemType type() noexcept 63 : 9084 : { return ctr::ProblemType::SHOCK_HEBUBBLE; } 64 : : }; 65 : : 66 : : } // inciter:: 67 : : 68 : : #endif // MultiMatProblemShockHeBubble_h