www.mooseframework.org
CoupleableMooseVariableDependencyIntermediateInterface.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 
11 
14  bool nodal,
15  bool is_fv)
16  : Coupleable(moose_object, nodal, is_fv),
17  ScalarCoupleable(moose_object),
19 {
20  for (MooseVariableFEBase * coupled_var : getCoupledMooseVars())
21  addMooseVariableDependency(coupled_var);
22 }
This class provides an interface for common operations on field variables of both FE and FV types wit...
CoupleableMooseVariableDependencyIntermediateInterface(const MooseObject *moose_object, bool nodal, bool is_fv=false)
Every object that can be built by the factory should be derived from this class.
Definition: MooseObject.h:33
const std::vector< MooseVariableFieldBase * > & getCoupledMooseVars() const
Get the list of all coupled variables.
Definition: Coupleable.h:70
Interface for objects that needs coupling capabilities.
Definition: Coupleable.h:45
void addMooseVariableDependency(MooseVariableFieldBase *var)
Call this function to add the passed in MooseVariableFieldBase as a variable that this object depends...
Interface for objects that needs scalar coupling capabilities.