www.mooseframework.org
FunctionInterface.C
Go to the documentation of this file.
1 //* This file is part of the MOOSE framework
2 //* https://www.mooseframework.org
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 "FunctionInterface.h"
11 #include "Function.h"
12 #include "SubProblem.h"
13 #include "MooseTypes.h"
14 #include "FEProblemBase.h"
15 
18 {
19  return emptyInputParameters();
20 }
21 
23  : _fni_params(moose_object->parameters()),
24  _fni_feproblem(*_fni_params.getCheckedPointerParam<FEProblemBase *>("_fe_problem_base")),
25  _fni_tid(_fni_params.have_parameter<THREAD_ID>("_tid") ? _fni_params.get<THREAD_ID>("_tid") : 0)
26 {
27 }
28 
29 const Function &
30 FunctionInterface::getFunction(const std::string & name) const
31 {
32  return _fni_feproblem.getFunction(_fni_params.get<FunctionName>(name), _fni_tid);
33 }
34 
35 const Function &
36 FunctionInterface::getFunctionByName(const FunctionName & name) const
37 {
39 }
40 
41 bool
42 FunctionInterface::hasFunction(const std::string & param_name) const
43 {
44  return hasFunctionByName(_fni_params.get<FunctionName>(param_name));
45 }
46 
47 bool
48 FunctionInterface::hasFunctionByName(const FunctionName & name) const
49 {
51 }
std::string name(const ElemQuality q)
Base class for function objects.
Definition: Function.h:37
FunctionInterface(const MooseObject *moose_object)
std::vector< std::pair< R1, R2 > > get(const std::string &param1, const std::string &param2) const
Combine two vector parameters into a single vector of pairs.
const Function & getFunction(const std::string &name) const
Get a function with a given name.
T * get(const std::unique_ptr< T > &u)
The MooseUtils::get() specializations are used to support making forwards-compatible code changes fro...
Definition: MooseUtils.h:1147
The main MOOSE class responsible for handling user-defined parameters in almost every MOOSE system...
Specialization of SubProblem for solving nonlinear equations plus auxiliary equations.
InputParameters emptyInputParameters()
virtual Function & getFunction(const std::string &name, const THREAD_ID tid=0)
const THREAD_ID _fni_tid
Thread ID.
Every object that can be built by the factory should be derived from this class.
Definition: MooseObject.h:33
bool hasFunctionByName(const FunctionName &name) const
Determine if the function exists.
FEProblemBase & _fni_feproblem
Reference to FEProblemBase instance.
bool hasFunction(const std::string &param_name) const
Determine if the function exists.
const InputParameters & _fni_params
Parameters of the object with this interface.
static InputParameters validParams()
const Function & getFunctionByName(const FunctionName &name) const
Get a function with a given name.
virtual bool hasFunction(const std::string &name, const THREAD_ID tid=0)
unsigned int THREAD_ID
Definition: MooseTypes.h:198