mirror of
https://github.com/OpenFOAM/OpenFOAM-6.git
synced 2025-12-08 06:57:46 +00:00
226 lines
6.5 KiB
C++
226 lines
6.5 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::SlicedGeometricField
|
|
|
|
Description
|
|
Specialization of GeometricField which holds slices of given complete
|
|
fields in a form that they act as a GeometricField.
|
|
|
|
The destructor is wrapped to avoid deallocation of the storage of the
|
|
complete fields when this is destroyed.
|
|
|
|
SlicedGeometricField can only be instantiated with a valid form of
|
|
SlicedPatchField to handle the slicing and storage deallocation of the
|
|
boundary field.
|
|
|
|
SourceFiles
|
|
SlicedGeometricField.C
|
|
|
|
\*---------------------------------------------------------------------------*/
|
|
|
|
#ifndef SlicedGeometricField_H
|
|
#define SlicedGeometricField_H
|
|
|
|
#include "GeometricField.H"
|
|
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
namespace Foam
|
|
{
|
|
|
|
/*---------------------------------------------------------------------------*\
|
|
Class SlicedGeometricField Declaration
|
|
\*---------------------------------------------------------------------------*/
|
|
|
|
template
|
|
<
|
|
class Type,
|
|
template<class> class PatchField,
|
|
template<class> class SlicedPatchField,
|
|
class GeoMesh
|
|
>
|
|
class SlicedGeometricField
|
|
:
|
|
public GeometricField<Type, PatchField, GeoMesh>
|
|
{
|
|
public:
|
|
|
|
typedef typename GeoMesh::Mesh Mesh;
|
|
typedef typename GeoMesh::BoundaryMesh BoundaryMesh;
|
|
|
|
class DimensionedInternalField;
|
|
|
|
|
|
private:
|
|
|
|
// Private Member Functions
|
|
|
|
//- Slice the given field and a create a PtrList of SlicedPatchField
|
|
// from which the boundary field is built
|
|
tmp<FieldField<PatchField, Type>> slicedBoundaryField
|
|
(
|
|
const Mesh& mesh,
|
|
const Field<Type>& completeField,
|
|
const bool preserveCouples,
|
|
const bool preserveProcessorOnly = false
|
|
);
|
|
|
|
//- Slice the given field and a create a PtrList of SlicedPatchField
|
|
// from which the boundary field is built
|
|
tmp<FieldField<PatchField, Type>> slicedBoundaryField
|
|
(
|
|
const Mesh& mesh,
|
|
const FieldField<PatchField, Type>& bField,
|
|
const bool preserveCouples
|
|
);
|
|
|
|
////- Disallow default bitwise copy construct
|
|
//SlicedGeometricField(const SlicedGeometricField&);
|
|
|
|
//- Disallow default bitwise assignment
|
|
void operator=(const SlicedGeometricField&);
|
|
|
|
//- Disallow standard assignment to GeometricField,
|
|
// == assignment is allowed.
|
|
void operator=(const GeometricField<Type, PatchField, GeoMesh>&);
|
|
|
|
//- Disallow standard assignment to tmp<GeometricField>,
|
|
// == assignment is allowed.
|
|
void operator=(const tmp<GeometricField<Type, PatchField, GeoMesh>>&);
|
|
|
|
|
|
public:
|
|
|
|
// Constructors
|
|
|
|
//- Construct from components and field to slice
|
|
SlicedGeometricField
|
|
(
|
|
const IOobject&,
|
|
const Mesh&,
|
|
const dimensionSet&,
|
|
const Field<Type>& completeField,
|
|
const bool preserveCouples=true
|
|
);
|
|
|
|
//- Construct from components and separate fields to slice for the
|
|
// internal field and boundary field
|
|
SlicedGeometricField
|
|
(
|
|
const IOobject&,
|
|
const Mesh&,
|
|
const dimensionSet&,
|
|
const Field<Type>& completeIField,
|
|
const Field<Type>& completeBField,
|
|
const bool preserveCouples=true,
|
|
const bool preserveProcessorOnly = false
|
|
);
|
|
|
|
//- Construct from GeometricField. Reuses full internal and
|
|
// patch fields except on couples (preserveCouples=true).
|
|
SlicedGeometricField
|
|
(
|
|
const IOobject&,
|
|
const GeometricField<Type, PatchField, GeoMesh>&,
|
|
const bool preserveCouples=true
|
|
);
|
|
|
|
//- Construct as copy
|
|
SlicedGeometricField
|
|
(
|
|
const SlicedGeometricField
|
|
<
|
|
Type,
|
|
PatchField,
|
|
SlicedPatchField,
|
|
GeoMesh
|
|
>&
|
|
);
|
|
|
|
|
|
//- Destructor
|
|
~SlicedGeometricField();
|
|
|
|
|
|
// Member functions
|
|
|
|
//- Correct boundary field
|
|
void correctBoundaryConditions();
|
|
};
|
|
|
|
|
|
/*---------------------------------------------------------------------------*\
|
|
Class SlicedGeometricField::DimensionedInternalField Declaration
|
|
\*---------------------------------------------------------------------------*/
|
|
|
|
//- The internalField of a SlicedGeometricField
|
|
template
|
|
<
|
|
class Type,
|
|
template<class> class PatchField,
|
|
template<class> class SlicedPatchField,
|
|
class GeoMesh
|
|
>
|
|
class SlicedGeometricField<Type, PatchField, SlicedPatchField, GeoMesh>::
|
|
DimensionedInternalField
|
|
:
|
|
public GeometricField<Type, PatchField, GeoMesh>::DimensionedInternalField
|
|
{
|
|
|
|
public:
|
|
|
|
// Constructors
|
|
|
|
//- Construct from components and field to slice
|
|
DimensionedInternalField
|
|
(
|
|
const IOobject&,
|
|
const Mesh&,
|
|
const dimensionSet&,
|
|
const Field<Type>& iField
|
|
);
|
|
|
|
|
|
//- Destructor
|
|
~DimensionedInternalField();
|
|
};
|
|
|
|
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
} // End namespace Foam
|
|
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
#ifdef NoRepository
|
|
#include "SlicedGeometricField.C"
|
|
#endif
|
|
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
#endif
|
|
|
|
// ************************************************************************* //
|