20 #ifndef GEOS_PHYSICSSOLVERS_FLUIDFLOW_COMPOSITIONAL_IHU2PHASEFLUX_HPP
21 #define GEOS_PHYSICSSOLVERS_FLUIDFLOW_COMPOSITIONAL_IHU2PHASEFLUX_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;
46 static constexpr
double minTotMob = 1e-12;
75 template<
integer numComp,
integer numFluxSupportPo
ints >
81 integer const checkPhasePresenceInGravity,
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],
100 real64 ( & dPhaseFlux_dP )[numFluxSupportPoints],
101 real64 ( & dPhaseFlux_dC )[numFluxSupportPoints][numComp] )
104 computeViscousFlux< numComp, numFluxSupportPoints >( ip, numPhase,
106 checkPhasePresenceInGravity,
111 phaseMassDens, dPhaseMassDens,
113 phaseVolFrac, dPhaseVolFrac,
114 phaseCapPressure, dPhaseCapPressure_dPhaseVolFrac,
115 phaseFlux, dPhaseFlux_dP, dPhaseFlux_dC );
117 computeGravityFlux< numComp, numFluxSupportPoints >( ip, numPhase,
118 checkPhasePresenceInGravity,
120 trans, dTrans_dPres, gravCoef,
124 phaseMassDens, dPhaseMassDens,
125 phaseFlux, dPhaseFlux_dP, dPhaseFlux_dC );
130 computeCapillaryFlux< numComp, numFluxSupportPoints >( ip, numPhase,
135 phaseCapPressure, dPhaseCapPressure_dPhaseVolFrac,
136 phaseFlux, dPhaseFlux_dP, dPhaseFlux_dC );
142 template< localIndex numComp, localIndex numFluxSupportPo
ints >
147 integer const & hasCapPressure,
148 integer const & checkPhasePresenceInGravity,
149 localIndex const (&seri)[numFluxSupportPoints],
150 localIndex const (&sesri)[numFluxSupportPoints],
151 localIndex const (&sei)[numFluxSupportPoints],
152 real64 const (&trans)[2],
real64 const (&dTrans_dPres)[2],
165 real64 ( & dPhaseFlux_dP )[numFluxSupportPoints],
166 real64 ( & dPhaseFlux_dC )[numFluxSupportPoints][numComp] )
170 real64 dTotFlux_dP[numFluxSupportPoints]{};
171 real64 dTotFlux_dC[numFluxSupportPoints][numComp]{};
173 computeTotalFlux( numPhase,
175 checkPhasePresenceInGravity,
180 phaseVolFrac, dPhaseVolFrac,
182 phaseMassDens, dPhaseMassDens,
183 phaseCapPressure, dPhaseCapPressure_dPhaseVolFrac,
184 totFlux, dTotFlux_dP, dTotFlux_dC );
189 real64 dMob_dC[numComp]{};
193 real64 dTotMob_dC[numComp]{};
201 upwindMobility< numComp, numFluxSupportPoints >( jp,
213 UpwindHelpers::addToValueAndDerivatives( mob, dMob_dP, dMob_dC, totMob, dTotMob_dP, dTotMob_dC );
217 upwindMobility< numComp, numFluxSupportPoints >( ip,
229 UpwindHelpers::addToValueAndDerivatives( mob, dMob_dP, dMob_dC, totMob, dTotMob_dP, dTotMob_dC );
232 totMob = LvArray::math::max( totMob, minTotMob );
233 real64 const invTotMob = 1 / totMob;
237 real64 const fractionalFlow = mob * invTotMob;
238 real64 dFractionalFlow_dP{};
239 real64 dFractionalFlow_dC[numComp]{};
240 UpwindHelpers::addToDerivativesScaled( dMob_dP, dMob_dC, invTotMob, dFractionalFlow_dP, dFractionalFlow_dC );
241 UpwindHelpers::addToDerivativesScaled( dTotMob_dP, dTotMob_dC, -fractionalFlow * invTotMob, dFractionalFlow_dP, dFractionalFlow_dC );
245 real64 const viscousPhaseFlux = fractionalFlow * totFlux;
246 real64 dViscousPhaseFlux_dP[numFluxSupportPoints]{};
247 real64 dViscousPhaseFlux_dC[numFluxSupportPoints][numComp]{};
250 UpwindHelpers::addToDerivativesScaled( dFractionalFlow_dP, dFractionalFlow_dC, totFlux, dViscousPhaseFlux_dP[k_up], dViscousPhaseFlux_dC[k_up] );
253 UpwindHelpers::addToDerivativesScaled( dTotFlux_dP, dTotFlux_dC, fractionalFlow, dViscousPhaseFlux_dP, dViscousPhaseFlux_dC );
256 UpwindHelpers::addToValueAndDerivatives( viscousPhaseFlux, dViscousPhaseFlux_dP, dViscousPhaseFlux_dC,
257 phaseFlux, dPhaseFlux_dP, dPhaseFlux_dC );
260 template< localIndex numComp, localIndex numFluxSupportPo
ints >
264 integer const checkPhasePresenceInGravity,
265 localIndex const (&seri)[numFluxSupportPoints],
266 localIndex const (&sesri)[numFluxSupportPoints],
267 localIndex const (&sei)[numFluxSupportPoints],
268 real64 const (&trans)[2],
real64 const (&dTrans_dPres)[2],
277 real64 (& dPhaseFlux_dP)[numFluxSupportPoints],
278 real64 (& dPhaseFlux_dC)[numFluxSupportPoints][numComp] )
282 real64 dGravPhaseFlux_dP[numFluxSupportPoints]{};
283 real64 dGravPhaseFlux_dC[numFluxSupportPoints][numComp]{};
286 real64 dPot_i_dP[numFluxSupportPoints]{};
287 real64 dPot_i_dC[numFluxSupportPoints][numComp]{};
288 computeGravityPotential< numComp, numFluxSupportPoints >( ip,
292 checkPhasePresenceInGravity,
309 real64 dPot_j_dP[numFluxSupportPoints]{};
310 real64 dPot_j_dC[numFluxSupportPoints][numComp]{};
311 computeGravityPotential< numComp, numFluxSupportPoints >( jp,
315 checkPhasePresenceInGravity,
327 computePotDiffFlux( ip, jp,
329 pot_i, dPot_i_dP, dPot_i_dC,
330 pot_j, dPot_j_dP, dPot_j_dC,
332 gravPhaseFlux, dGravPhaseFlux_dP, dGravPhaseFlux_dC );
337 UpwindHelpers::addToValueAndDerivatives( gravPhaseFlux, dGravPhaseFlux_dP, dGravPhaseFlux_dC,
338 phaseFlux, dPhaseFlux_dP, dPhaseFlux_dC );
341 template< localIndex numComp, localIndex numFluxSupportPo
ints >
345 localIndex const (&seri)[numFluxSupportPoints],
346 localIndex const (&sesri)[numFluxSupportPoints],
347 localIndex const (&sei)[numFluxSupportPoints],
348 real64 const (&trans)[2],
real64 const (&dTrans_dPres)[2],
355 real64 (& dPhaseFlux_dP)[numFluxSupportPoints],
356 real64 (& dPhaseFlux_dC)[numFluxSupportPoints][numComp] )
360 real64 dCapPhaseFlux_dP[numFluxSupportPoints]{};
361 real64 dCapPhaseFlux_dC[numFluxSupportPoints][numComp]{};
364 real64 dPot_i_dP[numFluxSupportPoints]{};
365 real64 dPot_i_dC[numFluxSupportPoints][numComp]{};
367 computeCapillaryPotential< numComp, numFluxSupportPoints >( ip,
376 dPhaseCapPressure_dPhaseVolFrac,
386 real64 dPot_j_dP[numFluxSupportPoints]{};
387 real64 dPot_j_dC[numFluxSupportPoints][numComp]{};
388 computeCapillaryPotential< numComp, numFluxSupportPoints >( jp,
397 dPhaseCapPressure_dPhaseVolFrac,
402 computePotDiffFlux( ip, jp,
404 pot_i, dPot_i_dP, dPot_i_dC,
405 pot_j, dPot_j_dP, dPot_j_dC,
407 capPhaseFlux, dCapPhaseFlux_dP, dCapPhaseFlux_dC );
412 UpwindHelpers::addToValueAndDerivatives( capPhaseFlux, dCapPhaseFlux_dP, dCapPhaseFlux_dC,
413 phaseFlux, dPhaseFlux_dP, dPhaseFlux_dC );
416 template< localIndex numComp, localIndex numFluxSupportPo
ints >
419 computeTotalFlux(
integer const & numPhase,
420 const integer & hasCapPressure,
421 const integer & checkPhasePresenceInGravity,
422 localIndex const (&seri)[numFluxSupportPoints],
423 localIndex const (&sesri)[numFluxSupportPoints],
424 localIndex const (&sei)[numFluxSupportPoints],
425 real64 const (&trans)[2],
real64 const (&dTrans_dPres)[2],
437 real64 & totFlux,
real64 (& dTotFlux_dP)[numFluxSupportPoints],
real64 (& dTotFlux_dC)[numFluxSupportPoints][numComp] )
439 for(
integer jp = 0; jp < numPhase; ++jp )
444 real64 dPhaseFlux_dP[numFluxSupportPoints]{};
445 real64 dPhaseFlux_dC[numFluxSupportPoints][numComp]{};
446 real64 dPhaseFlux_dTrans{};
449 checkPhasePresenceInGravity,
454 phaseVolFrac, dPhaseVolFrac,
456 phaseMassDens, dPhaseMassDens,
457 phaseCapPressure, dPhaseCapPressure_dPhaseVolFrac,
458 potGrad, phaseFlux, dPhaseFlux_dP, dPhaseFlux_dC, dPhaseFlux_dTrans );
460 UpwindHelpers::addToValueAndDerivatives( phaseFlux, dPhaseFlux_dP, dPhaseFlux_dC,
461 totFlux, dTotFlux_dP, dTotFlux_dC );
465 template< localIndex numComp, localIndex numFluxSupportPo
ints >
469 localIndex const (&seri)[numFluxSupportPoints],
470 localIndex const (&sesri)[numFluxSupportPoints],
471 localIndex const (&sei)[numFluxSupportPoints],
473 ElementViewConst< arrayView2d< real64 const, compflow::USD_PHASE > >
const & phaseMob,
474 ElementViewConst< arrayView3d< real64 const, compflow::USD_PHASE_DC > >
const & dPhaseMob,
478 real64 ( & dMobility_dC)[numComp] )
480 upwindDir = (pot > 0) ? 0 : 1;
481 UpwindHelpers::assignToZero( mobility, dMobility_dP, dMobility_dC );
482 UpwindHelpers::assignMobilityAndDerivatives( ip, upwindDir, seri, sesri, sei, phaseMob, dPhaseMob, mobility, dMobility_dP, dMobility_dC );
485 template< localIndex numComp, localIndex numFluxSupportPo
ints >
487 static void computeGravityPotential(
localIndex const ip,
488 localIndex const (&seri)[numFluxSupportPoints],
489 localIndex const (&sesri)[numFluxSupportPoints],
490 localIndex const (&sei)[numFluxSupportPoints],
491 integer const checkPhasePresenceInGravity,
493 real64 const (&dTrans_dP)[2],
494 ElementViewConst< arrayView1d< real64 const > >
const & gravCoef,
495 ElementViewConst< arrayView3d< real64 const, compflow::USD_COMP_DC > >
const & dCompFrac_dCompDens,
496 ElementViewConst< arrayView2d< real64 const, compflow::USD_PHASE > >
const & phaseVolFrac,
497 ElementViewConst< arrayView3d< real64 const, constitutive::multifluid::USD_PHASE > >
const & phaseMassDens,
498 ElementViewConst< arrayView4d< real64 const, constitutive::multifluid::USD_PHASE_DC > >
const & dPhaseMassDens,
500 real64 ( & dGravPot_dP )[numFluxSupportPoints],
501 real64 ( & dGravPot_dC )[numFluxSupportPoints][numComp] )
504 UpwindHelpers::assignToZero( gravPot, dGravPot_dP, dGravPot_dC );
508 real64 dDensMean_dP[numFluxSupportPoints]{};
509 real64 dDensMean_dC[numFluxSupportPoints][numComp]{};
510 isothermalCompositionalMultiphaseFVMKernels::helpers::
511 calculateMeanDensity( ip, seri, sesri, sei,
512 checkPhasePresenceInGravity,
513 phaseVolFrac, dCompFrac_dCompDens,
514 phaseMassDens, dPhaseMassDens,
515 densMean, dDensMean_dP, dDensMean_dC );
518 for(
localIndex i = 0; i < numFluxSupportPoints; ++i )
524 real64 const gravD = trans[i] * gravCoef[er][esr][ei];
525 real64 const dGravD_dP = dTrans_dP[i] * gravCoef[er][esr][ei];
526 gravPot += densMean * gravD;
527 dGravPot_dP[i] += densMean * dGravD_dP;
530 UpwindHelpers::addToDerivativesScaled( dDensMean_dP, dDensMean_dC, gravD, dGravPot_dP, dGravPot_dC );
535 template< localIndex numComp, localIndex numFluxSupportPo
ints >
537 static void computeCapillaryPotential(
localIndex const ip,
539 localIndex const (&seri)[numFluxSupportPoints],
540 localIndex const (&sesri)[numFluxSupportPoints],
541 localIndex const (&sei)[numFluxSupportPoints],
543 real64 const (&dTrans_dPres)[2],
544 ElementViewConst< arrayView3d< real64 const, compflow::USD_PHASE_DC > >
const & dPhaseVolFrac,
545 ElementViewConst< arrayView3d< real64 const, constitutive::cappres::USD_CAPPRES > >
const & phaseCapPressure,
546 ElementViewConst< arrayView4d< real64 const, constitutive::cappres::USD_CAPPRES_DS > >
const & dPhaseCapPressure_dPhaseVolFrac,
548 real64 ( & dCapPot_dP )[numFluxSupportPoints],
549 real64 ( & dCapPot_dC )[numFluxSupportPoints][numComp] )
552 UpwindHelpers::assignToZero( capPot, dCapPot_dP, dCapPot_dC );
555 for(
localIndex i = 0; i < numFluxSupportPoints; ++i )
561 real64 const capPressure = phaseCapPressure[er][esr][ei][0][ip];
563 real64 dCapPressure_dC[numComp]{};
564 for(
integer jp = 0; jp < numPhase; ++jp )
566 real64 const dCapPressure_dS = dPhaseCapPressure_dPhaseVolFrac[er][esr][ei][0][ip][jp];
567 dCapPressure_dP += dCapPressure_dS * dPhaseVolFrac[er][esr][ei][jp][Deriv::dP];
569 for(
integer jc = 0; jc < numComp; ++jc )
571 dCapPressure_dC[jc] += dCapPressure_dS * dPhaseVolFrac[er][esr][ei][jp][Deriv::dC+jc];
575 capPot += trans[i] * capPressure;
576 dCapPot_dP[i] += trans[i] * dCapPressure_dP + dTrans_dPres[i] * capPressure;
577 for(
integer jc = 0; jc < numComp; ++jc )
579 dCapPot_dC[i][jc] += trans[i] * dCapPressure_dC[jc];
584 template< localIndex numComp, localIndex numFluxSupportPo
ints >
588 localIndex const (&seri)[numFluxSupportPoints],
589 localIndex const (&sesri)[numFluxSupportPoints],
590 localIndex const (&sei)[numFluxSupportPoints],
591 real64 const & pot_i,
real64 const ( &dPot_i_dP )[numFluxSupportPoints],
real64 const (&dPot_i_dC )[numFluxSupportPoints][numComp],
592 real64 const & pot_j,
real64 const ( &dPot_j_dP )[numFluxSupportPoints],
real64 const ( &dPot_j_dC)[numFluxSupportPoints][numComp],
593 ElementViewConst< arrayView2d< real64 const, compflow::USD_PHASE > >
const & phaseMob,
594 ElementViewConst< arrayView3d< real64 const, compflow::USD_PHASE_DC > >
const & dPhaseMob,
595 real64 & phaseFlux,
real64 ( & dPhaseFlux_dP )[numFluxSupportPoints],
real64 ( & dPhaseFlux_dC)[numFluxSupportPoints][numComp] )
598 real64 const potDiff = pot_j - pot_i;
599 real64 dPotDiff_dP[numFluxSupportPoints]{};
600 real64 dPotDiff_dC[numFluxSupportPoints][numComp]{};
601 UpwindHelpers::addToDerivativesScaled( dPot_j_dP, dPot_j_dC, 1.0, dPotDiff_dP, dPotDiff_dC );
602 UpwindHelpers::addToDerivativesScaled( dPot_i_dP, dPot_i_dC, -1.0, dPotDiff_dP, dPotDiff_dC );
607 real64 dMob_i_dC[numComp]{};
608 upwindMobility< numComp, numFluxSupportPoints >( ip,
622 real64 dMob_j_dC[numComp]{};
623 upwindMobility< numComp, numFluxSupportPoints >( jp,
636 real64 const mobTot = LvArray::math::max( mob_i + mob_j, minTotMob );
637 real64 const mobTotInv = 1 / mobTot;
638 real64 dMobTot_dP[numFluxSupportPoints]{};
639 real64 dMobTot_dC[numFluxSupportPoints][numComp]{};
640 UpwindHelpers::addToDerivatives( dMob_i_dP, dMob_i_dC, dMobTot_dP[k_up_i], dMobTot_dC[k_up_i] );
641 UpwindHelpers::addToDerivatives( dMob_j_dP, dMob_j_dC, dMobTot_dP[k_up_j], dMobTot_dC[k_up_j] );
644 phaseFlux += mob_i * mob_j * mobTotInv * potDiff;
647 UpwindHelpers::addToDerivativesScaled( dMob_i_dP, dMob_i_dC, mob_j * mobTotInv * potDiff, dPhaseFlux_dP[k_up_i], dPhaseFlux_dC[k_up_i] );
650 UpwindHelpers::addToDerivativesScaled( dMob_j_dP, dMob_j_dC, mob_i * mobTotInv * potDiff, dPhaseFlux_dP[k_up_j], dPhaseFlux_dC[k_up_j] );
653 real64 const mobTotInv2 = mobTotInv * mobTotInv;
654 UpwindHelpers::addToDerivativesScaled( dMobTot_dP, dMobTot_dC, -mob_i * mob_j * mobTotInv2 * potDiff, dPhaseFlux_dP, dPhaseFlux_dC );
657 UpwindHelpers::addToDerivativesScaled( dPotDiff_dP, dPotDiff_dC, mob_i * mob_j * mobTotInv, dPhaseFlux_dP, dPhaseFlux_dC );
#define GEOS_HOST_DEVICE
Marks a host-device function.
#define GEOS_UNUSED_PARAM(X)
Mark an unused argument and silence compiler warnings.
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 computeGravityFlux(integer const &ip, integer const &numPhase, integer const checkPhasePresenceInGravity, 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 &gravCoef, ElementViewConst< arrayView2d< real64 const, compflow::USD_PHASE > > const &phaseVolFrac, ElementViewConst< arrayView2d< real64 const, compflow::USD_PHASE > > const &phaseMob, ElementViewConst< arrayView3d< real64 const, compflow::USD_PHASE_DC > > const &dPhaseMob, 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, real64 &phaseFlux, real64(&dPhaseFlux_dP)[numFluxSupportPoints], real64(&dPhaseFlux_dC)[numFluxSupportPoints][numComp])
static GEOS_HOST_DEVICE void computeCapillaryFlux(integer const &ip, integer const &numPhase, localIndex const (&seri)[numFluxSupportPoints], localIndex const (&sesri)[numFluxSupportPoints], localIndex const (&sei)[numFluxSupportPoints], real64 const (&trans)[2], real64 const (&dTrans_dPres)[2], ElementViewConst< arrayView2d< real64 const, compflow::USD_PHASE > > const &phaseMob, ElementViewConst< arrayView3d< real64 const, compflow::USD_PHASE_DC > > const &dPhaseMob, ElementViewConst< arrayView3d< real64 const, compflow::USD_PHASE_DC > > const &dPhaseVolFrac, ElementViewConst< arrayView3d< real64 const, constitutive::cappres::USD_CAPPRES > > const &phaseCapPressure, ElementViewConst< arrayView4d< real64 const, constitutive::cappres::USD_CAPPRES_DS > > const &dPhaseCapPressure_dPhaseVolFrac, real64 &phaseFlux, real64(&dPhaseFlux_dP)[numFluxSupportPoints], real64(&dPhaseFlux_dC)[numFluxSupportPoints][numComp])
static GEOS_HOST_DEVICE void compute(integer const numPhase, integer const ip, integer const hasCapPressure, integer const checkPhasePresenceInGravity, 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< 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 &GEOS_UNUSED_PARAM(potGrad), real64(&phaseFlux), real64(&dPhaseFlux_dP)[numFluxSupportPoints], real64(&dPhaseFlux_dC)[numFluxSupportPoints][numComp])
Simplified 2-phase version of hybrid upwinding.
static GEOS_HOST_DEVICE void computeViscousFlux(integer const &ip, integer const &numPhase, integer const &hasCapPressure, integer const &checkPhasePresenceInGravity, 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< 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< 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< arrayView3d< real64 const, constitutive::cappres::USD_CAPPRES > > const &phaseCapPressure, ElementViewConst< arrayView4d< real64 const, constitutive::cappres::USD_CAPPRES_DS > > const &dPhaseCapPressure_dPhaseVolFrac, real64(&phaseFlux), real64(&dPhaseFlux_dP)[numFluxSupportPoints], real64(&dPhaseFlux_dC)[numFluxSupportPoints][numComp])
static GEOS_HOST_DEVICE void compute(integer const numPhase, integer const ip, integer const hasCapPressure, integer const checkPhasePresenceInGravity, 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< 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 &phaseFlux, real64(&dPhaseFlux_dP)[numFluxSupportPoints], real64(&dPhaseFlux_dC)[numFluxSupportPoints][numComp], real64 &dPhaseFlux_dTrans)
Form the PhasePotentialUpwind from pressure gradient and gravitational head.