1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
|
/* This file is part of the OpenLB library
*
* Copyright (C) 2016 Albert Mink, Mathias J. Krause
* E-mail contact: info@openlb.net
* The most recent release of OpenLB can be downloaded at
* <http://www.openlb.net/>
*
* This program 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 2
* of the License, or (at your option) any later version.
*
* This program 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 this program; if not, write to the Free
* Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
* Boston, MA 02110-1301, USA.
*/
/** \file
* A method to write vtk data for cuboid geometries
* (only for uniform grids) -- header file.
*/
#ifndef SUPER_VTM_WRITER_2D_H
#define SUPER_VTM_WRITER_2D_H
#include <sstream>
#include <vector>
#include "io/ostreamManager.h"
#include "functors/lattice/superBaseF2D.h"
namespace olb {
/** SuperVTMwriter2D writes any SuperF2D to vtk-based output files.
*
* In .pvd files, there are only links/references to a VTKmultiblock file 'vtm'
*
* .pvd file structur
* the time series is represented by different 'vtm' files.
*
* .vtm file
* This file links cuboids ('vti') and represents the entire data of a single timestep.
*
*/
template<typename T, typename W=T>
class SuperVTMwriter2D {
public:
SuperVTMwriter2D( std::string name, bool binary = true );
/// writes functors stored in pointerVec
/// every thread writes a vti file with data from his cuboids
/// the vti files are linked in a pvd file
void write(int iT=0);
/// writes functor instantaneously, same vti-pvd file structure as above
void write(SuperF2D<T,W>& f, int iT=0);
void write(std::shared_ptr<SuperF2D<T,W>> ptr_f, int iT=0);
/// have to be called before calling write(int iT=0), since it creates
// the master pvd file, where all vti are linked!
void createMasterFile();
/// put functor to _pointerVec
/// to simplify writing process of several functors
void addFunctor(SuperF2D<T,W>& f);
/// to clear stored functors, not yet used due to lack of necessity
void clearAddedFunctors();
/// getter for _name
std::string getName() const;
private:
/// performes <VTKFile ...>, <ImageData ...>, <PieceExtent ...> and <PointData ...>
void preambleVTI(const std::string& fullName, int x0, int y0, int x1, int y1,
T originX, T originY, T delta);
/// performes </ImageData> and </VTKFile>
void closeVTI(const std::string& fullNamePiece);
/// performes <VTKFile ...> and <Collection>
void preamblePVD(const std::string& fullNamePVD);
/// performes </Collection> and </VTKFile>
void closePVD(const std::string& fullNamePVD);
/// performes <VTKFile ...> and <Collection>
void preambleVTM(const std::string& fullNamePVD);
/// performes </Collection> and </VTKFile>
void closeVTM(const std::string& fullNamePVD);
/// performes <DataSet timestep= ... file=namePiece />
/// used for linking vti into pvd files
void dataVTM(int iC, const std::string& fullNamePVD, const std::string& namePiece);
/// performes <DataSet timestep= ... file=namePiece />
/// *** nasty function ***
void dataPVDmaster(int iT, const std::string& fullNamePVDMaster,
const std::string& namePiece);
/// writes given functor f, ascii
void dataArray(const std::string& fullName, SuperF2D<T,W>& f,
int iC, int nx, int ny);
/// writes given functor f, base 64
void dataArrayBinary(const std::string& fullName, SuperF2D<T,W>& f,
int iC, int nx, int ny);
/// performes </PointData> and </Piece>
void closePiece(const std::string& fullNamePiece);
private:
mutable OstreamManager clout;
/// default is false, call createMasterFile() and it will be true
bool _createFile;
/// determines the name of .vti and .pvd per iT
std::string _name;
/// holds added functor, to simplify the use of write function
std::vector< SuperF2D<T,W>* > _pointerVec;
bool _binary =true;
};
} // namespace olb
#endif
|