Line data Source code
1 : //* This file is part of the MOOSE framework 2 : //* https://mooseframework.inl.gov 3 : //* 4 : //* All rights reserved, see COPYRIGHT for full restrictions 5 : //* https://github.com/idaholab/moose/blob/master/COPYRIGHT 6 : //* 7 : //* Licensed under LGPL 2.1, please see LICENSE for details 8 : //* https://www.gnu.org/licenses/lgpl-2.1.html 9 : 10 : #pragma once 11 : 12 : #include "IPHDGKernel.h" 13 : 14 : class NavierStokesStressIPHDGAssemblyHelper; 15 : 16 : /** 17 : * Implements the stress terms for a interior penalty hybridized discretization of the Navier-Stokes 18 : * equations 19 : */ 20 : class NavierStokesStressIPHDGKernel : public IPHDGKernel 21 : { 22 : public: 23 : static InputParameters validParams(); 24 : NavierStokesStressIPHDGKernel(const InputParameters & params); 25 : 26 : protected: 27 10168484 : virtual IPHDGAssemblyHelper & iphdgHelper() override { return *_iphdg_helper; } 28 : 29 : private: 30 : /// The assembly helper providing the required IP-HDG method implementations 31 : std::unique_ptr<NavierStokesStressIPHDGAssemblyHelper> _iphdg_helper; 32 : };