Branch data Line data Source code
1 : : // ***************************************************************************** 2 : : /*! 3 : : \file src/PDE/MultiMat/Problem/UnderwaterEx.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 underwater explosion 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 MultiMatProblemUnderwaterEx_h 16 : : #define MultiMatProblemUnderwaterEx_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: Underwater explosion problem 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 MultiMatProblemUnderwaterEx { 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 y, tk::real z, tk::real ); 44 : : 45 : : //! Evaluate analytical solution at (x,y,z,t) for all components 46 : : static std::vector< tk::real > 47 : : analyticSolution( ncomp_t ncomp, 48 : : const std::vector< EOS >& mat_blk, tk::real x, 49 : : tk::real y, tk::real z, tk::real t ) 50 : 0 : { return initialize( ncomp, mat_blk, x, y, z, t ); } 51 : : 52 : : //! Compute and return source term for this problem 53 : : static tk::SrcFn::result_type 54 : 0 : src( ncomp_t, const std::vector< EOS >&, tk::real, tk::real, 55 : : tk::real, tk::real, 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 : : static ctr::ProblemType type() noexcept 64 : : { return ctr::ProblemType::UNDERWATER_EX; } 65 : : }; 66 : : 67 : : } // inciter:: 68 : : 69 : : #endif // MultiMatProblemUnderwaterEx_h