Merge pull request #4703 from bska/fix-udq-assign-well-level

Chase Upstream API Update
This commit is contained in:
Bård Skaflestad 2023-06-14 12:01:24 +02:00 committed by GitHub
commit 31be62251e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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);