https://mooseframework.inl.gov
BoundaryRestrictableRequired.C
Go to the documentation of this file.
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 
11 
12 #include "InputParameters.h"
13 
16 {
17 
18  // Create instance of InputParameters
20 
21  // Create user-facing 'boundary' input for restricting inheriting object to boundaries
22  params.addRequiredParam<std::vector<BoundaryName>>(
23  "boundary", "The list of boundary IDs from the mesh where this object applies");
24 
25  // A parameter for disabling error message for objects restrictable by boundary and block,
26  // if the parameter is valid it was already set so don't do anything
27  if (!params.isParamValid("_dual_restrictable"))
28  params.addPrivateParam<bool>("_dual_restrictable", false);
29 
30  return params;
31 }
32 
34  bool nodal)
35  : BoundaryRestrictable(moose_object, nodal)
36 {
37 }
void addPrivateParam(const std::string &name, const T &value)
These method add a parameter to the InputParameters object which can be retrieved like any other para...
The main MOOSE class responsible for handling user-defined parameters in almost every MOOSE system...
/class BoundaryRestrictable /brief Provides functionality for limiting the object to certain boundary...
BoundaryRestrictableRequired(const MooseObject *moose_object, bool nodal)
void addRequiredParam(const std::string &name, const std::string &doc_string)
This method adds a parameter and documentation string to the InputParameters object that will be extr...
InputParameters emptyInputParameters()
Every object that can be built by the factory should be derived from this class.
Definition: MooseObject.h:28
bool isParamValid(const std::string &name) const
This method returns parameters that have been initialized in one fashion or another, i.e.