GEOS
HydrofractureSolver.hpp
Go to the documentation of this file.
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_HYDROFRACTURESOLVER_HPP_
21 #define GEOS_PHYSICSSOLVERS_MULTIPHYSICS_HYDROFRACTURESOLVER_HPP_
22 
26 
27 namespace geos
28 {
29 
30 using dataRepository::Group;
31 
32 template< typename POROMECHANICS_SOLVER = SinglePhasePoromechanics<> >
33 class HydrofractureSolver : public POROMECHANICS_SOLVER
34 {
35 public:
36 
37  using Base = POROMECHANICS_SOLVER;
38  using Base::m_solvers;
39  using Base::m_names;
40  using Base::m_dofManager;
41  using Base::m_localMatrix;
42  using Base::m_rhs;
43  using Base::m_solution;
44  using Base::m_linearSolverParameters;
45 
46  using Base::registerWrapper;
47  using Base::forDiscretizationOnMeshTargets;
48  using Base::getMeshModificationTimestamp;
49  using Base::getSystemSetupTimestamp;
50  using Base::nonlinearImplicitStep;
51  using Base::implicitStepComplete;
52  using Base::getLogLevel;
53  using Base::setSystemSetupTimestamp;
54  using Base::setupDofs;
55  using Base::flowSolver;
56  using Base::solidMechanicsSolver;
57  using Base::assembleElementBasedTerms;
58  using Base::resetStateToBeginningOfStep;
59 
60 
66  HydrofractureSolver( const string & name,
67  Group * const parent );
68 
70  ~HydrofractureSolver() override {}
71 
72  static string catalogName()
73  {
74  // single phase
75  if constexpr ( std::is_same_v< POROMECHANICS_SOLVER, SinglePhasePoromechanics< SinglePhaseBase > > )
76  {
77  return "Hydrofracture";
78  }
79 // // multi phase (TODO)
80 // else if constexpr ( std::is_same_v< POROMECHANICS_SOLVER, MultiphasePoromechanics< CompositionalMultiphaseBase > > )
81 // {
82 // return "MultiphaseHydrofracture";
83 // }
84  }
88  string getCatalogName() const override { return catalogName(); }
89 
91  static string coupledSolverAttributePrefix() { return "poromechanics"; }
92 
100  virtual void registerDataOnMesh( Group & MeshBodies ) override final;
101 
102  virtual void setupCoupling( DomainPartition const & domain,
103  DofManager & dofManager ) const override final;
104 
105  virtual void setupSystem( DomainPartition & domain,
106  DofManager & dofManager,
107  CRSMatrix< real64, globalIndex > & localMatrix,
108  ParallelVector & rhs,
109  ParallelVector & solution,
110  bool const setSparsity = true ) override;
111 
112  virtual void implicitStepSetup( real64 const & time_n,
113  real64 const & dt,
114  DomainPartition & domain ) override final;
115 
116  virtual void assembleSystem( real64 const time,
117  real64 const dt,
118  DomainPartition & domain,
119  DofManager const & dofManager,
120  CRSMatrixView< real64, globalIndex const > const & localMatrix,
121  arrayView1d< real64 > const & localRhs ) override;
122 
123  virtual real64 setNextDt( real64 const & currentTime,
124  real64 const & currentDt,
125  DomainPartition & domain ) override;
126 
127  virtual void updateState( DomainPartition & domain ) override final;
128 
129  virtual void implicitStepComplete( real64 const & time_n,
130  real64 const & dt,
131  DomainPartition & domain ) override final;
132 
133  virtual void resetStateToBeginningOfStep( DomainPartition & domain ) override final;
134 
137  void updateHydraulicApertureAndFracturePermeability( DomainPartition & domain );
138 
139  void assembleForceResidualDerivativeWrtPressure( DomainPartition & domain,
140  CRSMatrixView< real64, globalIndex const > const & localMatrix,
141  arrayView1d< real64 > const & localRhs );
142 
143  void assembleFluidMassResidualDerivativeWrtDisplacement( DomainPartition const & domain,
144  CRSMatrixView< real64, globalIndex const > const & localMatrix );
145 
146  std::unique_ptr< CRSMatrix< real64, localIndex > > & getRefDerivativeFluxResidual_dAperture()
147  {
148  return m_derivativeFluxResidual_dAperture;
149  }
150 
151  CRSMatrixView< real64, localIndex const > getDerivativeFluxResidual_dNormalJump()
152  {
153  return m_derivativeFluxResidual_dAperture->toViewConstSizes();
154  }
155 
156  CRSMatrixView< real64 const, localIndex const > getDerivativeFluxResidual_dNormalJump() const
157  {
158  return m_derivativeFluxResidual_dAperture->toViewConst();
159  }
160 
161  enum class InitializationType : integer
162  {
163  Pressure,
164  Displacement,
165  };
166 
167  struct viewKeyStruct : Base::viewKeyStruct
168  {
169  constexpr static char const * surfaceGeneratorNameString() { return "surfaceGeneratorName"; }
170 
171  constexpr static char const * maxNumResolvesString() { return "maxNumResolves"; }
172 
173  constexpr static char const * isMatrixPoroelasticString() { return "isMatrixPoroelastic"; }
174 
175  constexpr static char const * newFractureInitializationTypeString() { return "newFractureInitializationType"; }
176 
177  constexpr static char const * useQuasiNewtonString() { return "useQuasiNewton"; }
178 
179  constexpr static char const * isLaggingFractureStencilWeightsUpdateString() { return "isLaggingFractureStencilWeightsUpdate"; }
180 
181  constexpr static char const * leakoffConstString() {return "leakoffCoefficient"; }
182 
183  constexpr static char const * fractureCreationTimeString() {return "fractureCreationTime"; }
184 
185 #ifdef GEOS_USE_SEPARATION_COEFFICIENT
186  constexpr static char const * separationCoeff0String() { return "separationCoeff0"; }
187  constexpr static char const * apertureAtFailureString() { return "apertureAtFailure"; }
188 #endif
189  };
190 
191 protected:
192 
193  virtual void postInputInitialization() override final;
194 
202  DofManager & dofManager,
203  arrayView1d< localIndex > const & rowLengths ) const;
204 
205 
213  DofManager & dofManager,
214  SparsityPatternView< globalIndex > const & pattern ) const;
215 
216 
217  void setUpDflux_dApertureMatrix( DomainPartition & domain,
218  DofManager const & dofManager,
219  CRSMatrix< real64, globalIndex > & localMatrix );
220 
221  virtual void setMGRStrategy() override;
222 
223 private:
224 
225  virtual real64 fullyCoupledSolverStep( real64 const & time_n,
226  real64 const & dt,
227  int const cycleNumber,
228  DomainPartition & domain ) override final;
229 
230  void checkRockOnlyMatrix( dataRepository::Group & meshBodies );
231 
232  void assembleFluidLeakSource( real64 time,
233  real64 dt,
234  DomainPartition & domain,
235  DofManager const & dofManager,
236  CRSMatrixView< real64, globalIndex const > const & localMatrix,
237  arrayView1d< real64 > const & localRhs ) const;
242  void initializeNewFractureFields( real64 time, DomainPartition & domain );
243 
244  // name of the contact relation
245  string m_contactRelationName;
246 
248  string m_surfaceGeneratorName;
249 
251  SurfaceGenerator * m_surfaceGenerator;
252 
253  // it is only important for this case.
254  std::unique_ptr< CRSMatrix< real64, localIndex > > m_derivativeFluxResidual_dAperture;
255 
256  integer m_maxNumResolves;
257  integer m_numResolves[2];
258 
259  integer m_isMatrixPoroelastic;
260 
261  // flag to determine which initialization type to use for the new fracture cell
262  InitializationType m_newFractureInitializationType;
263 
264  integer m_useQuasiNewton; // use Quasi-Newton (see https://arxiv.org/abs/2111.00264)
265 
266  // flag to determine whether or not to apply lagging update for the fracture stencil weights
267  integer m_isLaggingFractureStencilWeightsUpdate;
268 
269  // analytical leakoff coefficient
270  real64 m_leakoffCoefficient;
271 };
272 
274  "Pressure",
275  "Displacement" );
276 
277 
278 } /* namespace geos */
279 
280 #endif /* GEOS_PHYSICSSOLVERS_MULTIPHYSICS_HYDROFRACTURESOLVER_HPP_ */
@ Pressure
Pressure in Pascal.
Definition: Units.hpp:67
The DoFManager is responsible for allocating global dofs, constructing sparsity patterns,...
Definition: DofManager.hpp:44
Partition of the decomposed physical domain. It also manages the connexion information to its neighbo...
~HydrofractureSolver() override
Destructor for the class.
HydrofractureSolver(const string &name, Group *const parent)
main constructor for HydrofractureSolver objects
static string coupledSolverAttributePrefix()
String used to form the solverName used to register solvers in CoupledSolver.
void addFluxApertureCouplingSparsityPattern(DomainPartition &domain, DofManager &dofManager, SparsityPatternView< globalIndex > const &pattern) const
virtual void postInputInitialization() override final
string getCatalogName() const override
void addFluxApertureCouplingNNZ(DomainPartition &domain, DofManager &dofManager, arrayView1d< localIndex > const &rowLengths) const
virtual void setupCoupling(DomainPartition const &domain, DofManager &dofManager) const override final
Utility function to set the coupling between degrees of freedom.
virtual real64 setNextDt(real64 const &currentTime, real64 const &currentDt, DomainPartition &domain) override
function to set the next time step size
virtual void resetStateToBeginningOfStep(DomainPartition &domain) override final
reset state of physics back to the beginning of the step.
virtual void implicitStepComplete(real64 const &time_n, real64 const &dt, DomainPartition &domain) override final
perform cleanup for implicit timestep
virtual void registerDataOnMesh(Group &MeshBodies) override final
Register wrappers that contain data on the mesh objects.
virtual void setupSystem(DomainPartition &domain, DofManager &dofManager, CRSMatrix< real64, globalIndex > &localMatrix, ParallelVector &rhs, ParallelVector &solution, bool const setSparsity=true) override
Set up the linear system (DOF indices and sparsity patterns)
virtual void assembleSystem(real64 const time, real64 const dt, DomainPartition &domain, DofManager const &dofManager, CRSMatrixView< real64, globalIndex const > const &localMatrix, arrayView1d< real64 > const &localRhs) override
function to assemble the linear system matrix and rhs
virtual void updateState(DomainPartition &domain) override final
Recompute all dependent quantities from primary variables (including constitutive models)
virtual void implicitStepSetup(real64 const &time_n, real64 const &dt, DomainPartition &domain) override final
function to perform setup for implicit timestep
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
ENUM_STRINGS(LinearSolverParameters::SolverType, "direct", "cg", "gmres", "fgmres", "bicgstab", "preconditioner")
Declare strings associated with enumeration values.
LvArray::SparsityPatternView< COL_INDEX, INDEX_TYPE const, LvArray::ChaiBuffer > SparsityPatternView
Alias for Sparsity pattern View.
Definition: DataTypes.hpp:302
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
LvArray::CRSMatrix< T, COL_INDEX, localIndex, LvArray::ChaiBuffer > CRSMatrix
Alias for CRS Matrix class.
Definition: DataTypes.hpp:306
LAInterface::ParallelVector ParallelVector
Alias for ParallelVector.