20 #ifndef GEOS_PHYSICSSOLVERS_FLUIDFLOW_COMPOSITIONAL_C1PPUPHASEFLUX_HPP
21 #define GEOS_PHYSICSSOLVERS_FLUIDFLOW_COMPOSITIONAL_C1PPUPHASEFLUX_HPP
25 #include "constitutive/fluid/multifluid/Layouts.hpp"
26 #include "constitutive/capillaryPressure/layouts.hpp"
35 namespace isothermalCompositionalMultiphaseFVMKernelUtilities
39 static constexpr
real64 epsC1PPU = 5000;
41 template<
typename VIEWTYPE >
42 using ElementViewConst = ElementRegionManager::ElementViewConst< VIEWTYPE >;
44 using Deriv = constitutive::multifluid::DerivativeOffset;
76 template<
integer numComp,
integer numFluxSupportPo
ints >
82 localIndex const ( &seri )[numFluxSupportPoints],
83 localIndex const ( &sesri )[numFluxSupportPoints],
84 localIndex const ( &sei )[numFluxSupportPoints],
85 real64 const ( &trans )[2],
86 real64 const ( &dTrans_dPres )[2],
103 real64 ( & dPhaseFlux_dP )[numFluxSupportPoints],
104 real64 ( & dPhaseFlux_dC )[numFluxSupportPoints][numComp],
105 real64 ( & compFlux )[numComp],
106 real64 ( & dCompFlux_dP )[numFluxSupportPoints][numComp],
107 real64 ( & dCompFlux_dC )[numFluxSupportPoints][numComp][numComp] )
109 real64 dPresGrad_dP[numFluxSupportPoints]{};
110 real64 dPresGrad_dC[numFluxSupportPoints][numComp]{};
111 real64 dGravHead_dP[numFluxSupportPoints]{};
112 real64 dGravHead_dC[numFluxSupportPoints][numComp]{};
113 PotGrad::compute< numComp, numFluxSupportPoints >( numPhase, ip, hasCapPressure, seri, sesri, sei, trans, dTrans_dPres, pres,
114 gravCoef, phaseVolFrac, dPhaseVolFrac, dCompFrac_dCompDens, phaseMassDens, dPhaseMassDens,
115 phaseCapPressure, dPhaseCapPressure_dPhaseVolFrac, potGrad, dPresGrad_dP,
116 dPresGrad_dC, dGravHead_dP, dGravHead_dC );
120 for(
integer i = 0; i < numFluxSupportPoints; i++ )
126 real64 const gravD = trans[i] * gravCoef[er][esr][ei];
137 real64 Ttrans = fabs( trans[0] );
138 potGrad = potGrad / Ttrans;
140 real64 const mobility_i = phaseMob[seri[0]][sesri[0]][sei[0]][ip];
141 real64 const mobility_j = phaseMob[seri[1]][sesri[1]][sei[1]][ip];
145 if( fabs( gravHead ) <= 1e-20 )
147 real64 const tmpSqrt = sqrt( potGrad * potGrad + smoEps * smoEps );
148 real64 const smoMax = 0.5 * (-potGrad + tmpSqrt);
150 phaseFlux = Ttrans * ( potGrad * mobility_i - smoMax * (mobility_j - mobility_i) );
158 real64 const dMob_dP = dPhaseMob[seri[0]][sesri[0]][sei[0]][ip][Deriv::dP];
159 dPhaseFlux_dP[0] += Ttrans * potGrad * dMob_dP;
165 dPhaseMobSub = dPhaseMob[seri[0]][sesri[0]][sei[0]][ip];
166 for(
integer jc = 0; jc < numComp; ++jc )
168 dPhaseFlux_dC[0][jc] += Ttrans * potGrad * dPhaseMobSub[Deriv::dC + jc];
172 real64 const tmpInv = 1.0 / tmpSqrt;
173 real64 const dSmoMax_x = 0.5 * (1.0 - potGrad * tmpInv);
176 real64 const dMobDiff_sign[numFluxSupportPoints] = {-1.0, 1.0};
177 for(
integer ke = 0; ke < numFluxSupportPoints; ++ke )
181 real64 const dPotGrad_dP = dPresGrad_dP[ke] - dGravHead_dP[ke];
184 dPhaseFlux_dP[ke] += dPotGrad_dP * mobility_i;
187 real64 const dSmoMax_dP = -dPotGrad_dP * dSmoMax_x;
188 dPhaseFlux_dP[ke] += -dSmoMax_dP * (mobility_j - mobility_i);
190 real64 const dMob_dP = dPhaseMob[seri[ke]][sesri[ke]][sei[ke]][ip][Deriv::dP];
191 dPhaseFlux_dP[ke] += -Ttrans * smoMax * dMobDiff_sign[ke] * dMob_dP;
196 dPhaseMobSub = dPhaseMob[seri[ke]][sesri[ke]][sei[ke]][ip];
198 for(
integer jc = 0; jc < numComp; ++jc )
200 real64 const dPotGrad_dC = dPresGrad_dC[ke][jc] - dGravHead_dC[ke][jc];
203 dPhaseFlux_dC[ke][jc] += dPotGrad_dC * mobility_i;
206 real64 const dSmoMax_dC = -dPotGrad_dC * dSmoMax_x;
207 dPhaseFlux_dC[ke][jc] += -dSmoMax_dC * (mobility_j - mobility_i);
208 dPhaseFlux_dC[ke][jc] += -Ttrans * smoMax * dMobDiff_sign[ke] * dPhaseMobSub[Deriv::dC + jc];
212 potGrad = potGrad * Ttrans;
215 k_up = (phaseFlux >= 0) ? 0 : 1;
219 , dPhaseFlux_dP, dPhaseFlux_dC, compFlux, dCompFlux_dP, dCompFlux_dC );
#define GEOS_HOST_DEVICE
Marks a host-device function.
ArrayView< T, 1 > arrayView1d
Alias for 1D array view.
ArrayView< T, 5, USD > arrayView5d
Alias for 5D array view.
double real64
64-bit floating point type.
GEOS_LOCALINDEX_TYPE localIndex
Local index type (for indexing objects within an MPI partition).
ArraySlice< T, 1, USD > arraySlice1d
Alias for 1D array slice.
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)[2], real64 const (&dTrans_dPres)[2], ElementViewConst< arrayView1d< real64 const > > const &pres, ElementViewConst< arrayView1d< real64 const > > const &gravCoef, ElementViewConst< arrayView2d< real64 const, compflow::USD_PHASE > > const &phaseMob, ElementViewConst< arrayView3d< real64 const, compflow::USD_PHASE_DC > > const &dPhaseMob, ElementViewConst< arrayView2d< real64 const, compflow::USD_PHASE > > const &phaseVolFrac, ElementViewConst< arrayView3d< real64 const, compflow::USD_PHASE_DC > > const &dPhaseVolFrac, ElementViewConst< arrayView4d< real64 const, constitutive::multifluid::USD_PHASE_COMP > > const &phaseCompFrac, ElementViewConst< arrayView5d< real64 const, constitutive::multifluid::USD_PHASE_COMP_DC > > const &dPhaseCompFrac, 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, localIndex &k_up, real64 &potGrad, real64(&phaseFlux), real64(&dPhaseFlux_dP)[numFluxSupportPoints], real64(&dPhaseFlux_dC)[numFluxSupportPoints][numComp], real64(&compFlux)[numComp], real64(&dCompFlux_dP)[numFluxSupportPoints][numComp], real64(&dCompFlux_dC)[numFluxSupportPoints][numComp][numComp])
Form the PhasePotentialUpwind from pressure gradient and gravitational head.
static GEOS_HOST_DEVICE void compute(localIndex const ip, localIndex const k_up, localIndex const (&seri)[numFluxSupportPoints], localIndex const (&sesri)[numFluxSupportPoints], localIndex const (&sei)[numFluxSupportPoints], ElementViewConst< arrayView4d< real64 const, constitutive::multifluid::USD_PHASE_COMP > > const &phaseCompFrac, ElementViewConst< arrayView5d< real64 const, constitutive::multifluid::USD_PHASE_COMP_DC > > const &dPhaseCompFrac, ElementViewConst< arrayView3d< real64 const, compflow::USD_COMP_DC > > const &dCompFrac_dCompDens, real64 const &phaseFlux, real64 const (&dPhaseFlux_dP)[numFluxSupportPoints], real64 const (&dPhaseFlux_dC)[numFluxSupportPoints][numComp], real64(&compFlux)[numComp], real64(&dCompFlux_dP)[numFluxSupportPoints][numComp], real64(&dCompFlux_dC)[numFluxSupportPoints][numComp][numComp])
Compute the component flux for a given phase.