OpenFOAM: API Guide
v2112
The open source CFD toolbox
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
-------------------------------------------------------------------------------
11
License
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
27
Class
28
Foam::CompactIOField
29
30
Description
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
37
SourceFiles
38
CompactIOField.C
39
40
\*---------------------------------------------------------------------------*/
41
42
#ifndef Foam_CompactIOField_H
43
#define Foam_CompactIOField_H
44
45
#include "
IOField.H
"
46
47
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
48
49
namespace
Foam
50
{
51
52
// Forward Declarations
53
template
<
class
T,
class
BaseType>
class
CompactIOField;
54
55
template
<
class
T,
class
BaseType>
Istream
&
operator
>>
56
(
57
Istream
&,
58
CompactIOField<T, BaseType>
&
59
);
60
61
template
<
class
T,
class
BaseType>
Ostream
&
operator
<<
62
(
63
Ostream
&,
64
const
CompactIOField<T, BaseType>
&
65
);
66
67
/*---------------------------------------------------------------------------*\
68
Class CompactIOField Declaration
69
\*---------------------------------------------------------------------------*/
70
71
template
<
class
T,
class
BaseType>
72
class
CompactIOField
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
82
public
:
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)
100
CompactIOField
(
const
IOobject
&
io
,
Foam::zero
);
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
// ************************************************************************* //
CompactIOField.C
IOField.H
Foam::CompactIOField
A Field of objects of type <T> with automated input and output using a compact storage....
Definition:
CompactIOField.H:75
Foam::CompactIOField::writeData
virtual bool writeData(Ostream &os) const
Pure virtual writeData function.
Definition:
CompactIOField.C:222
Foam::CompactIOField::~CompactIOField
virtual ~CompactIOField()=default
Destructor.
Foam::CompactIOField::operator=
void operator=(const CompactIOField< T, BaseType > &rhs)
Copy assignment of entries.
Definition:
CompactIOField.C:232
Foam::CompactIOField::TypeName
TypeName("FieldField")
Runtime type information.
Foam::CompactIOField::writeObject
virtual bool writeObject(IOstreamOption streamOpt, const bool valid) const
Write using stream options.
Definition:
CompactIOField.C:197
Foam::CompactIOField::CompactIOField
CompactIOField(const CompactIOField &)=default
Default copy construct.
Foam::Field
Generic templated field type.
Definition:
Field.H:82
Foam::Field< T >::T
tmp< Field< T > > T() const
Return the field transpose (only defined for second rank tensors)
Definition:
Field.C:605
Foam::Field< T >::operator
friend Ostream & operator(Ostream &, const Field< T > &)
Foam::IOobject
Defines the attributes of an object for which implicit objectRegistry management is supported,...
Definition:
IOobject.H:170
Foam::IOstreamOption
The IOstreamOption is a simple container for options an IOstream can normally have.
Definition:
IOstreamOption.H:64
Foam::Istream
An Istream is an abstract base class for all input systems (streams, files, token lists etc)....
Definition:
Istream.H:64
Foam::Ostream
An Ostream is an abstract base class for all output systems (streams, files, token lists,...
Definition:
Ostream.H:62
Foam::UList
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
Foam::regIOobject
regIOobject is an abstract class derived from IOobject to handle automatic object registration with t...
Definition:
regIOobject.H:76
Foam::zero
A class representing the concept of 0 (zero) that can be used to avoid manipulating objects known to ...
Definition:
zero.H:63
os
OBJstream os(runTime.globalPath()/outputName)
io
IOobject io("surfaceFilmProperties", mesh.time().constant(), mesh, IOobject::READ_IF_PRESENT, IOobject::NO_WRITE, false)
Foam
Namespace for OpenFOAM.
Definition:
atmBoundaryLayer.C:34
TypeName
#define TypeName(TypeNameString)
Declare a ClassName() with extra virtual type info.
Definition:
typeInfo.H:73
src
OpenFOAM
db
IOobjects
CompactIOField
CompactIOField.H
Generated by
1.9.5
OPENFOAM® is a registered
trademark
of OpenCFD Ltd.