/*---------------------------------------------------------------------------*\
========= |
\\ / 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::slicedFaPatchField
Group
grpGenericBoundaryConditions
Description
Specialization of faPatchField which creates the underlying
faPatchField 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.
See also
Foam::faPatchField
SourceFiles
slicedFaPatchField.C
\*---------------------------------------------------------------------------*/
#ifndef Foam_slicedFaPatchField_H
#define Foam_slicedFaPatchField_H
#include "faPatchField.H"
#include "processorFaPatch.H"
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
namespace Foam
{
/*---------------------------------------------------------------------------*\
Class slicedFaPatchField Declaration
\*---------------------------------------------------------------------------*/
template
class slicedFaPatchField
:
public faPatchField
{
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
slicedFaPatchField
(
const faPatch&,
const DimensionedField&,
const Field& completeOrBoundaryField,
const bool isBoundaryOnly = false
);
//- Construct from patch and internal field. Assign value later.
slicedFaPatchField
(
const faPatch&,
const DimensionedField&
);
//- Construct from patch, internal field and dictionary.
//- Not implemented
slicedFaPatchField
(
const faPatch&,
const DimensionedField&,
const dictionary&
);
//- Construct by mapping the given patch field onto a new patch.
//- Not implemented
slicedFaPatchField
(
const slicedFaPatchField&,
const faPatch&,
const DimensionedField&,
const faPatchFieldMapper&
);
//- Construct as copy
slicedFaPatchField(const slicedFaPatchField&);
//- Construct as copy setting internal field reference
slicedFaPatchField
(
const slicedFaPatchField&,
const DimensionedField&
);
//- Return clone
virtual tmp> clone() const
{
return faPatchField::Clone(*this);
}
//- Clone with an internal field reference
virtual tmp> clone
(
const DimensionedField& iF
) const
{
return faPatchField::Clone(*this, iF);
}
//- Destructor, resets pointers to avoid deletion of underlying field
virtual ~slicedFaPatchField();
// Member Functions
//- True: this patch field fixes a value.
virtual bool fixesValue() const { return true; }
//- False: this patch field is not altered by assignment.
virtual bool assignable() const { return false; }
// Evaluation Functions
//- Return patch-normal gradient
virtual tmp> snGrad() const;
//- Return internal field next to patch
virtual tmp> patchInternalField() const;
//- Retrieve internal field next to patch
virtual void patchInternalField(UList&) const;
//- Return patchField on the opposite patch of a coupled patch
virtual tmp> patchNeighbourField() const;
//- Retrieve neighbour coupled field
virtual void patchNeighbourField(UList&) const;
//- Initialise the evaluation of the patch field
virtual void initEvaluate
(
const Pstream::commsTypes commsType =
Pstream::commsTypes::buffered
)
{}
//- Evaluate the patch field, sets updated() to false
virtual void evaluate
(
const Pstream::commsTypes commsType =
Pstream::commsTypes::buffered
)
{}
//- Return the matrix diagonal coefficients corresponding to the
// evaluation of the value of this patchField with given weights
virtual tmp> valueInternalCoeffs
(
const tmp&
) const;
//- Return the matrix source coefficients corresponding to the
// evaluation of the value of this patchField with given weights
virtual tmp> valueBoundaryCoeffs
(
const tmp&
) const;
//- Return the matrix diagonal coefficients corresponding to the
// evaluation of the gradient of this patchField
virtual tmp> gradientInternalCoeffs() const;
//- Return the matrix source coefficients corresponding to the
// evaluation of the gradient of this patchField
virtual tmp> gradientBoundaryCoeffs() const;
//- Write
virtual void write(Ostream&) const;
// Member Operators
virtual void operator=(const UList&) {}
virtual void operator=(const faPatchField&) {}
virtual void operator+=(const faPatchField&) {}
virtual void operator-=(const faPatchField&) {}
virtual void operator*=(const faPatchField&) {}
virtual void operator/=(const faPatchField&) {}
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 "slicedFaPatchField.C"
#endif
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
#endif
// ************************************************************************* //