mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
206 lines
5.8 KiB
C++
206 lines
5.8 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::FieldField
|
|
|
|
Description
|
|
Generic field type.
|
|
|
|
SourceFiles
|
|
FieldField.C
|
|
|
|
\*---------------------------------------------------------------------------*/
|
|
|
|
#ifndef FieldField_H
|
|
#define FieldField_H
|
|
|
|
#include "tmp.H"
|
|
#include "PtrList.H"
|
|
#include "scalar.H"
|
|
#include "direction.H"
|
|
#include "VectorSpace.H"
|
|
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
namespace Foam
|
|
{
|
|
|
|
// Forward declarations
|
|
|
|
template<template<class> class Field, class Type>
|
|
class FieldField;
|
|
|
|
template<template<class> class Field, class Type>
|
|
Ostream& operator<<
|
|
(
|
|
Ostream&,
|
|
const FieldField<Field, Type>&
|
|
);
|
|
|
|
template<template<class> class Field, class Type>
|
|
Ostream& operator<<
|
|
(
|
|
Ostream&,
|
|
const tmp<FieldField<Field, Type>>&
|
|
);
|
|
|
|
|
|
/*---------------------------------------------------------------------------*\
|
|
Class FieldField Declaration
|
|
\*---------------------------------------------------------------------------*/
|
|
|
|
template<template<class> class Field, class Type>
|
|
class FieldField
|
|
:
|
|
public refCount,
|
|
public PtrList<Field<Type>>
|
|
{
|
|
|
|
public:
|
|
|
|
//- Component type
|
|
typedef typename pTraits<Type>::cmptType cmptType;
|
|
|
|
|
|
// Constructors
|
|
|
|
//- Construct null
|
|
// Used for temporary fields which are initialised after construction
|
|
constexpr FieldField() noexcept;
|
|
|
|
//- Construct given size
|
|
// Used for temporary fields which are initialised after construction
|
|
explicit FieldField(const label);
|
|
|
|
//- Construct using the Field sizes from the given FieldField
|
|
// and the given Field type.
|
|
// Used for temporary fields which are initialised after construction
|
|
FieldField(const word&, const FieldField<Field, Type>&);
|
|
|
|
//- Construct as copy
|
|
FieldField(const FieldField<Field, Type>&);
|
|
|
|
//- Construct as copy or re-use as specified.
|
|
FieldField(FieldField<Field, Type>&, bool reuse);
|
|
|
|
//- Construct as copy of a PtrList<Field, Type>
|
|
FieldField(const PtrList<Field<Type>>&);
|
|
|
|
//- Construct as copy of tmp<FieldField>
|
|
#ifndef NoConstructFromTmp
|
|
FieldField(const tmp<FieldField<Field, Type>>&);
|
|
#endif
|
|
|
|
//- Construct from Istream
|
|
FieldField(Istream&);
|
|
|
|
//- Clone
|
|
tmp<FieldField<Field, Type>> clone() const;
|
|
|
|
//- Return a pointer to a new calculatedFvPatchFieldField created on
|
|
// freestore without setting patchField values
|
|
template<class Type2>
|
|
static tmp<FieldField<Field, Type>> NewCalculatedType
|
|
(
|
|
const FieldField<Field, Type2>& ff
|
|
);
|
|
|
|
|
|
// Member functions
|
|
|
|
//- Negate this field
|
|
void negate();
|
|
|
|
//- Return a component field of the field
|
|
tmp<FieldField<Field, cmptType>> component(const direction) const;
|
|
|
|
//- Replace a component field of the field
|
|
void replace(const direction, const FieldField<Field, cmptType>&);
|
|
|
|
//- Replace a component field of the field
|
|
void replace(const direction, const cmptType&);
|
|
|
|
//- Return the field transpose (only defined for second rank tensors)
|
|
tmp<FieldField<Field, Type>> T() const;
|
|
|
|
|
|
// Member operators
|
|
|
|
void operator=(const FieldField<Field, Type>&);
|
|
void operator=(const tmp<FieldField<Field, Type>>&);
|
|
void operator=(const Type&);
|
|
|
|
void operator+=(const FieldField<Field, Type>&);
|
|
void operator+=(const tmp<FieldField<Field, Type>>&);
|
|
|
|
void operator-=(const FieldField<Field, Type>&);
|
|
void operator-=(const tmp<FieldField<Field, Type>>&);
|
|
|
|
void operator*=(const FieldField<Field, scalar>&);
|
|
void operator*=(const tmp<FieldField<Field, scalar>>&);
|
|
|
|
void operator/=(const FieldField<Field, scalar>&);
|
|
void operator/=(const tmp<FieldField<Field, scalar>>&);
|
|
|
|
void operator+=(const Type&);
|
|
void operator-=(const Type&);
|
|
|
|
void operator*=(const scalar&);
|
|
void operator/=(const scalar&);
|
|
|
|
|
|
// IOstream operators
|
|
|
|
friend Ostream& operator<< <Field, Type>
|
|
(
|
|
Ostream&,
|
|
const FieldField<Field, Type>&
|
|
);
|
|
|
|
friend Ostream& operator<< <Field, Type>
|
|
(
|
|
Ostream&,
|
|
const tmp<FieldField<Field, Type>>&
|
|
);
|
|
};
|
|
|
|
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
} // End namespace Foam
|
|
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
#include "FieldFieldFunctions.H"
|
|
|
|
#ifdef NoRepository
|
|
#include "FieldField.C"
|
|
#endif
|
|
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
#endif
|
|
|
|
// ************************************************************************* //
|