STYLE: mapFields, ensightWrite: print operand fields in rows

This commit is contained in:
Kutalmis Bercin
2024-09-16 16:56:18 +01:00
parent a9cc444b79
commit d6b8b49da8
3 changed files with 5 additions and 5 deletions

View File

@ -269,10 +269,10 @@ bool Foam::functionObjects::ensightWrite::write()
true // prune
);
Log << type() << " " << name() << " write: (";
Log << type() << " " << name() << " write:\n";
writeAllVolFields(meshSubset_, candidateNames);
Log << " )" << nl;
Log << nl;
ensCase().write(); // Flush case information

View File

@ -65,7 +65,7 @@ Foam::label Foam::functionObjects::ensightWrite::writeVolFieldsImpl
caseOpts_.nodeValues()
);
Log << ' ' << fieldName;
Log << " " << fieldName << "\n";
++count;
}