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

Fix *GGLIT summary vector #11130

Merged
merged 2 commits into from
Jan 29, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -326,6 +326,7 @@ std::unordered_map<std::string, RiuSummaryQuantityNameInfoProvider::RiuSummaryQu
info.insert( { "FGIMR", { A::SUMMARY_FIELD, "Gas Import Rate, at and below this group" } } );
info.insert( { "FGIMT", { A::SUMMARY_FIELD, "Gas Import Total, at and below this group" } } );
info.insert( { "FGLIR", { A::SUMMARY_FIELD, "Gas Lift Injection Rate" } } );
info.insert( { "FGLIT", { A::SUMMARY_FIELD, "Gas Lift Injection Total" } } );
info.insert( { "FWGPR", { A::SUMMARY_FIELD, "Wet Gas Production Rate" } } );
info.insert( { "FWGPT", { A::SUMMARY_FIELD, "Wet Gas Production Total" } } );
info.insert( { "FWGPRH", { A::SUMMARY_FIELD, "Wet Gas Production Rate History" } } );
Expand Down Expand Up @@ -796,6 +797,7 @@ std::unordered_map<std::string, RiuSummaryQuantityNameInfoProvider::RiuSummaryQu
info.insert( { "GGIMR", { A::SUMMARY_GROUP, "Gas Import Rate, at and below this group" } } );
info.insert( { "GGIMT", { A::SUMMARY_GROUP, "Gas Import Total, at and below this group" } } );
info.insert( { "GGLIR", { A::SUMMARY_GROUP, "Gas Lift Injection Rate" } } );
info.insert( { "GGLIT", { A::SUMMARY_GROUP, "Gas Lift Injection Total" } } );
info.insert( { "GWGPR", { A::SUMMARY_GROUP, "Wet Gas Production Rate" } } );
info.insert( { "GWGPT", { A::SUMMARY_GROUP, "Wet Gas Production Total" } } );
info.insert( { "GWGPRH", { A::SUMMARY_GROUP, "Wet Gas Production Rate History" } } );
Expand Down Expand Up @@ -1216,6 +1218,7 @@ std::unordered_map<std::string, RiuSummaryQuantityNameInfoProvider::RiuSummaryQu
info.insert( { "WGPGR", { A::SUMMARY_WELL, "Gas Production Guide Rate" } } );
info.insert( { "WGIGR", { A::SUMMARY_WELL, "Gas Injection Guide Rate" } } );
info.insert( { "WGLIR", { A::SUMMARY_WELL, "Gas Lift Injection Rate" } } );
info.insert( { "WGLIT", { A::SUMMARY_WELL, "Gas Lift Injection Total" } } );
info.insert( { "WWGPR", { A::SUMMARY_WELL, "Wet Gas Production Rate" } } );
info.insert( { "WWGPT", { A::SUMMARY_WELL, "Wet Gas Production Total" } } );
info.insert( { "WWGPRH", { A::SUMMARY_WELL, "Wet Gas Production Rate History" } } );
Expand Down
2 changes: 1 addition & 1 deletion ResInsightVersion.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ set(RESINSIGHT_VERSION_TEXT "-dev")
# Must be unique and increasing within one combination of major/minor/patch version
# The uniqueness of this text is independent of RESINSIGHT_VERSION_TEXT
# Format of text must be ".xx"
set(RESINSIGHT_DEV_VERSION ".13")
set(RESINSIGHT_DEV_VERSION ".14")

# https://github.com/CRAVA/crava/tree/master/libs/nrlib
set(NRLIB_GITHUB_SHA "ba35d4359882f1c6f5e9dc30eb95fe52af50fd6f")
Expand Down
Loading