GEOS
ExplicitRateAndStateKernels.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) 2018-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 
16 
21 #ifndef GEOS_PHYSICSSOLVERS_INDUCEDSEISMICITY_KERNELS_EXPLICITRATEANDSTATEKERNELS_HPP_
22 #define GEOS_PHYSICSSOLVERS_INDUCEDSEISMICITY_KERNELS_EXPLICITRATEANDSTATEKERNELS_HPP_
23 
24 #include "RateAndStateKernelsBase.hpp"
25 #include "denseLinearAlgebra/denseLASolvers.hpp"
27 
28 namespace geos
29 {
30 
31 namespace rateAndStateKernels
32 {
33 
41 template< typename FRICTION_LAW_TYPE >
43 {
44 public:
45 
47  FRICTION_LAW_TYPE const & frictionLaw,
48  real64 const shearImpedance ):
49  m_slipRate( subRegion.getField< fields::rateAndState::slipRate >() ),
50  m_stateVariable( subRegion.getField< fields::rateAndState::stateVariable >() ),
51  m_normalTraction( subRegion.getField< fields::rateAndState::normalTraction >() ),
52  m_shearTraction( subRegion.getField< fields::rateAndState::shearTraction >() ),
53  m_slipVelocity( subRegion.getField< fields::rateAndState::slipVelocity >() ),
54  m_shearImpedance( shearImpedance ),
55  m_frictionLaw( frictionLaw.createKernelUpdates() )
56  {}
57 
63  {
64 public:
65 
66  StackVariables() = default;
67 
68  real64 jacobian{};
69  real64 rhs{};
70 
71  };
72 
74  void setup( localIndex const k,
75  real64 const dt,
76  StackVariables & stack ) const
77  {
78  GEOS_UNUSED_VAR( dt );
79  real64 const normalTraction = m_normalTraction[k];
80  real64 const shearTractionMagnitude = LvArray::tensorOps::l2Norm< 2 >( m_shearTraction[k] );
81 
82  // Slip rate is bracketed between [0, shear traction magnitude / shear impedance]
83  // If slip rate is outside the bracket, re-initialize to the middle value
84  real64 const upperBound = shearTractionMagnitude/m_shearImpedance;
85  real64 const bracketedSlipRate = m_slipRate[k] > upperBound ? 0.5*upperBound : m_slipRate[k];
86 
87  stack.rhs = shearTractionMagnitude - m_shearImpedance *bracketedSlipRate - normalTraction * m_frictionLaw.frictionCoefficient( k, bracketedSlipRate, m_stateVariable[k] );
88  stack.jacobian = -m_shearImpedance - normalTraction * m_frictionLaw.dFrictionCoefficient_dSlipRate( k, bracketedSlipRate, m_stateVariable[k] );
89  }
90 
92  void solve( localIndex const k,
93  StackVariables & stack ) const
94  {
95  m_slipRate[k] -= stack.rhs/stack.jacobian;
96 
97  // Slip rate is bracketed between [0, shear traction magnitude / shear impedance]
98  // Check that the update did not end outside of the bracket.
99  real64 const shearTractionMagnitude = LvArray::tensorOps::l2Norm< 2 >( m_shearTraction[k] );
100  real64 const upperBound = shearTractionMagnitude/m_shearImpedance;
101  if( m_slipRate[k] > upperBound ) m_slipRate[k] = 0.5*upperBound;
102 
103  }
104 
105 
107  camp::tuple< int, real64 > checkConvergence( StackVariables const & stack,
108  real64 const tol ) const
109  {
110  real64 const residualNorm = LvArray::math::abs( stack.rhs );
111  int const converged = residualNorm < tol ? 1 : 0;
112  camp::tuple< int, real64 > result { converged, residualNorm };
113  return result;
114  }
115 
117  void projectSlipRate( localIndex const k ) const
118  {
119  real64 const frictionCoefficient = m_frictionLaw.frictionCoefficient( k, m_slipRate[k], m_stateVariable[k] );
120  projectSlipRateBase( k, frictionCoefficient, m_shearImpedance, m_normalTraction, m_shearTraction, m_slipRate, m_slipVelocity );
121  }
122 
124  void udpateVariables( localIndex const k ) const
125  {
126  projectSlipRate( k );
127  }
128 
130  void resetState( localIndex const k ) const
131  {
132  GEOS_UNUSED_VAR( k );
133  }
134 
140  template< typename POLICY >
141  static real64
144  real64 dt,
145  integer const maxNewtonIter,
146  real64 const newtonTol )
147  {
149 
150  newtonSolve< POLICY >( subRegion, kernel, dt, maxNewtonIter, newtonTol );
151 
152  forAll< POLICY >( subRegion.size(), [=] GEOS_HOST_DEVICE ( localIndex const k )
153  {
154  kernel.projectSlipRate( k );
155  } );
156  return dt;
157  }
158 
159 private:
160 
161  arrayView1d< real64 > const m_slipRate;
162 
163  arrayView1d< real64 > const m_stateVariable;
164 
165  arrayView1d< real64 const > const m_normalTraction;
166 
167  arrayView2d< real64 const > const m_shearTraction;
168 
169  arrayView2d< real64 > const m_slipVelocity;
170 
171  real64 const m_shearImpedance;
172 
173  typename FRICTION_LAW_TYPE::KernelWrapper m_frictionLaw;
174 
175 };
176 
177 
178 
179 } /* namespace rateAndStateKernels */
180 
181 } /* namespace geos */
182 
183 #endif /* GEOS_PHYSICSSOLVERS_INDUCEDSEISMICITY_KERNELS_EXPLICITRATEANDSTATEKERNELS_HPP_ */
#define GEOS_HOST_DEVICE
Marks a host-device function.
Definition: GeosxMacros.hpp:49
#define GEOS_UNUSED_VAR(...)
Mark an unused variable and silence compiler warnings.
Definition: GeosxMacros.hpp:84
#define GEOS_MARK_FUNCTION
Mark function with both Caliper and NVTX if enabled.
GEOS_DECLTYPE_AUTO_RETURN getField() const
Get a view to the field associated with a trait from this ObjectManagerBase.
localIndex size() const
Get the "size" of the group, which determines the number of elements in resizable wrappers.
Definition: Group.hpp:1317
static real64 solveRateAndStateEquation(SurfaceElementSubRegion &subRegion, ExplicitRateAndStateKernel &kernel, real64 dt, integer const maxNewtonIter, real64 const newtonTol)
Performs the kernel launch.
ArrayView< T, 1 > arrayView1d
Alias for 1D array view.
Definition: DataTypes.hpp:180
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