Chase Upstream API Update

The eval_assign() and eval() member functions of UDQConfig now take
a 'const Schedule&' parameter.
This commit is contained in:
Bård Skaflestad 2023-06-13 10:10:56 +02:00
parent ed591239a7
commit ea07e8429f
2 changed files with 2 additions and 1 deletions

View File

@ -256,7 +256,7 @@ void EclActionHandler::evalUDQAssignments(const unsigned episodeIdx,
{
const auto& udq = schedule_[episodeIdx].udq();
const auto& well_matcher = schedule_.wellMatcher(episodeIdx);
udq.eval_assign(episodeIdx, well_matcher, summaryState_, udq_state);
udq.eval_assign(episodeIdx, schedule_, well_matcher, summaryState_, udq_state);
}
} // namespace Opm

View File

@ -578,6 +578,7 @@ evalSummary(const int reportStepNum,
this->schedule_.getUDQConfig(udq_step)
.eval(udq_step,
this->schedule_,
this->schedule_.wellMatcher(udq_step),
summaryState,
udqState);