Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: co2-brine PPU with capillary pressure continuity #3229

Closed
wants to merge 9 commits into from
8 changes: 5 additions & 3 deletions src/coreComponents/finiteVolume/FluxApproximationBase.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,8 @@ enum class UpwindingScheme : integer
{
PPU, ///< PPU upwinding
C1PPU, ///< C1-PPU upwinding from https://doi.org/10.1016/j.advwatres.2017.07.028
IHU ///< IHU as in https://link.springer.com/content/pdf/10.1007/s10596-019-09835-6.pdf
IHU, ///< IHU as in https://link.springer.com/content/pdf/10.1007/s10596-019-09835-6.pdf
PPUIC
};

/**
Expand All @@ -48,7 +49,8 @@ enum class UpwindingScheme : integer
ENUM_STRINGS( UpwindingScheme,
"PPU",
"C1PPU",
"IHU" );
"IHU",
"PPUIC" );

/**
* @struct UpwindingParameters
Expand All @@ -57,7 +59,7 @@ ENUM_STRINGS( UpwindingScheme,
*/
struct UpwindingParameters
{
/// PPU or C1-PPU or IHU
/// PPU or C1-PPU or IHU or PPU+interface conditions
UpwindingScheme upwindingScheme;

/// C1-PPU smoothing tolerance
Expand Down
Loading
Loading