-
Notifications
You must be signed in to change notification settings - Fork 89
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: Overall Composition (Z) Formulation #3443
base: develop
Are you sure you want to change the base?
Conversation
src/coreComponents/physicsSolvers/fluidFlow/CompositionalMultiphaseBase.cpp
Outdated
Show resolved
Hide resolved
MultiFluidBase const & fluid = getConstitutiveModel< MultiFluidBase >( dataGroup, fluidName ); | ||
|
||
// For now: isothermal only | ||
GEOS_ERROR_IF( m_isThermal, GEOS_FMT( "CompositionalMultiphaseBase {}: Z Formulation is currently not available for thermal simulations", getDataContext() ) ); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
no need for CompositionalMultiphaseBase
, I think getDataContext()
should provide enough info
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
and this check should be in postInputInitialization
src/coreComponents/physicsSolvers/fluidFlow/CompositionalMultiphaseBase.cpp
Outdated
Show resolved
Hide resolved
src/coreComponents/physicsSolvers/fluidFlow/CompositionalMultiphaseBase.cpp
Show resolved
Hide resolved
{ | ||
typename TYPEOFREF( stencil ) ::KernelWrapper stencilWrapper = stencil.createKernelWrapper(); | ||
|
||
GEOS_ERROR_IF( m_isThermal, GEOS_FMT( |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
move checks somewhere earlier
Preliminary implementation. Validated in immiscible case.