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 "NodalPatchRecoveryMaterialProperty.h" 11 : 12 : registerMooseObject("MooseApp", NodalPatchRecoveryMaterialProperty); 13 : 14 : InputParameters 15 14290 : NodalPatchRecoveryMaterialProperty::validParams() 16 : { 17 14290 : InputParameters params = IndexableProperty<NodalPatchRecoveryBase, false>::validParams(); 18 14290 : params.addClassDescription( 19 : "Prepare patches for use in nodal patch recovery based on a material property."); 20 14290 : return params; 21 0 : } 22 : 23 13 : NodalPatchRecoveryMaterialProperty::NodalPatchRecoveryMaterialProperty( 24 13 : const InputParameters & parameters) 25 13 : : NodalPatchRecoveryBase(parameters), _prop(this) 26 : { 27 13 : }