Skip to content

Commit

Permalink
Add COMPSEGS, WELSEGS and WSEGVALV to ACTIONX
Browse files Browse the repository at this point in the history
  • Loading branch information
OPMUSER committed Dec 8, 2021
1 parent 23de8a6 commit cc28d81
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/opm/parser/eclipse/EclipseState/Schedule/Action/ActionX.cpp
100644 → 100755
Original file line number Diff line number Diff line change
Expand Up @@ -61,12 +61,12 @@ std::string dequote(const std::string& token, const std::optional<KeywordLocatio
bool ActionX::valid_keyword(const std::string& keyword) {
static std::unordered_set<std::string> actionx_allowed_list = {
"BOX",
"COMPLUMP", "COMPDAT",
"COMPLUMP", "COMPDAT", "COMPSEGS",
"ENDBOX", "EXIT",
"GCONINJE", "GCONPROD", "GCONSUMP", "GLIFTOPT", "GRUPNET", "GRUPTARG", "GRUPTREE", "GSATINJE", "GSATPROD",
"MULTX", "MULTX-", "MULTY", "MULTY-", "MULTZ", "MULTZ-",
"UDQ",
"WCONINJE", "WCONPROD", "WECON", "WEFAC", "WELSPECS","WELOPEN", "WELPI", "WGRUPCON", "WPIMULT", "WTEST", "TEST"
"WCONINJE", "WCONPROD", "WECON", "WEFAC", "WELOPEN", "WELPI", "WGRUPCON", "WPIMULT", "WELSEGS", "WELSPECS", "WSEGVALV", "WTEST", "TEST"
};
return (actionx_allowed_list.find(keyword) != actionx_allowed_list.end());
}
Expand Down

0 comments on commit cc28d81

Please sign in to comment.