Branch data Line data Source code
1 : : // ***************************************************************************** 2 : : /*! 3 : : \file src/PDE/MultiMat/Problem/InterfaceAdvection.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 the multi-material compressible flow 9 : : equations 10 : : \details This file defines a Problem policy class for the multi-material 11 : : compressible flow equations, defined under PDE/MultiMat. See 12 : : PDE/MultiMat/Problem.hpp for general requirements on Problem policy classes 13 : : for MultiMat. 14 : : */ 15 : : // ***************************************************************************** 16 : : #ifndef MultiMatProblemInterfaceAdvection_h 17 : : #define MultiMatProblemInterfaceAdvection_h 18 : : 19 : : #include <string> 20 : : 21 : : #include "Types.hpp" 22 : : #include "Fields.hpp" 23 : : #include "FunctionPrototypes.hpp" 24 : : #include "SystemComponents.hpp" 25 : : #include "Inciter/Options/Problem.hpp" 26 : : #include "Inciter/InputDeck/InputDeck.hpp" 27 : : 28 : : namespace inciter { 29 : : 30 : : extern ctr::InputDeck g_inputdeck; 31 : : 32 : : //! MultiMat system of PDEs problem: interface advection 33 : : //! \see Waltz, et. al, "Manufactured solutions for the three-dimensional Euler 34 : : //! equations with relevance to Inertial Confinement Fusion", Journal of 35 : : //! Computational Physics 267 (2014) 196-209. 36 : : class MultiMatProblemInterfaceAdvection { 37 : : 38 : : private: 39 : : using ncomp_t = tk::ctr::ncomp_t; 40 : : using eq = tag::multimat; 41 : : 42 : : public: 43 : : //! Initialize numerical solution 44 : : static tk::InitializeFn::result_type 45 : : initialize( ncomp_t system, 46 : : ncomp_t ncomp, 47 : : tk::real x, 48 : : tk::real y, 49 : : tk::real /*z*/, 50 : : tk::real t ); 51 : : 52 : : //! Evaluate analytical solution at (x,y,z,t) for all components 53 : : static std::vector< tk::real > 54 : 0 : analyticSolution( ncomp_t system, ncomp_t ncomp, tk::real x, tk::real y, 55 : : tk::real z, tk::real t ) 56 : 0 : { return initialize( system, ncomp, x, y, z, t ); } 57 : : 58 : : //! Compute and return source term for interface advection 59 : : static tk::MultiMatSrcFn::result_type 60 : : src( ncomp_t, ncomp_t, tk::real, tk::real, tk::real, tk::real, 61 : : tk::real& r, tk::real& ru, tk::real& rv, tk::real& rw, tk::real& re ) 62 : : { r = ru = rv = rw = re = 0.0; } 63 : : 64 : : //! Return names of integral variables to be output to diagnostics file 65 : : static std::vector< std::string > names( ncomp_t ); 66 : : 67 : 1565 : static ctr::ProblemType type() noexcept 68 : 1565 : { return ctr::ProblemType::INTERFACE_ADVECTION; } 69 : : }; 70 : : 71 : : } // inciter:: 72 : : 73 : : #endif // MultiMatProblemInterfaceAdvection_h