20 #ifndef GEOS_PHYSICSSOLVERS_MULTIPHYSICS_SINGLEPHASEPOROMECHANICSDAMAGE_HPP_
21 #define GEOS_PHYSICSSOLVERS_MULTIPHYSICS_SINGLEPHASEPOROMECHANICSDAMAGE_HPP_
29 namespace poromechanicsDamageKernels
37 template<
typename SUBREGION_TYPE,
38 typename CONSTITUTIVE_TYPE,
74 using Base::m_performStressInitialization;
85 SUBREGION_TYPE
const & elementSubRegion,
86 FE_TYPE
const & finiteElementSpace,
87 CONSTITUTIVE_TYPE & inputConstitutiveType,
93 real64 const (&gravityVector)[3],
94 string const inputFlowDofKey,
95 integer const performStressInitialization,
96 string const fluidModelKey );
110 static constexpr
int numDispDofPerElem = Base::StackVariables::maxNumRows;
137 StackVariables & stack )
const;
155 StackVariables & stack )
const;
158 void quadraturePointKernel(
localIndex const k,
160 StackVariables & stack )
const;
167 StackVariables & stack )
const;
175 template<
typename POLICY,
176 typename KERNEL_TYPE >
179 KERNEL_TYPE
const & kernelComponent );
#define GEOS_HOST_DEVICE
Marks a host-device function.
This class provides an interface to ObjectManagerBase in order to manage edge data.
The FaceManager class provides an interface to ObjectManagerBase in order to manage face data.
The NodeManager class provides an interface to ObjectManagerBase in order to manage node data.
globalIndex const m_dofRankOffset
The global rank offset.
traits::ViewTypeConst< typename SUBREGION_TYPE::NodeMapType::base_type > const m_elemsToNodes
The element to nodes map.
FE_TYPE const m_finiteElementSpace
CRSMatrixView< real64, globalIndex const > const m_matrix
The global Jacobian matrix.
static constexpr int numDofPerTestSupportPoint
static constexpr int numDofPerTrialSupportPoint
arrayView1d< globalIndex const > const m_dofNumber
The global degree of freedom number.
real64 const m_dt
time increment
static constexpr int maxNumTestSupportPointsPerElem
arrayView1d< real64 > const m_rhs
The global residaul vector.
CONSTITUTIVE_TYPE::KernelWrapper const m_constitutiveUpdate
Used to forward arguments to a class that implements the KernelBase interface.
Implements kernels for solving quasi-static single-phase poromechanics with phase-field damage.
static real64 kernelLaunch(localIndex const numElems, KERNEL_TYPE const &kernelComponent)
GEOS_HOST_DEVICE void smallStrainUpdate(localIndex const k, localIndex const q, StackVariables &stack) const
Helper function to compute 1) the total stress, 2) the body force term, and 3) the fluidMassIncrement...
GEOS_HOST_DEVICE void assembleMomentumBalanceTerms(real64 const (&N)[numNodesPerElem], real64 const (&dNdX)[numNodesPerElem][3], real64 const &detJxW, StackVariables &stack) const
Assemble the local linear momentum balance residual and derivatives using total stress and body force...
static constexpr int numNodesPerElem
GEOS_HOST_DEVICE real64 complete(localIndex const k, StackVariables &stack) const
SinglePhasePoromechanicsDamage(NodeManager const &nodeManager, EdgeManager const &edgeManager, FaceManager const &faceManager, localIndex const targetRegionIndex, SUBREGION_TYPE const &elementSubRegion, FE_TYPE const &finiteElementSpace, CONSTITUTIVE_TYPE &inputConstitutiveType, arrayView1d< globalIndex const > const inputDispDofNumber, globalIndex const rankOffset, CRSMatrixView< real64, globalIndex const > const inputMatrix, arrayView1d< real64 > const inputRhs, real64 const inputDt, real64 const (&gravityVector)[3], string const inputFlowDofKey, integer const performStressInitialization, string const fluidModelKey)
Constructor.
arrayView2d< real64 const > const m_fluidPressureGradient
Views on cell-wise fluid pressure gradient.
arrayView1d< real64 const > const m_pressure
The rank-global fluid pressure.
arrayView2d< real64 const > m_solidDensity
The rank global density.
real64 const m_gravityVector[3]
The gravity vector.
arrayView1d< globalIndex const > const m_flowDofNumber
The global degree of freedom number.
real64 const m_gravityAcceleration
The L2-norm of the gravity vector.
arrayView1d< real64 const > const m_pressure_n
The rank-global fluid pressure at the previous converged time step.
Implements kernels for solving quasi-static single-phase poromechanics.
arrayView2d< real64 const, constitutive::singlefluid::USD_FLUID > const m_fluidDensity
Fluid density.
arrayView3d< real64 const, constitutive::singlefluid::USD_FLUID_DER > const m_dFluidDensity
Derivative of fluid density wrt pressure.
arrayView2d< real64 const, constitutive::singlefluid::USD_FLUID > const m_fluidDensity_n
Fluid density at the previous converged time step.
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.
Kernel variables allocated on the stack.
real64 dFractureFlowTerm_dPressure[3]
Derivative of the fracture flow term wrt pressure.
real64 fractureFlowTerm[3]
Fracture flow term.
GEOS_HOST_DEVICE StackVariables()
Constructor.