Branch data Line data Source code
1 : : // ***************************************************************************** 2 : : /*! 3 : : \file src/PDE/MultiMat/Problem/WaterAirShocktube.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 Water-Air shock-tube 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 MultiMatProblemWaterAirShocktube_h 16 : : #define MultiMatProblemWaterAirShocktube_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: Water-Air shock-tube 30 : : //! \see Chiapolino, A., Saurel, R., & Nkonga, B. (2017). Sharpening diffuse 31 : : //! interfaces with compressible fluids on unstructured meshes. Journal of 32 : : //! Computational Physics, 340, 389-417. 33 : : class MultiMatProblemWaterAirShocktube { 34 : : 35 : : protected: 36 : : using ncomp_t = tk::ncomp_t; 37 : : using eq = tag::multimat; 38 : : 39 : : public: 40 : : //! Initialize numerical solution 41 : : static tk::InitializeFn::result_type 42 : : initialize( ncomp_t ncomp, const std::vector< EOS >&, 43 : : tk::real x, tk::real, tk::real, tk::real ); 44 : : 45 : : static std::vector< tk::real > 46 : : 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 : 1212800 : src( ncomp_t, const std::vector< EOS >&, tk::real, tk::real, 54 : : tk::real, tk::real, std::vector< tk::real >& sv ) 55 : : { 56 [ + + ]: 12128000 : for (std::size_t i=0; i<sv.size(); ++i) { 57 : 10915200 : sv[i] = 0.0; 58 : : } 59 : 1212800 : } 60 : : 61 : : //! Return problem type 62 : : static ctr::ProblemType type() noexcept 63 : : { return ctr::ProblemType::WATERAIR_SHOCKTUBE; } 64 : : }; 65 : : 66 : : } // inciter:: 67 : : 68 : : #endif // MultiMatProblemWaterAirShocktube_h