ENH: Don't write cyclic value entry - evaluate called on construction

This commit is contained in:
andy
2010-10-11 10:10:24 +01:00
parent ee046de0e1
commit 2798ae3331
2 changed files with 14 additions and 1 deletions

View File

@ -205,6 +205,13 @@ void cyclicFvPatchField<Type>::updateInterfaceMatrix
}
template<class Type>
void cyclicFvPatchField<Type>::write(Ostream& os) const
{
fvPatchField<Type>::write(os);
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
} // End namespace Foam

View File

@ -165,7 +165,7 @@ public:
) const;
//- Cyclic coupled interface functions
// Cyclic coupled interface functions
//- Does the patch field perform the transfromation
virtual bool doTransform() const
@ -190,6 +190,12 @@ public:
{
return pTraits<Type>::rank;
}
// I-O
//- Write
virtual void write(Ostream& os) const;
};