Include Time of Day in Report Step List#4830
Merged
Merged
Conversation
Member
Author
|
jenkins build this please |
4a6daf9 to
9e49e41
Compare
When the user passes the '-l' option, the convertECL utility
generates a list of restart steps in a unified restart file. At
present, this list has the following format:
Report step number: 0 Date: 1997/11/06
Report step number: 1 Date: 1997/11/14
[...]
Report step number: 239 Date: 2006/09/14
Report step number: 240 Date: 2006/10/01
Report step number: 241 Date: 2006/10/10
This commit extends the list to also include the time of day, which
is particularly useful if there are multiple restart steps in a
single day. We also switch to outputting month names instead of
month numbers similarly to how the rest of the OPM suite reports
dates. With these changes, the above list will be printed as
Report step number: 0 Date: 06-Nov-1997 00:00:00
Report step number: 1 Date: 14-Nov-1997 00:00:00
[...]
Report step number: 239 Date: 14-Sep-2006 00:00:00
Report step number: 240 Date: 01-Oct-2006 00:00:00
Report step number: 241 Date: 10-Oct-2006 00:00:00
instead.
9e49e41 to
af9f948
Compare
Member
Author
|
jenkins build this please |
Member
Author
|
PR approved and build check is green. I'll merge into master. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
When the user passes the
-loption, theconvertECLutility generates a list of restart steps in a unified restart file. At present, this list has the following format:This commit extends the list to also include the time of day, which is particularly useful if there are multiple restart steps in a single day. We also switch to outputting month names instead of month numbers similarly to how the rest of the OPM suite reports dates. With these changes, the above list will be printed as
instead.