Go to the documentation of this file.
16 InputParameters params = validParams<GeneralUserObject>();
21 : ThreadedGeneralUserObject(parameters),
22 _cached_flux_elem_id(
libMesh::invalid_uint),
23 _cached_flux_side_id(
libMesh::invalid_uint),
24 _cached_jacobian_elem_id(
libMesh::invalid_uint),
25 _cached_jacobian_side_id(
libMesh::invalid_uint)
53 const std::vector<Real> &
56 const std::vector<Real> & uvec1,
57 const RealVectorValue & dwave)
const
69 const DenseMatrix<Real> &
72 const std::vector<Real> & uvec1,
73 const RealVectorValue & dwave)
const
DenseMatrix< Real > _jac1
Cached flux Jacobian.
unsigned int _cached_flux_side_id
side ID of the cached flux values
unsigned int _cached_jacobian_side_id
side ID of the cached Jacobian values
virtual const DenseMatrix< Real > & getJacobian(unsigned int iside, dof_id_type ielem, const std::vector< Real > &uvec1, const RealVectorValue &dwave) const
Get the boundary Jacobian matrix.
std::vector< Real > _flux
Cached flux.
virtual void calcFlux(unsigned int iside, dof_id_type ielem, const std::vector< Real > &uvec1, const RealVectorValue &dwave, std::vector< Real > &flux) const =0
Solve the Riemann problem on the boundary face.
unsigned int _cached_jacobian_elem_id
element ID of the cached Jacobian values
virtual void finalize() override
BoundaryFluxBase(const InputParameters ¶meters)
virtual void calcJacobian(unsigned int iside, dof_id_type ielem, const std::vector< Real > &uvec1, const RealVectorValue &dwave, DenseMatrix< Real > &jac1) const =0
Compute the Jacobian matrix on the boundary face.
unsigned int _cached_flux_elem_id
element ID of the cached flux values
virtual void threadJoin(const UserObject &) override
virtual void execute() override
virtual const std::vector< Real > & getFlux(unsigned int iside, dof_id_type ielem, const std::vector< Real > &uvec1, const RealVectorValue &dwave) const
Get the boundary flux vector.
virtual void initialize() override
InputParameters validParams< BoundaryFluxBase >()