OpenFOAM-4.x/src/OpenFOAM/fields/GeometricFields/geometricOneField/geometricOneField.H

142 lines
3.9 KiB
C++

/*---------------------------------------------------------------------------*\
========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration |
\\ / A nd | Copyright (C) 2011-2016 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 <http://www.gnu.org/licenses/>.
Class
Foam::geometricOneField
Description
A class representing the concept of a GeometricField of 1 used to avoid
unnecessary manipulations for objects which are known to be one at
compile-time.
Used for example as the density argument to a function written for
compressible to be used for incompressible flow.
\*---------------------------------------------------------------------------*/
#ifndef geometricOneField_H
#define geometricOneField_H
#include "oneFieldField.H"
#include "dimensionSet.H"
#include "scalar.H"
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
namespace Foam
{
/*---------------------------------------------------------------------------*\
Class geometricOneField Declaration
\*---------------------------------------------------------------------------*/
class geometricOneField
:
public one
{
public:
// Public typedefs
typedef oneField DimensionedInternalField;
typedef oneField InternalField;
typedef oneField PatchFieldType;
typedef oneFieldField GeometricBoundaryField;
typedef one cmptType;
// Constructors
//- Construct null
geometricOneField()
{}
// Member Operators
inline const dimensionSet& dimensions() const;
inline one operator[](const label) const;
inline oneField field() const;
inline oneField oldTime() const;
inline InternalField internalField() const;
inline DimensionedInternalField v() const;
inline GeometricBoundaryField boundaryField() const;
};
inline const geometricOneField& operator*
(
const geometricOneField&,
const geometricOneField&
);
inline const geometricOneField::DimensionedInternalField& operator*
(
const geometricOneField::DimensionedInternalField&,
const geometricOneField&
);
inline const geometricOneField::DimensionedInternalField& operator*
(
const geometricOneField&,
const geometricOneField::DimensionedInternalField&
);
inline const geometricOneField& operator/
(
const geometricOneField&,
const geometricOneField&
);
inline const geometricOneField::DimensionedInternalField& operator/
(
const geometricOneField::DimensionedInternalField&,
const geometricOneField&
);
inline const geometricOneField::DimensionedInternalField& operator/
(
const geometricOneField&,
const geometricOneField::DimensionedInternalField&
);
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
} // End namespace Foam
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
#include "geometricOneFieldI.H"
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
#endif
// ************************************************************************* //