Skip to content
Snippets Groups Projects
Commit a31d0c83 authored by mattijs's avatar mattijs Committed by Andrew Heather
Browse files

ENH: overset: add value field. Fixes #1334.

parent 1de2f305
Branches
Tags
No related merge requests found
......@@ -350,4 +350,13 @@ void Foam::oversetFvPatchField<Type>::initEvaluate
//}
template<class Type>
void Foam::oversetFvPatchField<Type>::write(Ostream& os) const
{
zeroGradientFvPatchField<Type>::write(os);
// Make sure to write the value for ease of postprocessing.
this->writeEntry("value", os);
}
// ************************************************************************* //
......@@ -165,6 +165,12 @@ public:
// const direction cmpt,
// const Pstream::commsTypes commsType
// ) const;
// I-O
//- Write
virtual void write(Ostream& os) const;
};
......
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