mirror of
https://github.com/OPM/ResInsight.git
synced 2025-02-25 18:55:39 -06:00
#8558 Fix reading of simulation dates for restart case
The date import was wrong for some restart cases.
This commit is contained in:
parent
c48451a532
commit
ee888237f3
@ -200,7 +200,8 @@ void RifEclipseOutputFileTools::timeSteps( const ecl_file_type* ecl_file,
|
||||
// Some simulations might end up with wrong data reported for day/month/year. If this situation is detected,
|
||||
// base all time step on double values and use start of simulation as first date
|
||||
// See https://github.com/OPM/ResInsight/issues/4850
|
||||
if ( uniqueDays.size() == dayValues.size() ) useStartOfSimulationDate = false;
|
||||
// https://github.com/OPM/ResInsight/issues/8558
|
||||
if ( uniqueDays.size() == uniqueDayValues.size() ) useStartOfSimulationDate = false;
|
||||
}
|
||||
|
||||
std::set<QDateTime> existingTimesteps;
|
||||
|
Loading…
Reference in New Issue
Block a user