mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
porousZone - output 'note' entry (if it exists) too
This commit is contained in:
@ -370,6 +370,12 @@ void Foam::porousZone::writeDict(Ostream& os, bool subDict) const
|
|||||||
<< indent << token::BEGIN_BLOCK << incrIndent << nl;
|
<< indent << token::BEGIN_BLOCK << incrIndent << nl;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (dict_.found("note"))
|
||||||
|
{
|
||||||
|
os.writeKeyword("note") << string(dict_.lookup("note"))
|
||||||
|
<< token::END_STATEMENT << nl;
|
||||||
|
}
|
||||||
|
|
||||||
coordSys_.writeDict(os, true);
|
coordSys_.writeDict(os, true);
|
||||||
|
|
||||||
if (dict_.found("porosity"))
|
if (dict_.found("porosity"))
|
||||||
|
|||||||
Reference in New Issue
Block a user