Log use of UDA for output purposes

This commit is contained in:
Joakim Hove
2019-06-19 13:40:27 +02:00
committed by Jostein Alvestad
parent 4d1b747b42
commit 1a62ceff7d
15 changed files with 1062 additions and 11 deletions

View File

@@ -35,6 +35,7 @@
#include <opm/parser/eclipse/EclipseState/Grid/EclipseGrid.hpp>
#include <opm/parser/eclipse/EclipseState/Schedule/Schedule.hpp>
#include <opm/parser/eclipse/EclipseState/Schedule/SummaryState.hpp>
#include <opm/parser/eclipse/EclipseState/Schedule/UDQ/UDQActive.hpp>
#include <opm/parser/eclipse/EclipseState/Schedule/ScheduleEnums.hpp>
#include <opm/parser/eclipse/EclipseState/Schedule/Well/Connection.hpp>
#include <opm/parser/eclipse/EclipseState/Schedule/Well/WellConnections.hpp>
@@ -545,7 +546,7 @@ namespace {
const auto& kwd = deck.getKeyword("WCONPROD");
const auto& record = kwd.getRecord(0);
Opm::WellProductionProperties pred("W");
pred.handleWCONPROD(record);
pred.handleWCONPROD("WELL", record);
return pred;
}