GEOS
FluxComputeKernelBase.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_COMPOSITIONAL_FLUXCOMPUTEKERNELBASE_HPP
21 #define GEOS_PHYSICSSOLVERS_FLUIDFLOW_COMPOSITIONAL_FLUXCOMPUTEKERNELBASE_HPP
22 
23 #include "common/DataLayouts.hpp"
24 #include "common/DataTypes.hpp"
25 #include "common/GEOS_RAJA_Interface.hpp"
26 #include "constitutive/capillaryPressure/CapillaryPressureFields.hpp"
27 #include "constitutive/capillaryPressure/CapillaryPressureBase.hpp"
28 #include "constitutive/fluid/multifluid/MultiFluidBase.hpp"
29 #include "constitutive/fluid/multifluid/MultiFluidFields.hpp"
30 #include "constitutive/permeability/PermeabilityBase.hpp"
31 #include "constitutive/permeability/PermeabilityFields.hpp"
36 
37 
38 namespace geos
39 {
40 
41 namespace isothermalCompositionalMultiphaseFVMKernels
42 {
43 
44 enum class KernelFlags
45 {
47  CapPressure = 1 << 0, // 1
49  Diffusion = 1 << 1, // 2
51  Dispersion = 1 << 2, // 4
53  TotalMassEquation = 1 << 3, // 8
55  CheckPhasePresenceInGravity = 1 << 4, // 16
57  C1PPU = 1 << 5, // 32
59  IHU = 1 << 6, // 64
61  HU2PH = 1 << 7 // 128
62 };
63 
64 /******************************** FluxComputeKernelBase ********************************/
65 
71 {
72 public:
73 
80  template< typename VIEWTYPE >
82 
84 
85  using CompFlowAccessors =
87  fields::flow::gravityCoefficient,
88  fields::flow::pressure,
89  fields::flow::dGlobalCompFraction_dGlobalCompDensity,
90  fields::flow::phaseVolumeFraction,
91  fields::flow::dPhaseVolumeFraction,
92  fields::flow::phaseMobility,
93  fields::flow::dPhaseMobility >;
94  using MultiFluidAccessors =
95  StencilMaterialAccessors< constitutive::MultiFluidBase,
96  fields::multifluid::phaseDensity,
97  fields::multifluid::dPhaseDensity,
98  fields::multifluid::phaseMassDensity,
99  fields::multifluid::dPhaseMassDensity,
100  fields::multifluid::phaseCompFraction,
101  fields::multifluid::dPhaseCompFraction >;
102 
103  using CapPressureAccessors =
104  StencilMaterialAccessors< constitutive::CapillaryPressureBase,
105  fields::cappres::phaseCapPressure,
106  fields::cappres::dPhaseCapPressure_dPhaseVolFraction >;
107 
108  using PermeabilityAccessors =
109  StencilMaterialAccessors< constitutive::PermeabilityBase,
110  fields::permeability::permeability,
111  fields::permeability::dPerm_dPressure >;
112 
125  FluxComputeKernelBase( integer const numPhases,
126  globalIndex const rankOffset,
127  DofNumberAccessor const & dofNumberAccessor,
128  CompFlowAccessors const & compFlowAccessors,
129  MultiFluidAccessors const & multiFluidAccessors,
130  real64 const dt,
131  CRSMatrixView< real64, globalIndex const > const & localMatrix,
132  arrayView1d< real64 > const & localRhs,
133  BitFlags< KernelFlags > kernelFlags );
134 
135 protected:
136 
139 
142 
144  real64 const m_dt;
145 
148 
152 
153  // Primary and secondary variables
154 
157 
161 
164 
168 
169  // Residual and jacobian
170 
175 
176  BitFlags< KernelFlags > const m_kernelFlags;
177 };
178 
179 namespace helpers
180 {
181 template< typename VIEWTYPE >
183 
184 template< localIndex numComp, localIndex numFluxSupportPoints >
186 static void calculateMeanDensity( localIndex const ip,
187  localIndex const (&seri)[numFluxSupportPoints],
188  localIndex const (&sesri)[numFluxSupportPoints],
189  localIndex const (&sei)[numFluxSupportPoints],
190  integer const checkPhasePresenceInGravity,
191  ElementViewConst< arrayView2d< real64 const, compflow::USD_PHASE > > const & phaseVolFrac,
192  ElementViewConst< arrayView3d< real64 const, compflow::USD_COMP_DC > > const & dCompFrac_dCompDens,
193  ElementViewConst< arrayView3d< real64 const, constitutive::multifluid::USD_PHASE > > const & phaseMassDens,
194  ElementViewConst< arrayView4d< real64 const, constitutive::multifluid::USD_PHASE_DC > > const & dPhaseMassDens,
195  real64 & densMean, real64 (& dDensMean_dPres)[numFluxSupportPoints], real64 (& dDensMean_dComp)[numFluxSupportPoints][numComp] )
196 {
197  using Deriv = constitutive::multifluid::DerivativeOffset;
198 
199  densMean = 0;
200  integer denom = 0;
201  real64 dDens_dC[numComp]{};
202  for( localIndex i = 0; i < numFluxSupportPoints; ++i )
203  {
204  localIndex const er = seri[i];
205  localIndex const esr = sesri[i];
206  localIndex const ei = sei[i];
207 
208  bool const phaseExists = (phaseVolFrac[er][esr][ei][ip] > 0);
209  if( checkPhasePresenceInGravity && !phaseExists )
210  {
211  dDensMean_dPres[i] = 0.0;
212  for( localIndex jc = 0; jc < numComp; ++jc )
213  {
214  dDensMean_dComp[i][jc] = 0.0;
215  }
216  continue;
217  }
218 
219  // density
220  real64 const density = phaseMassDens[er][esr][ei][0][ip];
221  real64 const dDens_dPres = dPhaseMassDens[er][esr][ei][0][ip][Deriv::dP];
222 
223  applyChainRule( numComp,
224  dCompFrac_dCompDens[er][esr][ei],
225  dPhaseMassDens[er][esr][ei][0][ip],
226  dDens_dC,
227  Deriv::dC );
228 
229  // average density and derivatives
230  densMean += density;
231  dDensMean_dPres[i] = dDens_dPres;
232  for( localIndex jc = 0; jc < numComp; ++jc )
233  {
234  dDensMean_dComp[i][jc] = dDens_dC[jc];
235  }
236  denom++;
237  }
238  if( denom > 1 )
239  {
240  densMean /= denom;
241  for( localIndex i = 0; i < numFluxSupportPoints; ++i )
242  {
243  dDensMean_dPres[i] /= denom;
244  for( integer jc = 0; jc < numComp; ++jc )
245  {
246  dDensMean_dComp[i][jc] /= denom;
247  }
248  }
249  }
250 }
251 
252 }
253 
254 } // namespace isothermalCompositionalMultiphaseFVMKernels
255 
256 } // namespace geos
257 
258 
259 #endif //GEOS_PHYSICSSOLVERS_FLUIDFLOW_COMPOSITIONAL_FLUXCOMPUTEKERNELBASE_HPP
#define GEOS_HOST_DEVICE
Marks a host-device function.
Definition: GeosxMacros.hpp:49
array1d< array1d< VIEWTYPE > > ElementViewAccessor
The ElementViewAccessor at the ElementRegionManager level is an array of array of VIEWTYPE.
typename ElementViewAccessor< VIEWTYPE >::NestedViewTypeConst ElementViewConst
The ElementViewAccessor at the ElementRegionManager level is the type resulting from ElementViewAcces...
A struct to automatically construct and store element view accessors.
A struct to automatically construct and store element view accessors.
Base class for FluxComputeKernel that holds all data not dependent on template parameters (like stenc...
ElementViewConst< arrayView2d< real64 const, compflow::USD_PHASE > > const m_phaseVolFrac
Views on phase volume fractions.
ElementViewConst< arrayView1d< globalIndex const > > const m_dofNumber
Views on dof numbers.
ElementViewConst< arrayView1d< real64 const > > const m_pres
Views on pressure.
ElementViewConst< arrayView1d< integer const > > const m_ghostRank
Views on ghost rank numbers and gravity coefficients.
ElementViewConst< arrayView4d< real64 const, constitutive::multifluid::USD_PHASE_COMP > > const m_phaseCompFrac
Views on phase component fractions.
CRSMatrixView< real64, globalIndex const > const m_localMatrix
View on the local CRS matrix.
ElementRegionManager::ElementViewConst< VIEWTYPE > ElementViewConst
The type for element-based data. Consists entirely of ArrayView's.
ElementViewConst< arrayView3d< real64 const, compflow::USD_COMP_DC > > const m_dCompFrac_dCompDens
Views on derivatives of comp fractions.
FluxComputeKernelBase(integer const numPhases, globalIndex const rankOffset, DofNumberAccessor const &dofNumberAccessor, CompFlowAccessors const &compFlowAccessors, MultiFluidAccessors const &multiFluidAccessors, real64 const dt, CRSMatrixView< real64, globalIndex const > const &localMatrix, arrayView1d< real64 > const &localRhs, BitFlags< KernelFlags > kernelFlags)
Constructor for the kernel interface.
@ Dispersion
Flag to specify whether dispersion is used or not.
@ C1PPU
Flag indicating whether C1-PPU is used or not.
@ CheckPhasePresenceInGravity
Flag indicating whether gravity treatment is checking phase presence or not.
@ CapPressure
Flag to specify whether capillary pressure is used or not.
@ HU2PH
Flag indicating whether HU 2-phase simplified version is used or not.
@ Diffusion
Flag to specify whether diffusion is used or not.
@ IHU
Flag indicating whether IHU is used or not.
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
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, 4, USD > arrayView4d
Alias for 4D array view.
Definition: DataTypes.hpp:228
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
Trait struct for ghostRank data.
Definition: MeshFields.hpp:100