LCOV - code coverage report
Current view: top level - src/hdgkernels - DiffusionIPHDGKernel.C (source / functions) Hit Total Coverage
Test: idaholab/moose framework: #32971 (54bef8) with base c6cf66 Lines: 11 12 91.7 %
Date: 2026-05-29 20:35:17 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 "DiffusionIPHDGAssemblyHelper.h"
      11             : #include "DiffusionIPHDGKernel.h"
      12             : 
      13             : registerMooseObject("MooseApp", DiffusionIPHDGKernel);
      14             : 
      15             : InputParameters
      16        3438 : DiffusionIPHDGKernel::validParams()
      17             : {
      18        3438 :   auto params = IPHDGKernel::validParams();
      19        3438 :   params += DiffusionIPHDGAssemblyHelper::validParams();
      20        3438 :   params.addClassDescription(
      21             :       "Adds the element and interior face weak forms for a hybridized interior penalty "
      22             :       "discontinuous Galerkin discretization of a diffusion term.");
      23        3438 :   return params;
      24           0 : }
      25             : 
      26         190 : DiffusionIPHDGKernel::DiffusionIPHDGKernel(const InputParameters & params)
      27             :   : IPHDGKernel(params),
      28         190 :     _iphdg_helper(std::make_unique<DiffusionIPHDGAssemblyHelper>(
      29         380 :         this, this, this, _sys, _assembly, _tid, blockIDs(), std::set<BoundaryID>{}))
      30             : {
      31         190 : }
      32             : 
      33             : IPHDGAssemblyHelper &
      34      910263 : DiffusionIPHDGKernel::iphdgHelper()
      35             : {
      36      910263 :   return *_iphdg_helper;
      37             : }

Generated by: LCOV version 1.14