Branch data Line data Source code
1 : : // ***************************************************************************** 2 : : /*! 3 : : \file src/PDE/CompFlow/Problem/SheddingFlow.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 shedding flow over triangular wedge 9 : : \details This file defines a policy class for the compressible flow 10 : : equations, defined in PDE/CompFlow/CompFlow.h. See PDE/CompFlow/Problem.h 11 : : for general requirements on Problem policy classes for CompFlow. 12 : : */ 13 : : // ***************************************************************************** 14 : : #ifndef CompFlowProblemSheddingFlow_h 15 : : #define CompFlowProblemSheddingFlow_h 16 : : 17 : : #include <string> 18 : : #include <unordered_set> 19 : : 20 : : #include "Types.hpp" 21 : : #include "Fields.hpp" 22 : : #include "FunctionPrototypes.hpp" 23 : : #include "SystemComponents.hpp" 24 : : #include "Inciter/Options/Problem.hpp" 25 : : 26 : : namespace inciter { 27 : : 28 : : //! CompFlow system of PDEs problem: Shedding flow 29 : : class CompFlowProblemSheddingFlow { 30 : : 31 : : protected: 32 : : using ncomp_t = tk::ctr::ncomp_t; 33 : : using eq = tag::compflow; 34 : : 35 : : public: 36 : : //! Initialize numerical solution 37 : : static tk::InitializeFn::result_type 38 : : initialize( ncomp_t system, ncomp_t, tk::real x, tk::real, tk::real, 39 : : tk::real ); 40 : : 41 : : //! Evaluate analytical solution at (x,y,z,t) for all components 42 : : static tk::InitializeFn::result_type 43 : : analyticSolution( ncomp_t, ncomp_t, tk::real, tk::real, tk::real, 44 : : tk::real ) { return {}; } 45 : : 46 : : //! Compute and return source term for this problem 47 : : //! \param[in,out] r Density source 48 : : //! \param[in,out] ru X momentum source 49 : : //! \param[in,out] rv Y momentum source 50 : : //! \param[in,out] rw Z momentum source 51 : : //! \param[in,out] re Specific total energy source 52 : : //! \note The function signature must follow tk::SrcFn 53 : : static tk::CompFlowSrcFn::result_type 54 : 0 : src( ncomp_t, tk::real, tk::real, tk::real, tk::real, 55 : : tk::real& r, tk::real& ru, tk::real& rv, tk::real& rw, tk::real& re ) 56 : 0 : { r = ru = rv = rw = re = 0.0; } 57 : : 58 : : //! \brief Query all side set IDs the user has configured for all components 59 : : //! in this PDE system 60 : : void side( std::unordered_set< int >& conf ) const; 61 : : 62 : : //! Return analytic field names to be output to file 63 : : std::vector< std::string > analyticFieldNames( ncomp_t ) const { return {}; } 64 : : 65 : : //! Return names of integral variables to be output to diagnostics file 66 : : std::vector< std::string > names( ncomp_t ) const; 67 : : 68 : : //! Return problem type 69 : : static ctr::ProblemType type() noexcept 70 : : { return ctr::ProblemType::SHEDDING_FLOW; } 71 : : }; 72 : : 73 : : } // inciter:: 74 : : 75 : : #endif // CompFlowProblemSheddingFlow_h