LCOV - code coverage report
Current view: top level - src/hdgkernels - MassContinuityIPHDGKernel.C (source / functions) Hit Total Coverage
Test: idaholab/moose navier_stokes: #33416 (b10b36) with base 9fbd27 Lines: 11 12 91.7 %
Date: 2026-07-23 16:18:21 Functions: 3 3 100.0 %
Legend: Lines: hit not hit

          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             : #include "MassContinuityAssemblyHelper.h"
      11             : #include "MassContinuityIPHDGKernel.h"
      12             : 
      13             : registerMooseObject("NavierStokesApp", MassContinuityIPHDGKernel);
      14             : 
      15             : InputParameters
      16         463 : MassContinuityIPHDGKernel::validParams()
      17             : {
      18         463 :   auto params = IPHDGKernel::validParams();
      19         463 :   params += MassContinuityAssemblyHelper::validParams();
      20         463 :   params.addClassDescription("Adds element and interior face integrals for a hybridized interior "
      21             :                              "penalty discontinuous Galerkin discretization of a conservation of "
      22             :                              "mass term for incompressible Navier-Stokes.");
      23         463 :   return params;
      24           0 : }
      25             : 
      26         235 : MassContinuityIPHDGKernel::MassContinuityIPHDGKernel(const InputParameters & params)
      27             :   : IPHDGKernel(params),
      28         235 :     _iphdg_helper(std::make_unique<MassContinuityAssemblyHelper>(
      29         235 :         this, this, this, _mesh, _sys, _assembly, _tid, blockIDs(), std::set<BoundaryID>{}))
      30             : {
      31         235 : }
      32             : 
      33             : IPHDGAssemblyHelper &
      34     4327076 : MassContinuityIPHDGKernel::iphdgHelper()
      35             : {
      36     4327076 :   return *_iphdg_helper;
      37             : }

Generated by: LCOV version 1.14