LCOV - code coverage report
Current view: top level - src/bcs - EigenDirichletBC.C (source / functions) Hit Total Coverage
Test: idaholab/moose framework: 419b9d Lines: 11 14 78.6 %
Date: 2025-08-08 20:01:16 Functions: 4 5 80.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 "EigenDirichletBC.h"
      11             : #include "NonlinearSystemBase.h"
      12             : 
      13             : registerMooseObject("MooseApp", EigenDirichletBC);
      14             : 
      15             : InputParameters
      16       15335 : EigenDirichletBC::validParams()
      17             : {
      18       15335 :   InputParameters params = NodalBC::validParams();
      19             : 
      20       15335 :   params.set<MultiMooseEnum>("vector_tags") = "eigen";
      21       15335 :   params.set<MultiMooseEnum>("matrix_tags") = "eigen";
      22             : 
      23       15335 :   params.addClassDescription("Dirichlet BC for eigenvalue solvers");
      24             : 
      25       15335 :   return params;
      26           0 : }
      27             : 
      28         535 : EigenDirichletBC::EigenDirichletBC(const InputParameters & parameters) : NodalBC(parameters) {}
      29             : 
      30             : Real
      31      408772 : EigenDirichletBC::computeQpResidual()
      32             : {
      33      408772 :   return 0.0;
      34             : }
      35             : 
      36             : Real
      37       11997 : EigenDirichletBC::computeQpJacobian()
      38             : {
      39       11997 :   return 0.0;
      40             : }
      41             : 
      42             : Real
      43           0 : EigenDirichletBC::computeQpOffDiagJacobian(unsigned int /*jvar*/)
      44             : {
      45           0 :   return 0.0;
      46             : }

Generated by: LCOV version 1.14