GEOS
ThermalAccumulationKernels.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 
20 #ifndef GEOS_PHYSICSSOLVERS_FLUIDFLOW_SINGLEPHASE_THERMALACCUMULATIONKERNELS_HPP
21 #define GEOS_PHYSICSSOLVERS_FLUIDFLOW_SINGLEPHASE_THERMALACCUMULATIONKERNELS_HPP
22 
24 
25 namespace geos
26 {
27 
28 namespace thermalSinglePhaseBaseKernels
29 {
30 
31 /******************************** AccumulationKernel ********************************/
32 
37 template< typename SUBREGION_TYPE, integer NUM_DOF >
38 class AccumulationKernel : public singlePhaseBaseKernels::AccumulationKernel< SUBREGION_TYPE, NUM_DOF >
39 {
40 
41 public:
42 
44  using Base::numDof;
45  using Base::numEqn;
46  using Base::m_rankOffset;
47  using Base::m_dofNumber;
49  using Base::m_localMatrix;
50  using Base::m_localRhs;
51  using Base::m_dMass;
52 
54  static constexpr integer isThermal = NUM_DOF-1;
55  using DerivOffset = constitutive::singlefluid::DerivativeOffsetC< isThermal >;
66  AccumulationKernel( globalIndex const rankOffset,
67  string const dofKey,
68  SUBREGION_TYPE const & subRegion,
70  arrayView1d< real64 > const & localRhs )
71  : Base( rankOffset, dofKey, subRegion, localMatrix, localRhs ),
72  m_energy( subRegion.template getField< fields::flow::energy >() ),
73  m_energy_n( subRegion.template getField< fields::flow::energy_n >() ),
74  m_dEnergy( subRegion.template getField< fields::flow::dEnergy >() )
75  {}
76 
82  {};
83 
93  StackVariables & stack ) const
94  {
95  Base::computeAccumulation( ei, stack );
96 
97  // assemble the derivatives of the mass balance equation w.r.t temperature
98  stack.localJacobian[0][numDof-1] = m_dMass[ei][DerivOffset::dT];
99 
100  // assemble the accumulation term of the energy equation
101  stack.localResidual[numEqn-1] = m_energy[ei] - m_energy_n[ei];
102  stack.localJacobian[numEqn-1][0] += m_dEnergy[ei][DerivOffset::dP];
103  stack.localJacobian[numEqn-1][numDof-1] += m_dEnergy[ei][DerivOffset::dT];
104  }
105 
112  void complete( localIndex const ei,
113  StackVariables & stack ) const
114  {
115  // Step 1: assemble the mass balance equation
116  Base::complete( ei, stack );
117 
118  // Step 2: assemble the energy equation
119  m_localRhs[stack.localRow + numEqn-1] += stack.localResidual[numEqn-1];
120  m_localMatrix.template addToRow< serialAtomic >( stack.localRow + numEqn-1,
121  stack.dofIndices,
122  stack.localJacobian[numEqn-1],
123  numDof );
124  }
125 
126 protected:
127 
130  arrayView1d< real64 const > const m_energy_n;
132 
133 };
134 
139 class SurfaceElementAccumulationKernel : public AccumulationKernel< SurfaceElementSubRegion, 2 >
140 {
141 
142 public:
143 
145 
157  string const dofKey,
158  SurfaceElementSubRegion const & subRegion,
159  CRSMatrixView< real64, globalIndex const > const & localMatrix,
160  arrayView1d< real64 > const & localRhs )
161  : Base( rankOffset, dofKey, subRegion, localMatrix, localRhs ),
162  m_creationMass( subRegion.getField< fields::flow::massCreated >() )
163  {}
164 
173  Base::StackVariables & stack ) const
174  {
175  Base::computeAccumulation( ei, stack );
176  if( Base::m_mass_n[ei] > 1.1 * m_creationMass[ei] )
177  {
178  stack.localResidual[0] += m_creationMass[ei] * 0.25;
179  }
180  }
181 
182 protected:
183 
184  arrayView1d< real64 const > const m_creationMass;
185 
186 };
187 
192 {
193 public:
194 
206  template< typename POLICY, typename SUBREGION_TYPE >
207  static void
208  createAndLaunch( globalIndex const rankOffset,
209  string const dofKey,
210  SUBREGION_TYPE const & subRegion,
211  CRSMatrixView< real64, globalIndex const > const & localMatrix,
212  arrayView1d< real64 > const & localRhs )
213  {
214  if constexpr ( std::is_base_of_v< CellElementSubRegion, SUBREGION_TYPE > )
215  {
216  integer constexpr NUM_DOF = 2;
217  AccumulationKernel< CellElementSubRegion, NUM_DOF > kernel( rankOffset, dofKey, subRegion, localMatrix, localRhs );
218  AccumulationKernel< CellElementSubRegion, NUM_DOF >::template launch< POLICY >( subRegion.size(), kernel );
219  }
220  else if constexpr ( std::is_base_of_v< SurfaceElementSubRegion, SUBREGION_TYPE > )
221  {
222  SurfaceElementAccumulationKernel kernel( rankOffset, dofKey, subRegion, localMatrix, localRhs );
223  SurfaceElementAccumulationKernel::launch< POLICY >( subRegion.size(), kernel );
224  }
225  else
226  {
227  GEOS_UNUSED_VAR( rankOffset, dofKey, subRegion, localMatrix, localRhs );
228  GEOS_ERROR( "Unsupported subregion type: " << typeid(SUBREGION_TYPE).name() );
229  }
230  }
231 
232 };
233 
234 } // namespace thermalSinglePhaseBaseKernels
235 
236 } // namespace geos
237 
238 #endif //GEOS_PHYSICSSOLVERS_FLUIDFLOW_SINGLEPHASE_THERMALACCUMULATIONKERNELS_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_ERROR(msg)
Raise a hard error and terminate the program.
Definition: Logger.hpp:157
Define the interface for the assembly kernel in charge of accumulation.
GEOS_HOST_DEVICE void computeAccumulation(localIndex const ei, StackVariables &stack, FUNC &&kernelOp=NoOpFunc{}) const
Compute the local accumulation contributions to the residual and Jacobian.
arrayView1d< globalIndex const > const m_dofNumber
View on the dof numbers.
static constexpr integer numDof
Compute time value for the number of degrees of freedom.
GEOS_HOST_DEVICE void complete(localIndex const GEOS_UNUSED_PARAM(ei), StackVariables &stack) const
Performs the complete phase for the kernel.
arrayView1d< real64 > const m_localRhs
View on the local RHS.
CRSMatrixView< real64, globalIndex const > const m_localMatrix
View on the local CRS matrix.
arrayView1d< integer const > const m_elemGhostRank
View on the ghost ranks.
static constexpr integer numEqn
Compute time value for the number of equations.
globalIndex const m_rankOffset
Offset for my MPI rank.
static void createAndLaunch(globalIndex const rankOffset, string const dofKey, SUBREGION_TYPE const &subRegion, CRSMatrixView< real64, globalIndex const > const &localMatrix, arrayView1d< real64 > const &localRhs)
Create a new kernel and launch.
Define the interface for the assembly kernel in charge of accumulation.
AccumulationKernel(globalIndex const rankOffset, string const dofKey, SUBREGION_TYPE const &subRegion, CRSMatrixView< real64, globalIndex const > const &localMatrix, arrayView1d< real64 > const &localRhs)
Constructor.
GEOS_HOST_DEVICE void complete(localIndex const ei, StackVariables &stack) const
Performs the complete phase for the kernel.
GEOS_HOST_DEVICE void computeAccumulation(localIndex const ei, StackVariables &stack) const
Compute the local accumulation contributions to the residual and Jacobian.
static constexpr integer numDof
Compute time value for the number of degrees of freedom.
static constexpr integer isThermal
Note: Derivative lineup only supports dP & dT, not component terms.
arrayView1d< real64 > const m_localRhs
View on the local RHS.
arrayView1d< real64 const > const m_energy
View on energy.
CRSMatrixView< real64, globalIndex const > const m_localMatrix
View on the local CRS matrix.
static constexpr integer numEqn
Compute time value for the number of equations.
Define the interface for the assembly kernel in charge of accumulation in SurfaceElementSubRegion.
SurfaceElementAccumulationKernel(globalIndex const rankOffset, string const dofKey, SurfaceElementSubRegion const &subRegion, CRSMatrixView< real64, globalIndex const > const &localMatrix, arrayView1d< real64 > const &localRhs)
Constructor.
GEOS_HOST_DEVICE void computeAccumulation(localIndex const ei, Base::StackVariables &stack) const
Compute the local accumulation contributions to the residual and Jacobian.
ArrayView< T, 1 > arrayView1d
Alias for 1D array view.
Definition: DataTypes.hpp:180
LvArray::CRSMatrixView< T, COL_INDEX, localIndex const, LvArray::ChaiBuffer > CRSMatrixView
Alias for CRS Matrix View.
Definition: DataTypes.hpp:310
GEOS_GLOBALINDEX_TYPE globalIndex
Global index type (for indexing objects across MPI partitions).
Definition: DataTypes.hpp:88
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
Kernel variables (dof numbers, jacobian and residual) located on the stack.
real64 localJacobian[numEqn][numDof]
Storage for the element local Jacobian matrix.
localIndex localRow
Index of the local row corresponding to this element.
globalIndex dofIndices[numDof]
Index of the matrix row/column corresponding to the dof in this element.
real64 localResidual[numEqn]
Storage for the element local residual vector.
Kernel variables (dof numbers, jacobian and residual) located on the stack.