mirror of
https://github.com/OPM/opm-simulators.git
synced 2025-02-14 08:13:27 -06:00
Merge pull request #4402 from bska/follow-udq-context-api-change
Chase API Change for UDQ Evaluation
This commit is contained in:
commit
3c7a4635ea
@ -652,6 +652,7 @@ evalSummary(const int reportStepNum,
|
||||
.eval(udq_step,
|
||||
this->schedule_,
|
||||
this->schedule_.wellMatcher(udq_step),
|
||||
this->schedule_.segmentMatcherFactory(udq_step),
|
||||
summaryState,
|
||||
udqState);
|
||||
}
|
||||
|
@ -254,8 +254,13 @@ void EclActionHandler::evalUDQAssignments(const unsigned episodeIdx,
|
||||
UDQState& udq_state)
|
||||
{
|
||||
const auto& udq = schedule_[episodeIdx].udq();
|
||||
const auto& well_matcher = schedule_.wellMatcher(episodeIdx);
|
||||
udq.eval_assign(episodeIdx, schedule_, well_matcher, summaryState_, udq_state);
|
||||
|
||||
udq.eval_assign(episodeIdx,
|
||||
this->schedule_,
|
||||
this->schedule_.wellMatcher(episodeIdx),
|
||||
this->schedule_.segmentMatcherFactory(episodeIdx),
|
||||
this->summaryState_,
|
||||
udq_state);
|
||||
}
|
||||
|
||||
} // namespace Opm
|
||||
|
Loading…
Reference in New Issue
Block a user