SlicedDimensionedField.H
Go to the documentation of this file.
1 /*---------------------------------------------------------------------------*\
2  ========= |
3  \\ / F ield | OpenFOAM: The Open Source CFD Toolbox
4  \\ / O peration | Website: https://openfoam.org
5  \\ / A nd | Copyright (C) 2011-2026 OpenFOAM Foundation
6  \\/ M anipulation |
7 -------------------------------------------------------------------------------
8 License
9  This file is part of OpenFOAM.
10 
11  OpenFOAM is free software: you can redistribute it and/or modify it
12  under the terms of the GNU General Public License as published by
13  the Free Software Foundation, either version 3 of the License, or
14  (at your option) any later version.
15 
16  OpenFOAM is distributed in the hope that it will be useful, but WITHOUT
17  ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
18  FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
19  for more details.
20 
21  You should have received a copy of the GNU General Public License
22  along with OpenFOAM. If not, see <http://www.gnu.org/licenses/>.
23 
24 Class
25  Foam::SlicedDimensionedField
26 
27 Description
28  Specialisation of DimensionedField which holds a slice of a given complete
29  field in such a form that it acts as a DimensionedField.
30 
31  The destructor is wrapped to avoid deallocation of the storage of the
32  complete fields when this is destroyed.
33 
34 SourceFiles
35  SlicedDimensionedField.C
36 
37 \*---------------------------------------------------------------------------*/
38 
39 #ifndef SlicedDimensionedField_H
40 #define SlicedDimensionedField_H
41 
42 #include "DimensionedField.H"
43 
44 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
45 
46 namespace Foam
47 {
48 
49 /*---------------------------------------------------------------------------*\
50  Class SlicedDimensionedField Declaration
51 \*---------------------------------------------------------------------------*/
52 
53 template<class Type, class GeoMesh>
55 :
56  public DimensionedField<Type, GeoMesh>
57 {
58 
59 public:
60 
61  // Public Typedefs
62 
63  //- Base mesh type from which GeoMesh is constructed
64  typedef typename GeoMesh::Mesh Mesh;
65 
66 
67  // Constructors
68 
69  //- Construct from components and field to slice
71  (
72  const IOobject&,
73  const GeoMesh&,
74  const dimensionSet&,
75  const Field<Type>& iField
76  );
77 
78 
79  //- Destructor
81 
82 
83  // Member Functions
84 
85  //- Override the DimensionedField::transfer with assignment
86  virtual void transfer(Field<Type>&);
87 
88  //- Reset internalField pointer
89  void reset(const Field<Type>& iField);
90 };
91 
92 
93 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
94 
95 } // End namespace Foam
96 
97 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
98 
99 #ifdef NoRepository
100  #include "SlicedDimensionedField.C"
101 #endif
102 
103 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
104 
105 #endif
106 
107 // ************************************************************************* //
Field with dimensions and associated with geometry type GeoMesh which is used to size the field and a...
Pre-declare SubField and related Field type.
Definition: Field.H:83
IOobject defines the attributes of an object for which implicit objectRegistry management is supporte...
Definition: IOobject.H:99
Specialisation of DimensionedField which holds a slice of a given complete field in such a form that ...
void reset(const Field< Type > &iField)
Reset internalField pointer.
GeoMesh::Mesh Mesh
Base mesh type from which GeoMesh is constructed.
SlicedDimensionedField(const IOobject &, const GeoMesh &, const dimensionSet &, const Field< Type > &iField)
Construct from components and field to slice.
virtual void transfer(Field< Type > &)
Override the DimensionedField::transfer with assignment.
Dimension set for the base types.
Definition: dimensionSet.H:125
Namespace for OpenFOAM.