20 #ifndef GEOS_PHYSICSSOLVERS_FLUIDFLOW_COMPOSITIONAL_POTGRAD_HPP
21 #define GEOS_PHYSICSSOLVERS_FLUIDFLOW_COMPOSITIONAL_POTGRAD_HPP
25 #include "constitutive/fluid/multifluid/Layouts.hpp"
26 #include "constitutive/capillaryPressure/layouts.hpp"
33 namespace isothermalCompositionalMultiphaseFVMKernelUtilities
36 template<
typename VIEWTYPE >
37 using ElementViewConst = ElementRegionManager::ElementViewConst< VIEWTYPE >;
39 using Deriv = constitutive::multifluid::DerivativeOffset;
43 template<
integer numComp,
integer numFluxSupportPo
ints >
49 localIndex const ( &seri )[numFluxSupportPoints],
50 localIndex const ( &sesri )[numFluxSupportPoints],
51 localIndex const ( &sei )[numFluxSupportPoints],
52 real64 const ( &trans )[numFluxSupportPoints],
53 real64 const ( &dTrans_dPres )[numFluxSupportPoints],
64 real64 ( & dPresGrad_dP )[numFluxSupportPoints],
65 real64 ( & dPresGrad_dC )[numFluxSupportPoints][numComp],
66 real64 ( & dGravHead_dP )[numFluxSupportPoints],
67 real64 ( & dGravHead_dC )[numFluxSupportPoints][numComp] )
70 for(
integer i = 0; i < numFluxSupportPoints; ++i )
72 dPresGrad_dP[i] = 0.0;
73 dGravHead_dP[i] = 0.0;
74 for(
integer jc = 0; jc < numComp; ++jc )
76 dPresGrad_dC[i][jc] = 0.0;
77 dGravHead_dC[i][jc] = 0.0;
83 real64 dDensMean_dP[numFluxSupportPoints]{};
84 real64 dDensMean_dC[numFluxSupportPoints][numComp]{};
88 real64 dCapPressure_dC[numComp]{};
90 real64 dProp_dC[numComp]{};
94 for(
integer i = 0; i < numFluxSupportPoints; ++i )
100 bool const phaseExists = (phaseVolFrac[er][esr][ei][ip] > 0);
107 real64 const density = phaseMassDens[er][esr][ei][0][ip];
108 real64 const dDens_dP = dPhaseMassDens[er][esr][ei][0][ip][Deriv::dP];
110 applyChainRule( numComp,
111 dCompFrac_dCompDens[er][esr][ei],
112 dPhaseMassDens[er][esr][ei][0][ip],
118 dDensMean_dP[i] = dDens_dP;
119 for(
integer jc = 0; jc < numComp; ++jc )
121 dDensMean_dC[i][jc] = dProp_dC[jc];
128 for(
integer i = 0; i < numFluxSupportPoints; ++i )
130 dDensMean_dP[i] /= denom;
131 for(
integer jc = 0; jc < numComp; ++jc )
133 dDensMean_dC[i][jc] /= denom;
139 for(
integer i = 0; i < numFluxSupportPoints; i++ )
147 real64 dCapPressure_dP = 0.0;
149 for(
integer ic = 0; ic < numComp; ++ic )
151 dCapPressure_dC[ic] = 0.0;
156 capPressure = phaseCapPressure[er][esr][ei][0][ip];
158 for(
integer jp = 0; jp < numPhase; ++jp )
160 real64 const dCapPressure_dS = dPhaseCapPressure_dPhaseVolFrac[er][esr][ei][0][ip][jp];
161 dCapPressure_dP += dCapPressure_dS * dPhaseVolFrac[er][esr][ei][jp][Deriv::dP];
163 for(
integer jc = 0; jc < numComp; ++jc )
165 dCapPressure_dC[jc] += dCapPressure_dS * dPhaseVolFrac[er][esr][ei][jp][Deriv::dC+jc];
170 presGrad += trans[i] * (pres[er][esr][ei] - capPressure);
171 dPresGrad_dP[i] += trans[i] * (1 - dCapPressure_dP)
172 + dTrans_dPres[i] * (pres[er][esr][ei] - capPressure);
173 for(
integer jc = 0; jc < numComp; ++jc )
175 dPresGrad_dC[i][jc] += -trans[i] * dCapPressure_dC[jc];
178 real64 const gravD = trans[i] * gravCoef[er][esr][ei];
179 real64 const dGravD_dP = dTrans_dPres[i] * gravCoef[er][esr][ei];
184 gravHead += densMean * gravD;
187 for(
integer j = 0; j < numFluxSupportPoints; ++j )
189 dGravHead_dP[j] += dDensMean_dP[j] * gravD + dGravD_dP * densMean;
190 for(
integer jc = 0; jc < numComp; ++jc )
192 dGravHead_dC[j][jc] += dDensMean_dC[j][jc] * gravD;
198 potGrad = presGrad - gravHead;
#define GEOS_HOST_DEVICE
Marks a host-device function.
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, 4, USD > arrayView4d
Alias for 4D array view.
ArrayView< T, 2, USD > arrayView2d
Alias for 2D array view.
ArrayView< T, 3, USD > arrayView3d
Alias for 3D array view.
static GEOS_HOST_DEVICE void compute(integer const numPhase, integer const ip, integer const hasCapPressure, localIndex const (&seri)[numFluxSupportPoints], localIndex const (&sesri)[numFluxSupportPoints], localIndex const (&sei)[numFluxSupportPoints], real64 const (&trans)[numFluxSupportPoints], real64 const (&dTrans_dPres)[numFluxSupportPoints], ElementViewConst< arrayView1d< real64 const > > const &pres, ElementViewConst< arrayView1d< real64 const > > const &gravCoef, ElementViewConst< arrayView2d< real64 const, compflow::USD_PHASE > > const &phaseVolFrac, ElementViewConst< arrayView3d< real64 const, compflow::USD_PHASE_DC > > const &dPhaseVolFrac, ElementViewConst< arrayView3d< real64 const, compflow::USD_COMP_DC > > const &dCompFrac_dCompDens, ElementViewConst< arrayView3d< real64 const, constitutive::multifluid::USD_PHASE > > const &phaseMassDens, ElementViewConst< arrayView4d< real64 const, constitutive::multifluid::USD_PHASE_DC > > const &dPhaseMassDens, ElementViewConst< arrayView3d< real64 const, constitutive::cappres::USD_CAPPRES > > const &phaseCapPressure, ElementViewConst< arrayView4d< real64 const, constitutive::cappres::USD_CAPPRES_DS > > const &dPhaseCapPressure_dPhaseVolFrac, real64 &potGrad, real64(&dPresGrad_dP)[numFluxSupportPoints], real64(&dPresGrad_dC)[numFluxSupportPoints][numComp], real64(&dGravHead_dP)[numFluxSupportPoints], real64(&dGravHead_dC)[numFluxSupportPoints][numComp])