Skip to content
Snippets Groups Projects
Commit 67265d2c authored by Mark Olesen's avatar Mark Olesen Committed by Mark OLESEN
Browse files

BUG: missing space in ensight (surface format) case file (closes #637)

- now also fixed collated output format
parent 0bb53ab6
No related merge requests found
......@@ -284,9 +284,13 @@ Foam::fileName Foam::ensightSurfaceWriter::writeCollated
);
osCase
<< fieldType << " per "
<< word(isNodeValues ? "node:" : "element:")
<< setw(3) << 1
<< fieldType
<<
(
isNodeValues
? " per node: 1 " // time-set 1
: " per element: 1 " // time-set 1
)
<< setw(15) << varName
<< " data/******/" << varName
<< nl;
......
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