21 #ifndef GEOS_PHYSICSSOLVERS_INDUCEDSEISMICITY_KERNELS_EXPLICITRATEANDSTATEKERNELS_HPP_
22 #define GEOS_PHYSICSSOLVERS_INDUCEDSEISMICITY_KERNELS_EXPLICITRATEANDSTATEKERNELS_HPP_
24 #include "RateAndStateKernelsBase.hpp"
25 #include "denseLinearAlgebra/denseLASolvers.hpp"
31 namespace rateAndStateKernels
41 template<
typename FRICTION_LAW_TYPE >
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() )
79 real64 const normalTraction = m_normalTraction[k];
80 real64 const shearTractionMagnitude = LvArray::tensorOps::l2Norm< 2 >( m_shearTraction[k] );
84 real64 const upperBound = shearTractionMagnitude/m_shearImpedance;
85 real64 const bracketedSlipRate = m_slipRate[k] > upperBound ? 0.5*upperBound : m_slipRate[k];
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] );
93 StackVariables & stack )
const
95 m_slipRate[k] -= stack.rhs/stack.jacobian;
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;
107 camp::tuple< int, real64 > checkConvergence( StackVariables
const & stack,
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 };
117 void projectSlipRate(
localIndex const k )
const
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 );
124 void udpateVariables(
localIndex const k )
const
126 projectSlipRate( k );
140 template<
typename POLICY >
150 newtonSolve< POLICY >( subRegion, kernel, dt, maxNewtonIter, newtonTol );
154 kernel.projectSlipRate( k );
171 real64 const m_shearImpedance;
173 typename FRICTION_LAW_TYPE::KernelWrapper m_frictionLaw;
#define GEOS_HOST_DEVICE
Marks a host-device function.
#define GEOS_UNUSED_VAR(...)
Mark an unused variable and silence compiler warnings.
#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.
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.
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.
ArrayView< T, 2, USD > arrayView2d
Alias for 2D array view.
Kernel variables located on the stack.