Skip to content
Snippets Groups Projects
Commit f79f7942 authored by Mark OLESEN's avatar Mark OLESEN
Browse files

BUG: ensight writer using incorrect first mesh time (fixes #1273)

- used fallback of 0 instead of the results time.
  This discrepancy caused the case file to have two timesets that
  only differed by the first (incorrect) entry.
parent 8ab09daa
No related merge requests found
......@@ -193,7 +193,7 @@ Foam::fileName Foam::ensightSurfaceWriter::writeCollated
scalar timeValue = 0.0;
readScalar(timeDir, timeValue);
scalar meshValue = 0;
scalar meshValue = timeValue;
if (!isDir(baseDir))
{
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment