LCOV - code coverage report
Current view: top level - src/actions - AddFVICAction.C (source / functions) Hit Total Coverage
Test: idaholab/moose framework: 2bf808 Lines: 15 16 93.8 %
Date: 2025-07-17 01:28:37 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 "AddFVICAction.h"
      11             : #include "FEProblem.h"
      12             : #include "MooseTypes.h"
      13             : #include "MooseUtils.h"
      14             : 
      15             : registerMooseAction("MooseApp", AddFVICAction, "add_fv_ic");
      16             : 
      17             : InputParameters
      18         573 : AddFVICAction::validParams()
      19             : {
      20         573 :   InputParameters params = MooseObjectAction::validParams();
      21             : 
      22             :   // This is to help with input file validation.  When ICs are created with
      23             :   // this action, they are nested underneath a variable in the input file - so
      24             :   // we implicitly already know the variable name from this nesting and users
      25             :   // don't need to specify it for us with the parameter.  So we say here that
      26             :   // the variable param is provided by the action.
      27        1146 :   params.set<std::vector<std::string>>("_object_params_set_by_action") = {"variable"};
      28             : 
      29         573 :   return params;
      30        1146 : }
      31             : 
      32         166 : AddFVICAction::AddFVICAction(const InputParameters & params) : MooseObjectAction(params) {}
      33             : 
      34             : void
      35         166 : AddFVICAction::act()
      36             : {
      37         166 :   std::vector<std::string> elements;
      38         166 :   MooseUtils::tokenize<std::string>(_pars.blockFullpath(), elements);
      39             : 
      40             :   // The variable name will be the second to last element in the path name
      41         166 :   std::string & var_name = elements[elements.size() - 2];
      42         166 :   _moose_object_pars.set<VariableName>("variable") = var_name;
      43         166 :   const auto & var = _problem->getVariable(0, var_name);
      44             : 
      45         166 :   if (!var.isFV())
      46           0 :     mooseError(
      47             :         "Finite element variables do not support an [FVInitialCondition] subblock, try using a "
      48             :         "separate [InitialConditions] block in your input file.");
      49             :   else
      50         166 :     _problem->addFVInitialCondition(_type, var_name, _moose_object_pars);
      51         166 : }

Generated by: LCOV version 1.14