mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
ENH: overset: add value field. Fixes #1334.
This commit is contained in:
@ -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 direction cmpt,
|
||||||
// const Pstream::commsTypes commsType
|
// const Pstream::commsTypes commsType
|
||||||
// ) const;
|
// ) const;
|
||||||
|
|
||||||
|
|
||||||
|
// I-O
|
||||||
|
|
||||||
|
//- Write
|
||||||
|
virtual void write(Ostream& os) const;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user