mirror of
https://github.com/OPM/opm-simulators.git
synced 2025-02-25 18:55:30 -06:00
Some support for WAG hysteresis.
This commit is contained in:
parent
81bda54c67
commit
9dbadfdaae
@ -251,6 +251,15 @@ partiallySupported()
|
|||||||
{11,{true, allow_values<std::string> {"N"}, "UDQDIMS(RSEED): option is not supported use default"}}, // RESTART_NEW_SEED
|
{11,{true, allow_values<std::string> {"N"}, "UDQDIMS(RSEED): option is not supported use default"}}, // RESTART_NEW_SEED
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"WAGHYSTR",
|
||||||
|
{
|
||||||
|
{3,{true, allow_values<std::string> {"YES"}, "WAGHYSTR(GAS_MODEL): only the YES option is supported – will STOP"}}, // GAS_MODEL
|
||||||
|
{4,{true, allow_values<std::string> {"NO"}, "WAGHYSTR(RES_OIL): only the NO option is supported – will STOP"}}, // RES_OIL
|
||||||
|
{5,{true, allow_values<std::string> {"NO"}, "WAGHYSTR(WATER_MODEL): only the NO option is supported – will STOP"}}, // WATER_MODEL
|
||||||
|
},
|
||||||
|
},
|
||||||
|
|
||||||
{
|
{
|
||||||
"WCONHIST",
|
"WCONHIST",
|
||||||
{
|
{
|
||||||
@ -627,6 +636,12 @@ partiallySupported()
|
|||||||
{3,{true, allow_values<double> {}, "VISCREF(API): API tracking option is not supported"}}, // API_GRAVITY
|
{3,{true, allow_values<double> {}, "VISCREF(API): API tracking option is not supported"}}, // API_GRAVITY
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"WAGHYSTR",
|
||||||
|
{
|
||||||
|
{8,{false, allow_values<double> {}, "WAGHYSTR(RES_OIL_MOD_FRACTION): Residual oil modification for STONE1 not supported - value ignored"}}, // RES_OIL_MOD_FRACTION
|
||||||
|
},
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"WCONHIST",
|
"WCONHIST",
|
||||||
{
|
{
|
||||||
|
@ -669,7 +669,6 @@ const KeywordValidation::UnsupportedKeywords& unsupportedKeywords()
|
|||||||
{"VISCD", {true, std::nullopt}},
|
{"VISCD", {true, std::nullopt}},
|
||||||
{"VISDATES", {true, std::nullopt}},
|
{"VISDATES", {true, std::nullopt}},
|
||||||
{"VISOPTS", {true, std::nullopt}},
|
{"VISOPTS", {true, std::nullopt}},
|
||||||
{"WAGHYSTR", {true, std::nullopt}},
|
|
||||||
{"WAITBAL", {true, std::nullopt}},
|
{"WAITBAL", {true, std::nullopt}},
|
||||||
{"WALKALIN", {true, std::nullopt}},
|
{"WALKALIN", {true, std::nullopt}},
|
||||||
{"WALQCALC", {true, std::nullopt}},
|
{"WALQCALC", {true, std::nullopt}},
|
||||||
|
@ -32,6 +32,7 @@
|
|||||||
|
|
||||||
#include <opm/output/eclipse/Inplace.hpp>
|
#include <opm/output/eclipse/Inplace.hpp>
|
||||||
|
|
||||||
|
#include <opm/input/eclipse/EclipseState/WagHysteresisConfig.hpp>
|
||||||
#include <opm/material/fluidmatrixinteractions/EclHysteresisTwoPhaseLawParams.hpp>
|
#include <opm/material/fluidmatrixinteractions/EclHysteresisTwoPhaseLawParams.hpp>
|
||||||
|
|
||||||
#include <opm/models/blackoil/blackoilprimaryvariables.hh>
|
#include <opm/models/blackoil/blackoilprimaryvariables.hh>
|
||||||
|
Loading…
Reference in New Issue
Block a user