GEOS
PhaseFieldPoromechanicsSolver.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 
21 #ifndef GEOS_PHYSICSSOLVERS_MULTIPHYSICS_PHASEFIELDPOROMECHANICSSOLVER_HPP_
22 #define GEOS_PHYSICSSOLVERS_MULTIPHYSICS_PHASEFIELDPOROMECHANICSSOLVER_HPP_
23 
28 
29 namespace geos
30 {
31 
32 class PhaseFieldPoromechanicsSolver : public CoupledSolver< SinglePhasePoromechanics< SinglePhaseBase >, PhaseFieldDamageFEM >
33 {
34 public:
35 
37  using Base::m_solvers;
38  using Base::m_dofManager;
39  using Base::m_localMatrix;
40  using Base::m_rhs;
41  using Base::m_solution;
42 
43  PhaseFieldPoromechanicsSolver( const string & name,
44  Group * const parent );
45 
47 
52  static string catalogName()
53  {
54  return "PhaseFieldPoromechanics";
55  }
56 
57  string getCatalogName() const override { return catalogName(); }
58 
60  static string coupledSolverAttributePrefix() { return "PhaseFieldPoromechanics"; }
61 
62  enum class SolverType : integer
63  {
64  Poromechanics = 0,
65  Damage = 1
66  };
67 
68  virtual void resetStateToBeginningOfStep( DomainPartition & domain ) override final;
69 
70  virtual void postInputInitialization() override final;
71 
77  {
78  return std::get< toUnderlying( SolverType::Poromechanics ) >( m_solvers );
79  }
80 
86  {
87  return std::get< toUnderlying( SolverType::Damage ) >( m_solvers );
88  }
89 
90  virtual void mapSolutionBetweenSolvers( DomainPartition & Domain, integer const idx ) override final;
91 
92  void mapDamageAndGradientToQuadrature( DomainPartition & domain );
93 
94  void applyDamageOnTractionBC( DomainPartition & domain );
95 
96 protected:
97 
98  virtual void initializePostInitialConditionsPreSubGroups() override final {}
99 
100 };
101 
102 template< typename FE_TYPE >
104 {
106  m_numElems( subRegion.size() )
107  {}
108 
109  void interpolateDamageAndGradient( arrayView2d< localIndex const, cells::NODE_MAP_USD > const elemToNodes,
111  arrayView1d< real64 const > const nodalDamage,
112  arrayView2d< real64 > damageFieldOnMaterial,
113  arrayView3d< real64 > damageGradOnMaterial )
114  {
115  forAll< parallelDevicePolicy<> >( m_numElems, [=] GEOS_HOST_DEVICE ( localIndex const k )
116  {
117  constexpr localIndex numNodesPerElement = FE_TYPE::numNodes;
118  constexpr localIndex n_q_points = FE_TYPE::numQuadraturePoints;
119 
120  real64 xLocal[ numNodesPerElement ][ 3 ];
121  real64 nodalDamageLocal[ numNodesPerElement ];
122 
123  for( localIndex a = 0; a < numNodesPerElement; ++a )
124  {
125  localIndex const localNodeIndex = elemToNodes( k, a );
126 
127  for( int dim=0; dim < 3; ++dim )
128  {
129  xLocal[a][dim] = xNodes[ localNodeIndex ][dim];
130  }
131 
132  nodalDamageLocal[ a ] = nodalDamage[ localNodeIndex ];
133  }
134 
135  for( localIndex q = 0; q < n_q_points; ++q )
136  {
137  real64 N[ numNodesPerElement ];
138  FE_TYPE::calcN( q, N );
139 
140  real64 dNdX[ numNodesPerElement ][ 3 ];
141  real64 const detJ = FE_TYPE::calcGradN( q, xLocal, dNdX );
142 
143  GEOS_UNUSED_VAR( detJ );
144 
145  real64 qDamage = 0.0;
146  real64 qDamageGrad[3] = {0, 0, 0};
147  FE_TYPE::valueAndGradient( N, dNdX, nodalDamageLocal, qDamage, qDamageGrad );
148 
149  damageFieldOnMaterial( k, q ) = qDamage;
150 
151  for( int dim=0; dim < 3; ++dim )
152  {
153  damageGradOnMaterial[k][q][dim] = qDamageGrad[dim];
154  }
155  }
156 
157  } );
158  }
159 
160  localIndex m_numElems;
161 };
162 
163 } /* namespace geos */
164 
165 #endif /* GEOS_PHYSICSSOLVERS_MULTIPHYSICS_PhaseFieldPoromechanicsSOLVER_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
std::tuple< SOLVERS *... > m_solvers
Pointers of the single-physics solvers.
Partition of the decomposed physical domain. It also manages the connexion information to its neighbo...
static string catalogName()
name of the node manager in the object catalog
PhaseFieldDamageFEM * damageSolver() const
accessor for the pointer to the flow solver
virtual void mapSolutionBetweenSolvers(DomainPartition &Domain, integer const idx) override final
Maps the solution obtained from one solver to the fields used by the other solver(s)
static string coupledSolverAttributePrefix()
String used to form the solverName used to register solvers in CoupledSolver.
SinglePhasePoromechanics< SinglePhaseBase > * poromechancisSolver() const
accessor for the pointer to the poromechanics solver
virtual void resetStateToBeginningOfStep(DomainPartition &domain) override final
reset state of physics back to the beginning of the step.
virtual void postInputInitialization() override final
virtual void initializePostInitialConditionsPreSubGroups() override final
Called by InitializePostInitialConditions() prior to initializing sub-Groups.
CRSMatrix< real64, globalIndex > m_localMatrix
Local system matrix and rhs.
DofManager m_dofManager
Data structure to handle degrees of freedom.
ParallelVector m_solution
System solution vector.
ParallelVector m_rhs
System right-hand side vector.
localIndex size() const
Get the "size" of the group, which determines the number of elements in resizable wrappers.
Definition: Group.hpp:1317
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
ArrayView< T, 3, USD > arrayView3d
Alias for 3D array view.
Definition: DataTypes.hpp:212