Skip to content
Snippets Groups Projects
Commit d01f653d authored by Mark Olesen's avatar Mark Olesen
Browse files

porousZone - output 'note' entry (if it exists) too

parent f1fbc246
Branches
Tags
No related merge requests found
......@@ -370,6 +370,12 @@ void Foam::porousZone::writeDict(Ostream& os, bool subDict) const
<< 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);
if (dict_.found("porosity"))
......
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