35 virtual void execute()
override;
42 Real
getQpValue(
const dof_id_type elem,
const unsigned int side,
unsigned int qp)
const;
61 std::map<std::pair<dof_id_type, unsigned int>, std::vector<Real>>
_map_values;
62 std::map<std::pair<dof_id_type, unsigned int>, std::vector<Real>>
_map_JxW;
This is a base class for userobjects collecting values of variables or material properites across an ...
static InputParameters validParams()
virtual void threadJoin(const UserObject &) override
Must override.
std::map< std::pair< dof_id_type, unsigned int >, std::vector< Real > > _map_JxW
virtual void initialSetup() override
Gets called at the beginning of the simulation before this object is asked to do its job.
Real getSideAverageValue(const dof_id_type elem, const unsigned int side) const
function returning the element side average value
virtual void finalize() override
Finalize.
virtual void initialize() override
Called before execute() is ever called so that data can be cleared.
Real getQpValue(const dof_id_type elem, const unsigned int side, unsigned int qp) const
method returning the quadrature point value
virtual ~InterfaceQpUserObjectBase()
const MooseEnum _value_type
moose enum deciding this userobject reture value type
virtual Real computeRealValue(const unsigned int)=0
method to overrid in child classes returnig a real value
std::map< std::pair< dof_id_type, unsigned int >, std::vector< Real > > _map_values
these maps are used to store QP data.
static MooseEnum valueOptions()
the method defining the returning value type: value, rate or increment
virtual void execute() override
Execute method.
A special InterfaceUserObject computing average values across an interface given the average type (se...
const InputParameters & parameters() const
Get the parameters of the object.
This is a "smart" enum class intended to replace many of the shortcomings in the C++ enum type It sho...
Base class for user-specific data.