20 #ifndef GEOS_PHYSICSSOLVERS_FLUIDFLOW_SINGLEPHASE_ACCUMULATIONKERNELS_HPP
21 #define GEOS_PHYSICSSOLVERS_FLUIDFLOW_SINGLEPHASE_ACCUMULATIONKERNELS_HPP
24 #include "common/GEOS_RAJA_Interface.hpp"
25 #include "constitutive/fluid/singlefluid/SingleFluidBase.hpp"
26 #include "constitutive/fluid/singlefluid/SingleFluidUtils.hpp"
27 #include "constitutive/solid/CoupledSolidBase.hpp"
30 #include "codingUtilities/Utilities.hpp"
35 namespace singlePhaseBaseKernels
44 template<
typename SUBREGION_TYPE,
integer NUM_DOF >
49 using SingleFluidProp = constitutive::SingleFluidVar< real64, 2, constitutive::singlefluid::LAYOUT_FLUID, constitutive::singlefluid::LAYOUT_FLUID_DER >;
60 using DerivOffset = constitutive::singlefluid::DerivativeOffsetC< isThermal >;
72 SUBREGION_TYPE
const & subRegion,
79 m_mass( subRegion.template getField< fields::flow::mass >() ),
80 m_mass_n( subRegion.template getField< fields::flow::mass_n >() ),
81 m_dMass( subRegion.template getField< fields::flow::dMass >() ),
144 template<
typename FUNC = NoOpFunc >
148 FUNC && kernelOp = NoOpFunc{} )
const
185 template<
typename POLICY,
typename KERNEL_TYPE >
188 KERNEL_TYPE
const & kernelComponent )
194 if( kernelComponent.elemGhostRank( ei ) >= 0 )
199 typename KERNEL_TYPE::StackVariables stack;
201 kernelComponent.setup( ei, stack );
202 kernelComponent.computeAccumulation( ei, stack );
203 kernelComponent.complete( ei, stack );
256 :
Base( rankOffset, dofKey, subRegion, localMatrix, localRhs )
257 , m_creationMass( subRegion.getField< fields::flow::massCreated >() )
268 Base::StackVariables & stack )
const
271 if( Base::m_mass_n[ei] > 1.1 * m_creationMass[ei] )
273 stack.localResidual[0] += m_creationMass[ei] * 0.25;
301 template<
typename POLICY,
typename SUBREGION_TYPE >
305 SUBREGION_TYPE
const & subRegion,
309 if constexpr ( std::is_base_of_v< CellElementSubRegion, SUBREGION_TYPE > )
315 else if constexpr ( std::is_base_of_v< SurfaceElementSubRegion, SUBREGION_TYPE > )
318 SurfaceElementAccumulationKernel::launch< POLICY >( subRegion.size(), kernel );
322 GEOS_UNUSED_VAR( rankOffset, dofKey, subRegion, localMatrix, localRhs );
323 GEOS_ERROR(
"Unsupported subregion type: " <<
typeid(SUBREGION_TYPE).name() );
#define GEOS_HOST_DEVICE
Marks a host-device function.
#define GEOS_UNUSED_VAR(...)
Mark an unused variable and silence compiler warnings.
#define GEOS_UNUSED_PARAM(X)
Mark an unused argument and silence compiler warnings.
#define GEOS_ERROR(msg)
Raise a hard error and terminate the program.
#define GEOS_MARK_FUNCTION
Mark function with both Caliper and NVTX if enabled.
static void createAndLaunch(globalIndex const rankOffset, string const dofKey, SUBREGION_TYPE const &subRegion, CRSMatrixView< real64, globalIndex const > const &localMatrix, arrayView1d< real64 > const &localRhs)
Create a new kernel and launch.
Define the interface for the assembly kernel in charge of accumulation.
static constexpr integer isThermal
Note: Derivative lineup only supports dP & dT, not component terms.
AccumulationKernel(globalIndex const rankOffset, string const dofKey, SUBREGION_TYPE const &subRegion, CRSMatrixView< real64, globalIndex const > const &localMatrix, arrayView1d< real64 > const &localRhs)
Constructor.
static void launch(localIndex const numElems, KERNEL_TYPE const &kernelComponent)
Performs the kernel launch.
GEOS_HOST_DEVICE void computeAccumulation(localIndex const ei, StackVariables &stack, FUNC &&kernelOp=NoOpFunc{}) const
Compute the local accumulation contributions to the residual and Jacobian.
arrayView1d< globalIndex const > const m_dofNumber
View on the dof numbers.
static constexpr integer numDof
Compute time value for the number of degrees of freedom.
GEOS_HOST_DEVICE void complete(localIndex const GEOS_UNUSED_PARAM(ei), StackVariables &stack) const
Performs the complete phase for the kernel.
arrayView1d< real64 const > const m_mass
View on mass.
arrayView1d< real64 > const m_localRhs
View on the local RHS.
GEOS_HOST_DEVICE integer elemGhostRank(localIndex const ei) const
Getter for the ghost rank of an element.
CRSMatrixView< real64, globalIndex const > const m_localMatrix
View on the local CRS matrix.
GEOS_HOST_DEVICE void setup(localIndex const ei, StackVariables &stack) const
Performs the setup phase for the kernel.
arrayView1d< integer const > const m_elemGhostRank
View on the ghost ranks.
static constexpr integer numEqn
Compute time value for the number of equations.
globalIndex const m_rankOffset
Offset for my MPI rank.
Define the interface for the assembly kernel in charge of accumulation in SurfaceElementSubRegion.
SurfaceElementAccumulationKernel(globalIndex const rankOffset, string const dofKey, SurfaceElementSubRegion const &subRegion, CRSMatrixView< real64, globalIndex const > const &localMatrix, arrayView1d< real64 > const &localRhs)
Constructor.
GEOS_HOST_DEVICE void computeAccumulation(localIndex const ei, Base::StackVariables &stack) const
Compute the local accumulation contributions to the residual and Jacobian.
ArrayView< T, 1 > arrayView1d
Alias for 1D array view.
LvArray::CRSMatrixView< T, COL_INDEX, localIndex const, LvArray::ChaiBuffer > CRSMatrixView
Alias for CRS Matrix View.
GEOS_GLOBALINDEX_TYPE globalIndex
Global index type (for indexing objects across MPI partitions).
double real64
64-bit floating point type.
GEOS_LOCALINDEX_TYPE localIndex
Local index type (for indexing objects within an MPI partition).
std::int32_t integer
Signed integer type.
ArrayView< T, 2, USD > arrayView2d
Alias for 2D array view.
Array< T, 1 > array1d
Alias for 1D array.
Kernel variables (dof numbers, jacobian and residual) located on the stack.
real64 localJacobian[numEqn][numDof]
Storage for the element local Jacobian matrix.
localIndex localRow
Index of the local row corresponding to this element.
globalIndex dofIndices[numDof]
Index of the matrix row/column corresponding to the dof in this element.
real64 localResidual[numEqn]
Storage for the element local residual vector.