Quinoa regression test code coverage report
Current view: top level - PDE/CompFlow/Problem - SedovBlastwave.hpp (source / functions) Hit Total Coverage
Commit: Quinoa_v0.3-957-gb4f0efae0 Lines: 1 2 50.0 %
Date: 2021-11-09 13:40:20 Functions: 1 1 100.0 %
Legend: Lines: hit not hit | Branches: + taken - not taken # not executed Branches: 0 0 -

           Branch data     Line data    Source code
       1                 :            : // *****************************************************************************
       2                 :            : /*!
       3                 :            :   \file      src/PDE/CompFlow/Problem/SedovBlastwave.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 Sedov's blastwave
       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 CompFlowProblemSedovBlastwave_h
      15                 :            : #define CompFlowProblemSedovBlastwave_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: Sedov blast-wave
      29                 :            : class CompFlowProblemSedovBlastwave {
      30                 :            : 
      31                 :            :   private:
      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 y,
      39                 :            :                 tk::real z, 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 system, ncomp_t, tk::real x, tk::real y,
      44                 :            :                       tk::real z, tk::real );
      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                 :    7469490 :     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                 :            :     //! Return analytic field names to be output to file
      59                 :            :     std::vector< std::string > analyticFieldNames( ncomp_t ) const;
      60                 :            : 
      61                 :            :     //! Return names of integral variables to be output to diagnostics file
      62                 :            :     std::vector< std::string > names( ncomp_t ) const;
      63                 :            : 
      64                 :            :     //! Return problem type
      65                 :            :     static ctr::ProblemType type() noexcept
      66                 :            :     { return ctr::ProblemType::SEDOV_BLASTWAVE; }
      67                 :            : };
      68                 :            : 
      69                 :            : } // inciter::
      70                 :            : 
      71                 :            : #endif // CompFlowProblemSedovBlasttwave_h

Generated by: LCOV version 1.14