VTPsurfaceFormat.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) 2017-2020 OpenCFD Ltd.
9 -------------------------------------------------------------------------------
10 License
11  This file is part of OpenFOAM.
12 
13  OpenFOAM is free software: you can redistribute it and/or modify it
14  under the terms of the GNU General Public License as published by
15  the Free Software Foundation, either version 3 of the License, or
16  (at your option) any later version.
17 
18  OpenFOAM is distributed in the hope that it will be useful, but WITHOUT
19  ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
20  FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
21  for more details.
22 
23  You should have received a copy of the GNU General Public License
24  along with OpenFOAM. If not, see <http://www.gnu.org/licenses/>.
25 
26 Class
27  Foam::fileFormats::VTPsurfaceFormat
28 
29 Description
30  Write surfaces in VTP (xml) format.
31  The default format is INLINE_BASE64
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 | binary
41  precision | Write precision in ascii | no | same as IOstream
42  \endtable
43 
44 SourceFiles
45  VTPsurfaceFormat.C
46 
47 \*---------------------------------------------------------------------------*/
48 
49 #ifndef VTPsurfaceFormat_H
50 #define VTPsurfaceFormat_H
51 
52 #include "MeshedSurface.H"
53 #include "MeshedSurfaceProxy.H"
54 #include "UnsortedMeshedSurface.H"
55 #include "VTPsurfaceFormatCore.H"
56 
57 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
58 
59 namespace Foam
60 {
61 namespace fileFormats
62 {
63 
64 /*---------------------------------------------------------------------------*\
65  Class fileFormats::VTPsurfaceFormat Declaration
66 \*---------------------------------------------------------------------------*/
67 
68 template<class Face>
69 class VTPsurfaceFormat
70 :
71  public MeshedSurface<Face>,
72  public VTPsurfaceFormatCore
73 {
74  // Private Member Functions
75 
76  //- Write polygons
77  static void writePolys
78  (
80  const UList<Face>& faces
81  );
82 
83 
84 public:
85 
86  // Constructors
87 
88  //- Default construct
89  VTPsurfaceFormat() = default;
90 
91 
92  //- Destructor
93  virtual ~VTPsurfaceFormat() = default;
94 
95 
96  // Static Functions
97 
98  //- Write surface mesh components by proxy
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
109  (
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  //- Write meshed surface to a file
120  virtual void write
121  (
122  const fileName& name,
123  IOstreamOption streamOpt = IOstreamOption(),
124  const dictionary& options = dictionary::null
125  ) const
126  {
127  write(name, MeshedSurfaceProxy<Face>(*this), streamOpt, options);
128  }
129 };
130 
131 
132 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
133 
134 } // End namespace fileFormats
135 } // End namespace Foam
136 
137 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
138 
139 #ifdef NoRepository
140  #include "VTPsurfaceFormat.C"
141 #endif
142 
143 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
144 
145 #endif
146 
147 // ************************************************************************* //
A surface geometry mesh, in which the surface zone information is conveyed by the &#39;zoneId&#39; associated...
Definition: MeshedSurface.H:76
static void write(const fileName &filename, const MeshedSurfaceProxy< Face > &surf, IOstreamOption=IOstreamOption(), const dictionary &options=dictionary::null)
Write surface mesh components by proxy.
A class for handling file names.
Definition: fileName.H:72
Abstract class for a VTK output stream formatter.
A list of keyword definitions, which are a keyword followed by a number of values (eg...
Definition: dictionary.H:129
VTPsurfaceFormat()=default
Default construct.
A simple container for options an IOstream can normally have.
virtual ~VTPsurfaceFormat()=default
Destructor.
word name(const expressions::valueTypeCode typeCode)
A word representation of a valueTypeCode. Empty for expressions::valueTypeCode::INVALID.
Definition: exprTraits.C:127
static const dictionary null
An empty dictionary, which is also the parent for all dictionaries.
Definition: dictionary.H:474
A proxy for writing MeshedSurface, UnsortedMeshedSurface and surfMesh to various file formats...
Definition: MeshedSurface.H:75
word format(conversionProperties.get< word >("format"))
Namespace for OpenFOAM.