LCOV - code coverage report
Current view: top level - src/bcs - EigenDirichletBC.C (source / functions) Hit Total Coverage
Test: idaholab/moose framework: 2bf808 Lines: 11 14 78.6 %
Date: 2025-07-17 01:28:37 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       15293 : EigenDirichletBC::validParams()
      17             : {
      18       15293 :   InputParameters params = NodalBC::validParams();
      19             : 
      20       15293 :   params.set<MultiMooseEnum>("vector_tags") = "eigen";
      21       15293 :   params.set<MultiMooseEnum>("matrix_tags") = "eigen";
      22             : 
      23       15293 :   params.addClassDescription("Dirichlet BC for eigenvalue solvers");
      24             : 
      25       15293 :   return params;
      26           0 : }
      27             : 
      28         514 : EigenDirichletBC::EigenDirichletBC(const InputParameters & parameters) : NodalBC(parameters) {}
      29             : 
      30             : Real
      31      381649 : EigenDirichletBC::computeQpResidual()
      32             : {
      33      381649 :   return 0.0;
      34             : }
      35             : 
      36             : Real
      37       10664 : EigenDirichletBC::computeQpJacobian()
      38             : {
      39       10664 :   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