diff --git a/src/finiteVolume/fields/fvPatchFields/constraint/cyclic/cyclicFvPatchField.C b/src/finiteVolume/fields/fvPatchFields/constraint/cyclic/cyclicFvPatchField.C index 5b608b0fd9d283f4529f9915ca20178823a6acff..0010ab4a0a0b40b4f2611c509954d9a9ed32f610 100644 --- a/src/finiteVolume/fields/fvPatchFields/constraint/cyclic/cyclicFvPatchField.C +++ b/src/finiteVolume/fields/fvPatchFields/constraint/cyclic/cyclicFvPatchField.C @@ -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 diff --git a/src/finiteVolume/fields/fvPatchFields/constraint/cyclic/cyclicFvPatchField.H b/src/finiteVolume/fields/fvPatchFields/constraint/cyclic/cyclicFvPatchField.H index 6efcc50b2caab87e608f6f973e76b9b4cdbd104d..654bd0831a560a95b6b1e86d0d5f9c8ad53e99e6 100644 --- a/src/finiteVolume/fields/fvPatchFields/constraint/cyclic/cyclicFvPatchField.H +++ b/src/finiteVolume/fields/fvPatchFields/constraint/cyclic/cyclicFvPatchField.H @@ -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; };