72 template <
typename Derived>
78 ::Kokkos::abort(
"Default computeQpJacobian() should never be called. Make sure you properly "
79 "redefined this method in your class without typos.");
93 template <
typename Derived>
101 "Default computeQpOffDiagJacobian() should never be called. Make sure you properly "
102 "redefined this method in your class without typos.");
114 template <
typename Derived>
117 return &IntegratedBC::computeQpJacobian<Derived>;
119 template <
typename Derived>
122 return &IntegratedBC::computeQpOffDiagJacobian<Derived>;
130 template <
typename Derived>
131 KOKKOS_FUNCTION
void operator()(ResidualLoop,
const ThreadID tid,
const Derived & bc)
const;
132 template <
typename Derived>
133 KOKKOS_FUNCTION
void operator()(JacobianLoop,
const ThreadID tid,
const Derived & bc)
const;
134 template <
typename Derived>
150 template <
typename Derived>
157 template <
typename Derived>
164 template <
typename Derived>
196template <
typename Derived>
207 bc.computeResidualInternal(bc, datum);
210template <
typename Derived>
221 bc.computeJacobianInternal(bc, datum);
224template <
typename Derived>
233 if (!sys.isVariableActive(jvar,
kokkosMesh().getElementInfo(elem).subdomain))
240 bc.computeOffDiagJacobianInternal(bc, datum);
243template <
typename Derived>
249 [&](Real * local_re,
const unsigned int ib,
const unsigned int ie)
251 for (
unsigned int qp = 0; qp < datum.
n_qps(); ++qp)
252 for (
unsigned int i = ib; i < ie; ++i)
253 local_re[i] += datum.
JxW(qp) * bc.template computeQpResidual<Derived>(i, qp, datum);
257template <
typename Derived>
263 [&](Real * local_ke,
const unsigned int ib,
const unsigned int ie,
const unsigned int j)
265 for (
unsigned int qp = 0; qp < datum.
n_qps(); ++qp)
266 for (
unsigned int i = ib; i < ie; ++i)
267 local_ke[i] += datum.
JxW(qp) * bc.template computeQpJacobian<Derived>(i, j, qp, datum);
271template <
typename Derived>
277 [&](Real * local_ke,
const unsigned int ib,
const unsigned int ie,
const unsigned int j)
279 for (
unsigned int qp = 0; qp < datum.
n_qps(); ++qp)
280 for (
unsigned int i = ib; i < ie; ++i)
281 local_ke[i] += datum.
JxW(qp) * bc.template computeQpOffDiagJacobian<Derived>(
282 i, j, datum.
jvar(), qp, datum);
KOKKOS_FUNCTION auto kokkosBoundaryElementSideID(Moose::Kokkos::ThreadID tid) const
Get the contiguous element ID - side index pair this Kokkos thread is operating on.
const InputParameters & parameters() const
Get the parameters of the object.
The Kokkos object that holds thread-private data in the parallel operations of Kokkos kernels.
KOKKOS_FUNCTION unsigned int jvar() const
Get the coupled variable number.
KOKKOS_FUNCTION const Assembly & kokkosAssembly() const
Get the const reference of the Kokkos assembly.
KOKKOS_FUNCTION Real JxW(const unsigned int qp)
Get the transformed Jacobian weight.
KOKKOS_FUNCTION void set_local_parallel(const unsigned int local_thread_id, const unsigned int num_local_threads)
Set local parallelization option.
KOKKOS_FUNCTION unsigned int n_qps() const
Get the number of local quadrature points.
The base class for Kokkos integrated boundary conditions.
The base class for a user to derive their own Kokkos integrated boundary conditions.
const VariablePhiValue _phi
Current shape function.
KOKKOS_FUNCTION Real computeQpJacobian(const unsigned int, const unsigned int, const unsigned int, AssemblyDatum &) const
Default methods to prevent compile errors even when these methods were not defined in the derived cla...
static auto defaultJacobian()
Functions used to check if users have overriden the hook methods, whose calculations can be skipped w...
static InputParameters validParams()
KOKKOS_FUNCTION Real computeQpOffDiagJacobian(const unsigned int, const unsigned int, const unsigned int, const unsigned int, AssemblyDatum &) const
Compute off-diagonal Jacobian contribution on a quadrature point.
KOKKOS_FUNCTION void computeResidualInternal(const Derived &bc, AssemblyDatum &datum) const
The parallel computation bodies that can be customized in the derived class by defining them in the d...
IntegratedBC(const InputParameters ¶meters)
Constructor.
KOKKOS_FUNCTION void operator()(ResidualLoop, const ThreadID tid, const Derived &bc) const
The parallel computation entry functions called by Kokkos.
const VariableGradient _grad_u
Gradient of the current solution at quadrature points.
const VariableValue _u
Current solution at quadrature points.
const VariableTestGradient _grad_test
Gradient of the current test function.
const VariablePhiGradient _grad_phi
Gradient of the current shape function.
static auto defaultOffDiagJacobian()
KOKKOS_FUNCTION void computeJacobianInternal(const Derived &bc, AssemblyDatum &datum) const
Compute diagonal Jacobian.
const VariableTestValue _test
Current test function.
virtual void computeJacobian() override
Dispatch diagonal and off-diagonal Jacobian calculation.
KOKKOS_FUNCTION void computeOffDiagJacobianInternal(const Derived &bc, AssemblyDatum &datum) const
Compute off-diagonal Jacobian.
virtual void computeResidual() override
Dispatch residual calculation.
KOKKOS_FUNCTION const Mesh & kokkosMesh() const
Get the const reference of the Kokkos mesh.
Variable _kokkos_var
Kokkos variable.
Thread _thread
Kokkos thread object.
KOKKOS_FUNCTION void computeJacobianInternal(AssemblyDatum &datum, function body) const
The common loop structure template for computing elemental Jacobian.
KOKKOS_FUNCTION void computeResidualInternal(AssemblyDatum &datum, function body) const
The common loop structure template for computing elemental residual.
KOKKOS_FUNCTION thread_id_type size() const
Get the total thread pool size.
The Kokkos wrapper classes for MOOSE-like shape function access.
The Kokkos wrapper classes for MOOSE-like variable value access.
KOKKOS_FUNCTION unsigned int var(unsigned int comp=0) const
Get the variable number of a component.
KOKKOS_FUNCTION unsigned int sys(unsigned int comp=0) const
Get the system number of a component.
MOOSE_KOKKOS_INDEX_TYPE ThreadID