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 "IndicatorMarker.h" 11 : #include "SubProblem.h" 12 : #include "MooseVariableFieldBase.h" 13 : 14 : InputParameters 15 29487 : IndicatorMarker::validParams() 16 : { 17 29487 : InputParameters params = Marker::validParams(); 18 29487 : params.addRequiredParam<IndicatorName>("indicator", 19 : "The name of the Indicator that this Marker uses."); 20 29487 : return params; 21 0 : } 22 : 23 503 : IndicatorMarker::IndicatorMarker(const InputParameters & parameters) 24 503 : : Marker(parameters), _error_vector(getErrorVector(parameters.get<IndicatorName>("indicator"))) 25 : { 26 503 : if (!_subproblem.getVariable(0, getParam<IndicatorName>("indicator")).hasBlocks(blockIDs())) 27 4 : mooseWarning("The block restriction of the marker is larger than the block restriction of its " 28 : "indicator. Blocks on which the indicator is not active will not be marked, and " 29 : "therefore will not be refined or coarsened"); 30 499 : }