16 #ifndef GEOS_PHYSICSSOLVERS_INDUCEDSEISMICITY_KERNELS_RATEANDSTATEKERNELSBASE_HPP_
17 #define GEOS_PHYSICSSOLVERS_INDUCEDSEISMICITY_KERNELS_RATEANDSTATEKERNELSBASE_HPP_
20 #include "common/GEOS_RAJA_Interface.hpp"
21 #include "constitutive/contact/RateAndStateFriction.hpp"
23 #include "constitutive/ConstitutivePassThru.hpp"
28 namespace rateAndStateKernels
34 static void projectSlipRateBase(
localIndex const k,
35 real64 const frictionCoefficient,
36 real64 const shearImpedance,
37 arrayView1d< real64 const >
const normalTraction,
38 arrayView2d< real64 const >
const shearTraction,
39 arrayView1d< real64 const >
const slipRate,
40 arrayView2d< real64 >
const slipVelocity )
43 real64 const frictionForce = normalTraction[k] * frictionCoefficient;
44 real64 const projectionScaling = 1.0 / ( shearImpedance + frictionForce / slipRate[k] );
45 slipVelocity[k][0] = projectionScaling * shearTraction[k][0];
46 slipVelocity[k][1] = projectionScaling * shearTraction[k][1];
49 template<
typename POLICY,
typename KERNEL_TYPE >
50 static bool newtonSolve( SurfaceElementSubRegion & subRegion,
56 bool allConverged =
false;
57 for(
integer iter = 0; iter < maxNewtonIter; iter++ )
59 RAJA::ReduceMin< parallelDeviceReduce, int > converged( 1 );
60 RAJA::ReduceMax< parallelDeviceReduce, real64 > residualNorm( 0.0 );
63 typename KERNEL_TYPE::StackVariables stack;
64 kernel.setup( k, dt, stack );
65 kernel.solve( k, stack );
66 auto const [elementConverged, elementResidualNorm] = kernel.checkConvergence( stack, newtonTol );
67 converged.min( elementConverged );
68 residualNorm.max( elementResidualNorm );
72 GEOS_LOG_RANK_0( GEOS_FMT(
" Newton iter {} : residual = {:.10e} ", iter, maxResidualNorm ) );
82 template<
typename FRICTION_TYPE >
83 void enforceRateAndVelocityConsistency( FRICTION_TYPE
const & frictionLawKernelWrapper,
84 SurfaceElementSubRegion & subRegion,
85 real64 const & shearImpedance )
87 arrayView2d< real64 >
const slipVelocity = subRegion.getField< fields::rateAndState::slipVelocity >();
88 arrayView1d< real64 >
const slipRate = subRegion.getField< fields::rateAndState::slipRate >();
89 arrayView1d< real64 const >
const stateVariable = subRegion.getField< fields::rateAndState::stateVariable >();
91 arrayView2d< real64 >
const backgroundShearStress = subRegion.getField< fields::rateAndState::backgroundShearStress >();
92 arrayView1d< real64 >
const backgroundNormalStress = subRegion.getField< fields::rateAndState::backgroundNormalStress >();
94 RAJA::ReduceMax< parallelDeviceReduce, int > negativeSlipRate( 0 );
95 RAJA::ReduceMax< parallelDeviceReduce, int > bothNonZero( 0 );
99 if( slipRate[k] < 0.0 )
101 negativeSlipRate.max( 1 );
103 else if( LvArray::tensorOps::l2Norm< 2 >( slipVelocity[k] ) > 0.0 && slipRate[k] > 0.0 )
105 bothNonZero.max( 1 );
107 else if( LvArray::tensorOps::l2Norm< 2 >( slipVelocity[k] ) > 0.0 )
109 slipRate[k] = LvArray::tensorOps::l2Norm< 2 >( slipVelocity[k] );
111 else if( slipRate[k] > 0.0 )
113 real64 const frictionCoefficient = frictionLawKernelWrapper.frictionCoefficient( k, slipRate[k], stateVariable[k] );
114 projectSlipRateBase( k,
117 backgroundNormalStress,
118 backgroundShearStress,
124 GEOS_ERROR_IF( negativeSlipRate.get() > 0,
"SlipRate cannot be negative." );
125 GEOS_ERROR_IF( bothNonZero.get() > 0,
"Only one between slipRate and slipVelocity can be specified as i.c." );
132 template<
template<
typename FRICTION_TYPE >
class KERNEL_TYPE,
134 typename FRICTION_TYPE >
136 createAndLaunch( SurfaceElementSubRegion & subRegion,
137 FRICTION_TYPE & frictionLaw,
138 real64 const shearImpedance,
148 KERNEL_TYPE kernel( subRegion, frictionLaw, shearImpedance );
150 real64 dtRemaining = totalDt;
152 for(
integer subStep = 0; subStep < 5 && dtRemaining > 0.0; ++subStep )
154 real64 dtAccepted = KERNEL_TYPE< FRICTION_TYPE >::template solveRateAndStateEquation< POLICY >( subRegion, kernel, dt, maxNewtonIter, newtonTol );
155 dtRemaining -= dtAccepted;
157 if( dtRemaining > 0.0 )
161 GEOS_LOG_RANK_0( GEOS_FMT(
" sub-step = {} completed, dt = {}, remaining dt = {}", subStep, dt, dtRemaining ) );
#define GEOS_HOST_DEVICE
Marks a host-device function.
#define GEOS_UNUSED_VAR(...)
Mark an unused variable and silence compiler warnings.
#define GEOS_LOG_RANK_0(msg)
Log a message on screen on rank 0.
#define GEOS_ERROR_IF(EXP, msg)
Conditionally raise a hard error and terminate the program.
#define GEOS_MARK_FUNCTION
Mark function with both Caliper and NVTX if enabled.
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.
static T max(T const &value, MPI_Comm comm=MPI_COMM_GEOS)
Convenience function for a MPI_Allreduce using a MPI_MAX operation.