GEOS
SpringSlider.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 
16 
17 
18 #ifndef GEOS_PHYSICSSOLVERS_INDUCEDSEISMICITY_SPRINGSLIDER_HPP
19 #define GEOS_PHYSICSSOLVERS_INDUCEDSEISMICITY_SPRINGSLIDER_HPP
20 
21 #include "physicsSolvers/inducedSeismicity/ImplicitQDRateAndState.hpp"
24 
25 namespace geos
26 {
27 
28 template< typename RSSOLVER_TYPE = ImplicitQDRateAndState >
29 class SpringSlider : public RSSOLVER_TYPE
30 {
31 public:
32 
33  SpringSlider() = delete;
34 
35  SpringSlider( const string & name,
36  dataRepository::Group * const parent );
37 
39  virtual ~SpringSlider() override;
40 
41  static string catalogName() { return RSSOLVER_TYPE::derivedSolverPrefix() + "SpringSlider"; }
42 
43  virtual string getCatalogName() const override { return catalogName(); }
44 
45  virtual void registerDataOnMesh( dataRepository::Group & meshBodies ) override;
46 
47  struct viewKeyStruct : public RSSOLVER_TYPE::viewKeyStruct
48  {};
49 
50  virtual real64 updateStresses( real64 const & time_n,
51  real64 const & dt,
52  const int cycleNumber,
53  DomainPartition & domain ) const override final;
54 
55  template< typename FRICTION_TYPE >
56  void updateShearTraction( SurfaceElementSubRegion & subRegion,
57  FRICTION_TYPE & frictionLaw,
58  real64 const & dt ) const;
59 
60 private:
61 
62  class SpringSliderParameters
63  {
64 public:
65 
67  SpringSliderParameters( real64 const normalTraction, real64 const a, real64 const b, real64 const Dc ):
68  tauRate( 1e-4 ),
69  springStiffness( 0.0 )
70  {
71  real64 const criticalStiffness = normalTraction * (b - a) / Dc;
72  springStiffness = 0.9 * criticalStiffness;
73  }
74 
76  SpringSliderParameters( SpringSliderParameters const & ) = default;
77 
79  SpringSliderParameters( SpringSliderParameters && ) = default;
80 
82  SpringSliderParameters() = delete;
83 
85  SpringSliderParameters & operator=( SpringSliderParameters const & ) = delete;
86 
88  SpringSliderParameters & operator=( SpringSliderParameters && ) = delete;
89 
90  real64 tauRate;
91 
92  real64 springStiffness;
93  };
94 };
95 
96 template< typename RSSOLVER_TYPE >
97 template< typename FRICTION_TYPE >
98 void SpringSlider< RSSOLVER_TYPE >::updateShearTraction( SurfaceElementSubRegion & subRegion,
99  FRICTION_TYPE & frictionLaw,
100  real64 const & dt ) const
101 {
102  arrayView2d< real64 const > const deltaSlip = subRegion.getField< fields::contact::deltaSlip >();
103  arrayView2d< real64 > const shearTraction = subRegion.getField< fields::rateAndState::shearTraction >();
104  arrayView2d< real64 > const shearTraction_n = subRegion.getField< fields::rateAndState::shearTraction_n >();
105 
106  arrayView1d< real64 > const normalTraction = subRegion.getField< fields::rateAndState::normalTraction >();
107  forAll< parallelDevicePolicy<> >( subRegion.size(), [=] GEOS_DEVICE ( localIndex const k )
108  {
109  SpringSliderParameters springSliderParameters = SpringSliderParameters( normalTraction[k],
110  frictionLaw.getACoefficient( k ),
111  frictionLaw.getBCoefficient( k ),
112  frictionLaw.getDcCoefficient( k ) );
113 
114 
115 
116  shearTraction[k][0] = shearTraction_n[k][0] + springSliderParameters.tauRate * dt
117  - springSliderParameters.springStiffness * deltaSlip[k][0];
118  shearTraction[k][1] = shearTraction_n[k][1] + springSliderParameters.tauRate * dt
119  - springSliderParameters.springStiffness * deltaSlip[k][1];
120  } );
121 }
122 
123 } /* namespace geos */
124 
125 #endif /* GEOS_PHYSICSSOLVERS_INDUCEDSEISMICITY_SPRINGSLIDER_HPP */
#define GEOS_HOST_DEVICE
Marks a host-device function.
Definition: GeosxMacros.hpp:49
#define GEOS_DEVICE
Marks a device-only function.
Definition: GeosxMacros.hpp:47
Partition of the decomposed physical domain. It also manages the connexion information to its neighbo...
PhysicsSolverBase & operator=(PhysicsSolverBase const &)=delete
Deleted copy assignment operator.
virtual string getCatalogName() const override
virtual ~SpringSlider() override
Destructor.
virtual void registerDataOnMesh(dataRepository::Group &meshBodies) override
This method ties properties with their supporting mesh.
virtual real64 updateStresses(real64 const &time_n, real64 const &dt, const int cycleNumber, DomainPartition &domain) const override final
Compute stresses and update tractions on the fault.
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