From be1de22974a847bc7351a2539fb16a63ca1016cd Mon Sep 17 00:00:00 2001 From: Joakim Hove Date: Tue, 16 Feb 2021 18:56:41 +0100 Subject: [PATCH] Node variables are stored with SummaryState::update_group_var --- src/opm/output/eclipse/Summary.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/opm/output/eclipse/Summary.cpp b/src/opm/output/eclipse/Summary.cpp index 1fbd2cad9..2d1c5e813 100644 --- a/src/opm/output/eclipse/Summary.cpp +++ b/src/opm/output/eclipse/Summary.cpp @@ -1891,6 +1891,9 @@ void updateValue(const Opm::EclIO::SummaryNode& node, const double value, Opm::S else if (node.category == Opm::EclIO::SummaryNode::Category::Group) st.update_group_var(node.wgname, node.keyword, value); + else if (node.category == Opm::EclIO::SummaryNode::Category::Node) + st.update_group_var(node.wgname, node.keyword, value); + else st.update(node.unique_key(), value); }