GEOS
SinglePhasePoromechanicsDamage.hpp
1 /*
2  * ------------------------------------------------------------------------------------------------------------
3  * SPDX-License-Identifier: LGPL-2.1-only
4  *
5  * Copyright (c) 2016-2024 Lawrence Livermore National Security LLC
6  * Copyright (c) 2018-2024 TotalEnergies
7  * Copyright (c) 2018-2024 The Board of Trustees of the Leland Stanford Junior University
8  * Copyright (c) 2023-2024 Chevron
9  * Copyright (c) 2019- GEOS/GEOSX Contributors
10  * All rights reserved
11  *
12  * See top level LICENSE, COPYRIGHT, CONTRIBUTORS, NOTICE, and ACKNOWLEDGEMENTS files for details.
13  * ------------------------------------------------------------------------------------------------------------
14  */
15 
20 #ifndef GEOS_PHYSICSSOLVERS_MULTIPHYSICS_SINGLEPHASEPOROMECHANICSDAMAGE_HPP_
21 #define GEOS_PHYSICSSOLVERS_MULTIPHYSICS_SINGLEPHASEPOROMECHANICSDAMAGE_HPP_
22 
25 
26 namespace geos
27 {
28 
29 namespace poromechanicsDamageKernels
30 {
31 
37 template< typename SUBREGION_TYPE,
38  typename CONSTITUTIVE_TYPE,
39  typename FE_TYPE >
42  CONSTITUTIVE_TYPE,
43  FE_TYPE >
44 {
45 public:
48  CONSTITUTIVE_TYPE,
49  FE_TYPE >;
50 
57  using Base::m_dofNumber;
59  using Base::m_matrix;
60  using Base::m_rhs;
66  using Base::m_pressure;
67  using Base::m_pressure_n;
73  using Base::m_dt;
74  using Base::m_performStressInitialization;
75 
81  SinglePhasePoromechanicsDamage( NodeManager const & nodeManager,
82  EdgeManager const & edgeManager,
83  FaceManager const & faceManager,
84  localIndex const targetRegionIndex,
85  SUBREGION_TYPE const & elementSubRegion,
86  FE_TYPE const & finiteElementSpace,
87  CONSTITUTIVE_TYPE & inputConstitutiveType,
88  arrayView1d< globalIndex const > const inputDispDofNumber,
89  globalIndex const rankOffset,
91  arrayView1d< real64 > const inputRhs,
92  real64 const inputDt,
93  real64 const (&gravityVector)[3],
94  string const inputFlowDofKey,
95  integer const performStressInitialization,
96  string const fluidModelKey );
97 
98  //*****************************************************************************
107  {
108 public:
109 
110  static constexpr int numDispDofPerElem = Base::StackVariables::maxNumRows;
111 
116  {}
117 
122 
123  };
124  //*****************************************************************************
125 
135  void smallStrainUpdate( localIndex const k,
136  localIndex const q,
137  StackVariables & stack ) const;
138 
153  real64 const ( &dNdX )[numNodesPerElem][3],
154  real64 const & detJxW,
155  StackVariables & stack ) const;
156 
158  void quadraturePointKernel( localIndex const k,
159  localIndex const q,
160  StackVariables & stack ) const;
161 
166  real64 complete( localIndex const k,
167  StackVariables & stack ) const;
168 
175  template< typename POLICY,
176  typename KERNEL_TYPE >
177  static real64
178  kernelLaunch( localIndex const numElems,
179  KERNEL_TYPE const & kernelComponent );
180 
181 protected:
182 
185 
186 };
187 
191  globalIndex const,
193  arrayView1d< real64 > const,
194  real64 const,
195  real64 const (&)[3],
196  string const,
197  integer const,
198  string const >;
199 
200 } // namespace poromechanicsDamageKernels
201 
202 } // namespace geos
203 
204 #endif // GEOS_PHYSICSSOLVERS_MULTIPHYSICS_SINGLEPHASEPOROMECHANICSDAMAGE_HPP_
#define GEOS_HOST_DEVICE
Marks a host-device function.
Definition: GeosxMacros.hpp:49
This class provides an interface to ObjectManagerBase in order to manage edge data.
Definition: EdgeManager.hpp:43
The FaceManager class provides an interface to ObjectManagerBase in order to manage face data.
Definition: FaceManager.hpp:44
The NodeManager class provides an interface to ObjectManagerBase in order to manage node data.
Definition: NodeManager.hpp:46
traits::ViewTypeConst< typename SUBREGION_TYPE::NodeMapType::base_type > const m_elemsToNodes
The element to nodes map.
Definition: KernelBase.hpp:257
CRSMatrixView< real64, globalIndex const > const m_matrix
The global Jacobian matrix.
arrayView1d< globalIndex const > const m_dofNumber
The global degree of freedom number.
CONSTITUTIVE_TYPE::KernelWrapper const m_constitutiveUpdate
Definition: KernelBase.hpp:264
Used to forward arguments to a class that implements the KernelBase interface.
Definition: KernelBase.hpp:282
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...
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.
Definition: DataTypes.hpp:180
LvArray::CRSMatrixView< T, COL_INDEX, localIndex const, LvArray::ChaiBuffer > CRSMatrixView
Alias for CRS Matrix View.
Definition: DataTypes.hpp:310
GEOS_GLOBALINDEX_TYPE globalIndex
Global index type (for indexing objects across MPI partitions).
Definition: DataTypes.hpp:88
double real64
64-bit floating point type.
Definition: DataTypes.hpp:99
GEOS_LOCALINDEX_TYPE localIndex
Local index type (for indexing objects within an MPI partition).
Definition: DataTypes.hpp:85
std::int32_t integer
Signed integer type.
Definition: DataTypes.hpp:82
ArrayView< T, 2, USD > arrayView2d
Alias for 2D array view.
Definition: DataTypes.hpp:196
Kernel variables allocated on the stack.
Definition: KernelBase.hpp:137
real64 dFractureFlowTerm_dPressure[3]
Derivative of the fracture flow term wrt pressure.