LCOV - code coverage report
Current view: top level - src/actions - THMDebugAction.C (source / functions) Hit Total Coverage
Test: idaholab/moose thermal_hydraulics: #32971 (54bef8) with base c6cf66 Lines: 11 12 91.7 %
Date: 2026-05-29 20:41:18 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 "THMDebugAction.h"
      11             : #include "THMProblem.h"
      12             : 
      13             : registerMooseAction("ThermalHydraulicsApp", THMDebugAction, "THM:debug_action");
      14             : 
      15             : InputParameters
      16          87 : THMDebugAction::validParams()
      17             : {
      18          87 :   InputParameters params = Action::validParams();
      19         174 :   params.addParam<bool>("check_jacobian", false, "Set to true to check jacobian");
      20          87 :   params.addClassDescription("Add specific THM debugging option.");
      21             : 
      22          87 :   return params;
      23           0 : }
      24             : 
      25          87 : THMDebugAction::THMDebugAction(const InputParameters & params) : Action(params) {}
      26             : 
      27             : void
      28          87 : THMDebugAction::act()
      29             : {
      30          87 :   THMProblem * thm_problem = dynamic_cast<THMProblem *>(_problem.get());
      31          87 :   if (thm_problem)
      32         158 :     thm_problem->setCheckJacobian(getParam<bool>("check_jacobian"));
      33          87 : }

Generated by: LCOV version 1.14