/*---------------------------------------------------------------------------*\ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / O peration | \\ / A nd | www.openfoam.com \\/ M anipulation | ------------------------------------------------------------------------------- Copyright (C) 2011 OpenFOAM Foundation Copyright (C) 2023 OpenCFD Ltd. ------------------------------------------------------------------------------- License This file is part of OpenFOAM. OpenFOAM is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. OpenFOAM is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with OpenFOAM. If not, see . Class Foam::slicedFaePatchField Description Specialization of faePatchField which creates the underlying faePatchField as a slice of the given complete field. The destructor is wrapped to avoid deallocation of the storage of the complete fields when this is destroyed. Should only used as a template argument for SlicedGeometricField. SourceFiles slicedFaePatchField.C \*---------------------------------------------------------------------------*/ #ifndef Foam_slicedFaePatchField_H #define Foam_slicedFaePatchField_H #include "faePatchField.H" #include "processorFaPatch.H" // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // namespace Foam { /*---------------------------------------------------------------------------*\ Class slicedFaePatchField Declaration \*---------------------------------------------------------------------------*/ template class slicedFaePatchField : public faePatchField { public: //- Type for the mesh processor patch typedef processorFaPatch processorPatchType; //- Runtime type information TypeName("sliced"); // Constructors //- Construct from patch, internal field and field to slice slicedFaePatchField ( const faPatch&, const DimensionedField&, const Field& completeOrBoundaryField, const bool isBoundaryOnly = false ); //- Construct from patch and internal field slicedFaePatchField ( const faPatch&, const DimensionedField& ); //- Construct from patch, internal field and dictionary slicedFaePatchField ( const faPatch&, const DimensionedField&, const dictionary& ); //- Construct by mapping the given sliced patch field onto a new patch slicedFaePatchField ( const slicedFaePatchField&, const faPatch&, const DimensionedField&, const faPatchFieldMapper& ); //- Construct as copy slicedFaePatchField(const slicedFaePatchField&); //- Construct as copy setting internal field reference slicedFaePatchField ( const slicedFaePatchField&, const DimensionedField& ); //- Return clone virtual tmp> clone() const { return faePatchField::Clone(*this); } //- Clone with an internal field reference virtual tmp> clone ( const DimensionedField& iF ) const { return faePatchField::Clone(*this, iF); } //- Destructor, resets pointers to avoid deletion of underlying field virtual ~slicedFaePatchField(); // Member Functions //- True: this patch field fixes a value. virtual bool fixesValue() const { return true; } //- Write includes "value" entry virtual void write(Ostream&) const; // Member Operators virtual void operator=(const UList&) {} virtual void operator=(const faePatchField&) {} virtual void operator+=(const faePatchField&) {} virtual void operator-=(const faePatchField&) {} virtual void operator*=(const faePatchField&) {} virtual void operator/=(const faePatchField&) {} virtual void operator+=(const Field&) {} virtual void operator-=(const Field&) {} virtual void operator*=(const Field&) {} virtual void operator/=(const Field&) {} virtual void operator=(const Type&) {} virtual void operator+=(const Type&) {} virtual void operator-=(const Type&) {} virtual void operator*=(const scalar) {} virtual void operator/=(const scalar) {} }; // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // } // End namespace Foam // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // #ifdef NoRepository #include "slicedFaePatchField.C" #endif // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // #endif // ************************************************************************* //