mirror of
https://github.com/OPM/opm-simulators.git
synced 2025-02-25 18:55:30 -06:00
Merge pull request #4677 from akva2/set_vappars
added: set vappars in fluidsystem/pvt at start of report step
This commit is contained in:
commit
091ccf77ce
@ -1038,6 +1038,15 @@ public:
|
|||||||
// Evaluate UDQ assign statements to make sure the settings are
|
// Evaluate UDQ assign statements to make sure the settings are
|
||||||
// available as UDA controls for the current report step.
|
// available as UDA controls for the current report step.
|
||||||
actionHandler_.evalUDQAssignments(episodeIdx, simulator.vanguard().udqState());
|
actionHandler_.evalUDQAssignments(episodeIdx, simulator.vanguard().udqState());
|
||||||
|
|
||||||
|
if (episodeIdx >= 0) {
|
||||||
|
const auto& oilVap = schedule[episodeIdx].oilvap();
|
||||||
|
if (oilVap.getType() == OilVaporizationProperties::OilVaporization::VAPPARS) {
|
||||||
|
FluidSystem::setVapPars(oilVap.vap1(), oilVap.vap2());
|
||||||
|
} else {
|
||||||
|
FluidSystem::setVapPars(0.0, 0.0);
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/*!
|
/*!
|
||||||
|
Loading…
Reference in New Issue
Block a user