mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
foamToEnsight:
- add -noPatches option
- had incorrect part# when the internalMesh was not output
- case file is always ascii
foamToEnsightParts:
- fixed field selection bug,
no fields were selected when a single time-step was selected
17 lines
272 B
C
17 lines
272 B
C
{
|
|
IOobject io
|
|
(
|
|
"points",
|
|
runTime.timeName(),
|
|
polyMesh::meshSubDir,
|
|
mesh
|
|
);
|
|
|
|
if (io.headerOk())
|
|
{
|
|
// Read new points
|
|
io.readOpt() = IOobject::MUST_READ;
|
|
mesh.movePoints(pointIOField(io));
|
|
}
|
|
}
|