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

@ -146,7 +146,7 @@ bool Foam::functionObjects::mapFields::mapFieldType() const
mappedField = interpPtr_->mapTgtToSrc(field); mappedField = interpPtr_->mapTgtToSrc(field);
Log << " " << fieldName << ": interpolated"; Log << " " << fieldName << ": interpolated\n";
evaluateConstraintTypes(mappedField); evaluateConstraintTypes(mappedField);
} }
@ -173,7 +173,7 @@ bool Foam::functionObjects::mapFields::writeFieldType() const
mappedField.write(); mappedField.write();
Log << " " << fieldName << ": written"; Log << " " << fieldName << ": written\n";
} }
return processed; return processed;

View File

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

View File

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