CompactIOField.H
Go to the documentation of this file.
1/*---------------------------------------------------------------------------*\
2 ========= |
3 \\ / F ield | OpenFOAM: The Open Source CFD Toolbox
4 \\ / O peration |
5 \\ / A nd | www.openfoam.com
6 \\/ M anipulation |
7-------------------------------------------------------------------------------
8 Copyright (C) 2011-2017 OpenFOAM Foundation
9 Copyright (C) 2020-2022 OpenCFD Ltd.
10-------------------------------------------------------------------------------
11License
12 This file is part of OpenFOAM.
13
14 OpenFOAM is free software: you can redistribute it and/or modify it
15 under the terms of the GNU General Public License as published by
16 the Free Software Foundation, either version 3 of the License, or
17 (at your option) any later version.
18
19 OpenFOAM is distributed in the hope that it will be useful, but WITHOUT
20 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
21 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
22 for more details.
23
24 You should have received a copy of the GNU General Public License
25 along with OpenFOAM. If not, see <http://www.gnu.org/licenses/>.
26
27Class
28 Foam::CompactIOField
29
30Description
31 A Field of objects of type <T> with automated input and output using
32 a compact storage. Behaves like IOField except when binary output in
33 case it writes a CompactListList.
34
35 Useful for fields of small subfields e.g. in lagrangian
36
37SourceFiles
38 CompactIOField.C
39
40\*---------------------------------------------------------------------------*/
41
42#ifndef Foam_CompactIOField_H
43#define Foam_CompactIOField_H
44
45#include "IOField.H"
46
47// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
48
49namespace Foam
50{
51
52// Forward Declarations
53template<class T, class BaseType> class CompactIOField;
55template<class T, class BaseType> Istream& operator>>
56(
57 Istream&,
59);
61template<class T, class BaseType> Ostream& operator<<
62(
63 Ostream&,
65);
66
67/*---------------------------------------------------------------------------*\
68 Class CompactIOField Declaration
69\*---------------------------------------------------------------------------*/
70
71template<class T, class BaseType>
73:
74 public regIOobject,
75 public Field<T>
76{
77 // Private Member Functions
78
79 //- Read according to header type
80 void readFromStream(const bool valid = true);
81
82public:
83
84 //- Runtime type information
85 TypeName("FieldField");
86
87
88 // Constructors
89
90 //- Default copy construct
91 CompactIOField(const CompactIOField&) = default;
92
93 //- Construct from IOobject
94 explicit CompactIOField(const IOobject& io);
95
96 //- Construct from IOobject, with local processor conditional reading
97 CompactIOField(const IOobject& io, const bool valid);
98
99 //- Construct from IOobject and zero size (if not read)
101
102 //- Construct from IOobject and size (if not read)
103 CompactIOField(const IOobject& io, const label len);
104
105 //- Construct from IOobject and a List/Field content
106 CompactIOField(const IOobject& io, const UList<T>& content);
107
108 //- Construct by transferring the Field contents
109 CompactIOField(const IOobject& io, Field<T>&& content);
110
111
112 //- Destructor
113 virtual ~CompactIOField() = default;
114
115
116 // Member Functions
117
118 //- Write using stream options
119 virtual bool writeObject
120 (
121 IOstreamOption streamOpt,
122 const bool valid
123 ) const;
124
125 virtual bool writeData(Ostream& os) const;
126
127
128 // Member Operators
129
130 //- Copy assignment of entries
131 void operator=(const CompactIOField<T, BaseType>& rhs);
132
133 //- Copy or move assignment of entries
134 using Field<T>::operator=;
135};
136
137
138// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
139
140} // End namespace Foam
141
142// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
143
144#ifdef NoRepository
145 #include "CompactIOField.C"
146#endif
147
148// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
149
150#endif
151
152// ************************************************************************* //
A Field of objects of type <T> with automated input and output using a compact storage....
virtual bool writeData(Ostream &os) const
Pure virtual writeData function.
virtual ~CompactIOField()=default
Destructor.
void operator=(const CompactIOField< T, BaseType > &rhs)
Copy assignment of entries.
TypeName("FieldField")
Runtime type information.
virtual bool writeObject(IOstreamOption streamOpt, const bool valid) const
Write using stream options.
CompactIOField(const CompactIOField &)=default
Default copy construct.
Generic templated field type.
Definition: Field.H:82
tmp< Field< T > > T() const
Return the field transpose (only defined for second rank tensors)
Definition: Field.C:605
friend Ostream & operator(Ostream &, const Field< T > &)
Defines the attributes of an object for which implicit objectRegistry management is supported,...
Definition: IOobject.H:170
The IOstreamOption is a simple container for options an IOstream can normally have.
An Istream is an abstract base class for all input systems (streams, files, token lists etc)....
Definition: Istream.H:64
An Ostream is an abstract base class for all output systems (streams, files, token lists,...
Definition: Ostream.H:62
A 1D vector of objects of type <T>, where the size of the vector is known and can be used for subscri...
Definition: UList.H:94
regIOobject is an abstract class derived from IOobject to handle automatic object registration with t...
Definition: regIOobject.H:76
A class representing the concept of 0 (zero) that can be used to avoid manipulating objects known to ...
Definition: zero.H:63
OBJstream os(runTime.globalPath()/outputName)
IOobject io("surfaceFilmProperties", mesh.time().constant(), mesh, IOobject::READ_IF_PRESENT, IOobject::NO_WRITE, false)
Namespace for OpenFOAM.
#define TypeName(TypeNameString)
Declare a ClassName() with extra virtual type info.
Definition: typeInfo.H:73