/*---------------------------------------------------------------------------*\
========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration |
\\ / A nd | Copyright (C) 2011-2018 OpenFOAM Foundation
\\/ M anipulation |
-------------------------------------------------------------------------------
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::valuePointPatchField
Description
Foam::valuePointPatchField
SourceFiles
valuePointPatchField.C
\*---------------------------------------------------------------------------*/
#ifndef valuePointPatchField_H
#define valuePointPatchField_H
#include "pointPatchField.H"
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
namespace Foam
{
/*---------------------------------------------------------------------------*\
Class valuePointPatchField Declaration
\*---------------------------------------------------------------------------*/
template
class valuePointPatchField
:
public pointPatchField,
public Field
{
// Private Member Functions
void checkFieldSize() const;
public:
//- Runtime type information
TypeName("value");
// Constructors
//- Construct from patch and internal field
valuePointPatchField
(
const pointPatch&,
const DimensionedField&
);
//- Construct from patch, internal field and dictionary
valuePointPatchField
(
const pointPatch&,
const DimensionedField&,
const dictionary&,
const bool valueRequired=true
);
//- Construct by mapping given patchField onto a new patch
valuePointPatchField
(
const valuePointPatchField&,
const pointPatch&,
const DimensionedField&,
const pointPatchFieldMapper&
);
//- Construct and return a clone
virtual autoPtr> clone() const
{
return autoPtr>
(
new valuePointPatchField
(
*this
)
);
}
//- Construct as copy setting internal field reference
valuePointPatchField
(
const valuePointPatchField&,
const DimensionedField&
);
//- Construct and return a clone setting internal field reference
virtual autoPtr> clone
(
const DimensionedField& iF
) const
{
return autoPtr>
(
new valuePointPatchField
(
*this,
iF
)
);
}
// Member functions
// Access
//- Return size
label size() const
{
return Field::size();
}
// Mapping functions
//- Map (and resize as needed) from self given a mapping object
virtual void autoMap
(
const pointPatchFieldMapper&
);
//- Reverse map the given PointPatchField onto
// this PointPatchField
virtual void rmap
(
const pointPatchField&,
const labelList&
);
// Evaluation functions
//- Update the coefficients associated with the patch field
virtual void updateCoeffs();
//- Evaluate the patch field
virtual void evaluate
(
const Pstream::commsTypes commsType =
Pstream::commsTypes::blocking
);
//- Write
virtual void write(Ostream&) const;
// Member operators
// Assignment operators
virtual void operator=
(
const valuePointPatchField&
);
virtual void operator=
(
const pointPatchField&
);
virtual void operator=(const Field&);
virtual void operator=(const Type&);
// Force an assignment irrespective of form of patch
virtual void operator==
(
const valuePointPatchField&
);
virtual void operator==
(
const pointPatchField&
);
virtual void operator==(const Field&);
virtual void operator==(const Type&);
};
// This function is added to override the hack in pointPatchField.H
// which enables simple backward compatibility with versions using
// referenceLevel in GeometicField
template
tmp> operator+
(
const valuePointPatchField& vsppf,
const Type& t
)
{
return static_cast&>(vsppf) + t;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
} // End namespace Foam
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
#ifdef NoRepository
#include "valuePointPatchField.C"
#endif
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
#endif
// ************************************************************************* //