35 virtual void execute()
override;
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;
A special InterfaceUserObject computing average values across an interface given the average type (se...
This is a base class for userobjects collecting values of variables or material properites across an ...
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...
virtual void finalize() override
Finalize.
static InputParameters validParams()
const MooseEnum _value_type
moose enum deciding this userobject reture value type
static MooseEnum valueOptions()
the method defining the returning value type: value, rate or increment
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.
This is a "smart" enum class intended to replace many of the shortcomings in the C++ enum type It sho...
virtual void initialize() override
Called before execute() is ever called so that data can be cleared.
InterfaceQpUserObjectBase(const InputParameters ¶meters)
virtual void execute() override
Execute method.
DIE A HORRIBLE DEATH HERE typedef LIBMESH_DEFAULT_SCALAR_TYPE Real
virtual void threadJoin(const UserObject &) override
Must override.
const InputParameters & parameters() const
Get the parameters of the object.
Real getSideAverageValue(const dof_id_type elem, const unsigned int side) const
function returning the element side average value
Real getQpValue(const dof_id_type elem, const unsigned int side, unsigned int qp) const
method returning the quadrature point value
virtual ~InterfaceQpUserObjectBase()
Base class for user-specific data.