Loading...
Searching...
No Matches
VTKsurfaceFormat.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-2016 OpenFOAM Foundation
9 Copyright (C) 2016-2024 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::fileFormats::VTKsurfaceFormat
29
30Description
31 Read/write VTK legacy format (ASCII) for surfaces.
32
33 The output is never sorted by zone.
34
35 Output stream options: ignored (dictionary options only)
36
37 \heading Format options
38 \table
39 Property | Description | Required | Default
40 format | ascii or binary format | no | ascii
41 precision | Write precision in ascii | no | same as IOstream
42 \endtable
43
44SourceFiles
45 VTKsurfaceFormat.C
46
47\*---------------------------------------------------------------------------*/
48
49#ifndef Foam_VTKsurfaceFormat_H
50#define Foam_VTKsurfaceFormat_H
51
52#include "MeshedSurface.H"
53#include "MeshedSurfaceProxy.H"
56
57// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
58
59namespace Foam
60{
61namespace fileFormats
62{
63
64/*---------------------------------------------------------------------------*\
65 Class fileFormats::VTKsurfaceFormat Declaration
66\*---------------------------------------------------------------------------*/
67
68template<class Face>
70:
71 public MeshedSurface<Face>,
73{
74 // Private Member Functions
75
76 //- Write polygons
77 static void writePolys
78 (
80 const UList<Face>& faces
81 );
82
83
84public:
85
86 // Constructors
87
88 //- Construct from file name
89 explicit VTKsurfaceFormat(const fileName& filename);
90
91
92 //- Destructor
93 virtual ~VTKsurfaceFormat() = default;
94
95
96 // Static Functions
97
98 //- Write surface mesh components (by proxy) in legacy VTK format
99 static void write
100 (
101 const fileName& filename,
102 const MeshedSurfaceProxy<Face>& surf,
103 IOstreamOption /*ignored*/ = IOstreamOption(),
104 const dictionary& options = dictionary::null
105 );
106
107 //- Write UnsortedMeshedSurface, the output remains unsorted
108 static void write
110 const fileName& fileName,
111 const UnsortedMeshedSurface<Face>& surf,
112 IOstreamOption /*ignored*/ = IOstreamOption(),
113 const dictionary& options = dictionary::null
114 );
115
116
117 // Member Functions
118
119 //- Read from file
120 virtual bool read(const fileName& filename) override;
121
122 //- Write surface mesh to file (by proxy)
123 virtual void write
124 (
125 const fileName& name,
126 IOstreamOption streamOpt = IOstreamOption(),
127 const dictionary& options = dictionary::null
128 ) const override
129 {
130 write(name, MeshedSurfaceProxy<Face>(*this), streamOpt, options);
131 }
132
133 //- Write surface mesh to file (by proxy)
134 virtual void write
135 (
136 const fileName& name,
137 const word& fileType, /* ignored */
138 IOstreamOption streamOpt = IOstreamOption(),
139 const dictionary& options = dictionary::null
140 ) const override
141 {
142 write(name, MeshedSurfaceProxy<Face>(*this), streamOpt, options);
143 }
144};
145
146
147// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
148
149} // End namespace fileFormats
150} // End namespace Foam
151
152// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
153
154#ifdef NoRepository
155 #include "VTKsurfaceFormat.C"
156#endif
157
158// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
159
160#endif
161
162// ************************************************************************* //
A simple container for options an IOstream can normally have.
A proxy for writing MeshedSurface, UnsortedMeshedSurface and surfMesh to various file formats.
friend class UnsortedMeshedSurface
friend class MeshedSurface
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:89
A list of keyword definitions, which are a keyword followed by a number of values (eg,...
Definition dictionary.H:133
static const dictionary null
An empty dictionary, which is also the parent for all dictionaries.
Definition dictionary.H:487
Internal class used by the VTKsurfaceFormat Format is LEGACY_ASCII.
Read/write VTK legacy format (ASCII) for surfaces.
virtual ~VTKsurfaceFormat()=default
Destructor.
virtual bool read(const fileName &filename) override
Read from file.
virtual void write(const fileName &name, const word &fileType, IOstreamOption streamOpt=IOstreamOption(), const dictionary &options=dictionary::null) const override
Write surface mesh to file (by proxy).
VTKsurfaceFormat(const fileName &filename)
Construct from file name.
virtual void write(const fileName &name, IOstreamOption streamOpt=IOstreamOption(), const dictionary &options=dictionary::null) const override
Write surface mesh to file (by proxy).
A class for handling file names.
Definition fileName.H:75
Abstract class for a VTK output stream formatter.
A class for handling words, derived from Foam::string.
Definition word.H:66
Namespace to isolate specifics for file formats, and some common utilities.
Namespace for OpenFOAM.
word name(const expressions::valueTypeCode typeCode)
A word representation of a valueTypeCode. Empty for expressions::valueTypeCode::INVALID.
Definition exprTraits.C:127
runTime write()
word format(conversionProperties.get< word >("format"))