LCOV - code coverage report
Current view: top level - src/actions - AddMaterialAction.C (source / functions) Hit Total Coverage
Test: idaholab/moose framework: #32971 (54bef8) with base c6cf66 Lines: 12 13 92.3 %
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 "AddMaterialAction.h"
      11             : #include "FEProblem.h"
      12             : 
      13             : registerMooseAction("MooseApp", AddMaterialAction, "add_material");
      14             : 
      15             : InputParameters
      16       13193 : AddMaterialAction::validParams()
      17             : {
      18       13193 :   InputParameters params = MooseObjectAction::validParams();
      19       13193 :   params.addClassDescription("Add a Material object to the simulation.");
      20       13193 :   return params;
      21           0 : }
      22             : 
      23       13147 : AddMaterialAction::AddMaterialAction(const InputParameters & params) : MooseObjectAction(params) {}
      24             : 
      25             : void
      26       13024 : AddMaterialAction::act()
      27             : {
      28             : #ifdef MOOSE_KOKKOS_ENABLED
      29        9756 :   if (_moose_object_pars.isKokkosObject())
      30         942 :     _problem->addKokkosMaterial(_type, _name, _moose_object_pars);
      31             :   else
      32             : #endif
      33             :   {
      34       12082 :     if (!_moose_object_pars.get<bool>("_interface"))
      35       11742 :       _problem->addMaterial(_type, _name, _moose_object_pars);
      36             :     else
      37         340 :       _problem->addInterfaceMaterial(_type, _name, _moose_object_pars);
      38             :   }
      39       12918 : }

Generated by: LCOV version 1.14