Branch data Line data Source code
1 : : // ***************************************************************************** 2 : : /*! 3 : : \file src/PDE/Transport/Physics/DGAdvection.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 Physics policy for advection using continuous Galerkin (no-op) 9 : : \details This file defines a Physics policy class for scalar transport using 10 : : discontinuous Galerkin discretization, defined in 11 : : PDE/Transport/DGTransport.h. The class defined here is used to configure 12 : : the behavior of DGTransport. See PDE/Transport/Physics/DG.h for general 13 : : requirements on Physics policy classes for DGTransport. 14 : : */ 15 : : // ***************************************************************************** 16 : : #ifndef TransportPhysicsDGAdvection_h 17 : : #define TransportPhysicsDGAdvection_h 18 : : 19 : : #include <limits> 20 : : 21 : : #include "Inciter/Options/Physics.hpp" 22 : : 23 : : namespace inciter { 24 : : namespace dg { 25 : : 26 : : //! Physics policy for advection using continuous Galerkin (no-op) 27 : : //! \details This class is a no-op, consistent with no additional physics needed 28 : : //! to make the basic implementation in Transport the advection equation. 29 : : class TransportPhysicsAdvection { 30 : : 31 : : public: 32 : : 33 : : //! Add diffusion contribution to rhs at 2nd step stage (no-op) 34 : : static void 35 : : diffusionRhs( tk::ncomp_t, 36 : : tk::ncomp_t, 37 : : tk::real, 38 : : tk::real, 39 : : const std::array< std::array< tk::real, 3 >, 4 >&, 40 : : const std::array< std::size_t, 4 >&, 41 : : const std::vector< std::array< tk::real, 4 > >&, 42 : : const std::vector< const tk::real* >&, 43 : : tk::Fields& ) {} 44 : : 45 : : //! Compute the minimum time step size based on the diffusion 46 : : //! \return A large time step size, i.e., ignore 47 : : static tk::real 48 : : diffusion_dt( tk::ncomp_t, 49 : : tk::ncomp_t, 50 : : tk::real, 51 : : const std::vector< std::array< tk::real, 4 > >& ) 52 : : { return std::numeric_limits< tk::real >::max(); } 53 : : 54 : 11355 : static ctr::PhysicsType type() noexcept 55 : 11355 : { return ctr::PhysicsType::ADVECTION; } 56 : : }; 57 : : 58 : : } // dg:: 59 : : } // inciter:: 60 : : 61 : : #endif // TransportPhysicsDGAdvection_h