vtkSurfaceWriter.C
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) 2019-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 \*---------------------------------------------------------------------------*/
27 
28 #include "vtkSurfaceWriter.H"
29 #include "foamVtkSurfaceWriter.H"
30 #include "surfaceWriterMethods.H"
32 
33 // * * * * * * * * * * * * * * Static Data Members * * * * * * * * * * * * * //
34 
35 namespace Foam
36 {
37 namespace surfaceWriters
38 {
39  defineTypeName(vtkWriter);
40  addToRunTimeSelectionTable(surfaceWriter, vtkWriter, word);
41  addToRunTimeSelectionTable(surfaceWriter, vtkWriter, wordDict);
42 
43  // Accept vtp ending as well
45  (
46  surfaceWriter,
47  vtkWriter,
48  word,
49  vtp
50  );
52  (
53  surfaceWriter,
54  vtkWriter,
55  wordDict,
56  vtp
57  );
58 }
59 }
60 
61 
62 // * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * //
63 
65 :
66  surfaceWriter(),
67  fmtType_(static_cast<unsigned>(vtk::formatType::INLINE_BASE64)),
68  precision_(IOstream::defaultPrecision()),
69  fieldScale_(),
70  writer_(nullptr)
71 {}
72 
73 
75 (
76  const vtk::outputOptions& opts
77 )
78 :
79  surfaceWriter(),
80  fmtType_(static_cast<unsigned>(opts.fmt())),
81  precision_(opts.precision()),
82  fieldScale_(),
83  writer_(nullptr)
84 {}
85 
86 
88 (
89  const dictionary& options
90 )
91 :
92  surfaceWriter(options),
93  fmtType_(static_cast<unsigned>(vtk::formatType::INLINE_BASE64)),
94  precision_
95  (
96  options.getOrDefault("precision", IOstream::defaultPrecision())
97  ),
98  fieldScale_(options.subOrEmptyDict("fieldScale")),
99  writer_(nullptr)
100 {
101  // format: ascii | binary
102  // legacy: true | false
103 
105 
106  opts.ascii
107  (
109  == IOstream::formatEnum("format", options, IOstream::BINARY)
110  );
111 
112  opts.legacy(options.getOrDefault("legacy", false));
113 
114  // Convert back to raw data type
115  fmtType_ = static_cast<unsigned>(opts.fmt());
116 }
117 
118 
120 (
121  const meshedSurf& surf,
122  const fileName& outputPath,
123  bool parallel,
124  const dictionary& options
125 )
126 :
127  vtkWriter(options)
128 {
129  open(surf, outputPath, parallel);
130 }
131 
132 
134 (
135  const pointField& points,
136  const faceList& faces,
137  const fileName& outputPath,
138  bool parallel,
139  const dictionary& options
140 )
141 :
142  vtkWriter(options)
143 {
144  open(points, faces, outputPath, parallel);
145 }
146 
147 
148 // * * * * * * * * * * * * * * * * Destructor * * * * * * * * * * * * * * * //
149 
151 {
152  close();
153 }
154 
155 
156 // * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * //
157 
159 {
160  writer_.clear();
162 }
163 
164 
166 {
167  writer_.clear();
169 }
170 
171 
173 {
174  writer_.clear();
176 }
177 
178 
180 {
181  writer_.clear();
183 }
184 
185 
187 {
188  checkOpen();
189 
190  if (needsUpdate())
191  {
192  writer_.clear();
193  }
194  merge();
195 
196  // From raw unsigned values to vtk::outputOptions
197  vtk::outputOptions opts(static_cast<vtk::formatType>(fmtType_), precision_);
198 
199 
200  // Geometry: rootdir/<TIME>/surfaceName.{vtk|vtp}
201 
202  fileName outputFile = outputPath_;
203  if (useTimeDir() && !timeName().empty())
204  {
205  // Splice in time-directory
206  outputFile = outputPath_.path() / timeName() / outputPath_.name();
207  }
208  outputFile.ext(vtk::surfaceWriter::ext(opts));
209 
210  if (verbose_)
211  {
212  Info<< "Writing geometry to " << outputFile << endl;
213  }
214 
215  const meshedSurf& surf = surface();
216 
217  if (!writer_ && (Pstream::master() || !parallel_))
218  {
219  writer_.reset
220  (
222  (
223  surf.points(),
224  surf.faces(),
225  opts,
226  outputFile,
227  false // serial!
228  )
229  );
230 
231  if (this->hasTime())
232  {
233  // Time name in title
234  writer_->setTime(currTime_);
235  writer_->writeTimeValue();
236  }
237  else
238  {
239  // Surface name in title
240  writer_->beginFile(outputPath_.nameLessExt());
241  }
242 
243  writer_->writeGeometry();
244  }
245 
246  wroteGeom_ = true;
247  return outputFile;
248 }
249 
250 
251 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
252 
253 template<class Type>
254 Foam::fileName Foam::surfaceWriters::vtkWriter::writeTemplate
255 (
256  const word& fieldName,
257  const Field<Type>& localValues
258 )
259 {
260  // Field: rootdir/<TIME>/surfaceName.{vtk|vtp}
261 
262  // Open file, writing geometry (if required)
263  fileName outputFile = this->write();
264 
265 
266  // Output scaling for the variable, but not for integer types.
267  // could also solve with clever templating
268 
269  const scalar varScale =
270  (
271  std::is_integral<Type>::value
272  ? scalar(1)
273  : fieldScale_.getOrDefault<scalar>(fieldName, 1)
274  );
275 
276  if (verbose_)
277  {
278  Info<< "Writing field " << fieldName;
279  if (!equal(varScale, 1))
280  {
281  Info<< " (scaling " << varScale << ')';
282  }
283  Info<< " to " << outputFile << endl;
284  }
285 
286 
287  // Implicit geometry merge()
288  tmp<Field<Type>> tfield = mergeField(localValues) * varScale;
289 
290  if (Pstream::master() || !parallel_)
291  {
292  if (this->isPointData())
293  {
294  writer_->beginPointData(nFields_);
295  }
296  else
297  {
298  writer_->beginCellData(nFields_);
299  }
300 
301  writer_->write(fieldName, tfield());
302  }
303 
304  wroteGeom_ = true;
305  return outputFile;
306 }
307 
308 
309 // Field writing methods
311 
312 
313 // ************************************************************************* //
Foam::vtk::outputOptions
Encapsulated combinations of output format options. This is primarily useful when defining the output...
Definition: foamVtkOutputOptions.H:59
Foam::Time
Class to control time during OpenFOAM simulations that is also the top-level objectRegistry.
Definition: Time.H:73
Foam::word
A class for handling words, derived from Foam::string.
Definition: word.H:62
Foam::surfaceWriter
Base class for surface writers.
Definition: surfaceWriter.H:111
Foam::fileName
A class for handling file names.
Definition: fileName.H:69
Foam::surfaceWriters::defineTypeName
defineTypeName(abaqusWriter)
Foam::fileName::path
static std::string path(const std::string &str)
Return directory path name (part before last /)
Definition: fileNameI.H:186
Foam::tmp
A class for managing temporary objects.
Definition: PtrList.H:61
Foam::vtk::outputOptions::precision
unsigned precision() const
Return the ASCII write precision.
Definition: foamVtkOutputOptionsI.H:126
Foam::surfaceWriters::vtkWriter::write
virtual fileName write()
Write surface geometry to file.
Definition: vtkSurfaceWriter.C:186
Foam::meshedSurf::faces
virtual const faceList & faces() const =0
The faces used for the surface.
Foam::surfaceWriters::vtkWriter::close
virtual void close()
Finish output, clears backend.
Definition: vtkSurfaceWriter.C:158
Foam::IOstream
An IOstream is an abstract base class for all input/output systems; be they streams,...
Definition: IOstream.H:75
Foam::meshedSurf
Abstract definition of a meshed surface defined by faces and points.
Definition: meshedSurf.H:49
Foam::surfaceWriters::vtkWriter::beginTime
virtual void beginTime(const Time &t)
Begin time step. Clears existing backend.
Definition: vtkSurfaceWriter.C:165
Foam::UPstream::master
static bool master(const label communicator=worldComm)
Am I the master process.
Definition: UPstream.H:458
Foam::vtk::outputOptions::legacy
bool legacy() const
True if writer uses legacy file format.
Definition: foamVtkOutputOptionsI.H:88
Foam::endl
Ostream & endl(Ostream &os)
Add newline and flush stream.
Definition: Ostream.H:350
foamVtkSurfaceWriter.H
surfaceWriterMethods.H
Convenience macros for instantiating surfaceWriter methods.
Foam::vtk::outputOptions::fmt
formatType fmt() const
The output format type.
Definition: foamVtkOutputOptionsI.H:71
Foam::surfaceWriter::endTime
virtual void endTime()
End a time-step.
Definition: surfaceWriter.C:241
Foam::surfaceWriters::addToRunTimeSelectionTable
addToRunTimeSelectionTable(surfaceWriter, abaqusWriter, word)
Foam::surfaceWriters::vtkWriter
A surfaceWriter for VTK legacy (.vtk) or XML (.vtp) format.
Definition: vtkSurfaceWriter.H:124
Foam::vtk::formatType
formatType
The output format type for file contents.
Definition: foamVtkCore.H:65
Foam::surfaceWriter::beginTime
virtual void beginTime(const Time &t)
Begin a time-step.
Definition: surfaceWriter.C:229
Foam::vtk::outputOptions::ascii
bool ascii() const
True if output format is ASCII.
Definition: foamVtkOutputOptionsI.H:120
Foam::Field< vector >
Foam::Info
messageStream Info
Information stream (uses stdout - output is on the master only)
Foam::surfaceWriters::vtkWriter::endTime
virtual void endTime()
End time step. Clears existing backend.
Definition: vtkSurfaceWriter.C:179
Foam::meshedSurf::points
virtual const pointField & points() const =0
The points used for the surface.
timeName
word timeName
Definition: getTimeIndex.H:3
Foam::dictionary
A list of keyword definitions, which are a keyword followed by a number of values (eg,...
Definition: dictionary.H:121
addToRunTimeSelectionTable.H
Macros for easy insertion into run-time selection tables.
Foam::vtk::formatType::INLINE_BASE64
XML inline base64, base64Formatter.
Foam::fileName::ext
word ext() const
Return file name extension (part after last .)
Definition: fileNameI.H:228
Foam::surfaceWriters::vtkWriter::~vtkWriter
virtual ~vtkWriter()
Destructor. Calls close()
Definition: vtkSurfaceWriter.C:150
Foam
Namespace for OpenFOAM.
Definition: atmBoundaryLayer.C:33
Foam::dictionary::subOrEmptyDict
dictionary subOrEmptyDict(const word &keyword, enum keyType::option matchOpt=keyType::REGEX, const bool mandatory=false) const
Definition: dictionary.C:608
Foam::IOstreamOption::BINARY
"binary"
Definition: IOstreamOption.H:73
Foam::IOstreamOption::ASCII
"ascii" (normal default)
Definition: IOstreamOption.H:72
Foam::IOstream::defaultPrecision
static unsigned int defaultPrecision()
Return the default precision.
Definition: IOstream.H:333
Foam::vtk::surfaceWriter
Write faces/points (optionally with fields) as a vtp file or a legacy vtk file.
Definition: foamVtkSurfaceWriter.H:68
Foam::IOstreamOption::formatEnum
static streamFormat formatEnum(const word &formatName, const streamFormat deflt=streamFormat::ASCII)
Definition: IOstreamOption.C:53
vtkSurfaceWriter.H
Foam::List< face >
points
const pointField & points
Definition: gmvOutputHeader.H:1
defineSurfaceWriterWriteFields
defineSurfaceWriterWriteFields(Foam::surfaceWriters::vtkWriter)
Foam::vtk::write
void write(vtk::formatter &fmt, const Type &val, const label n=1)
Component-wise write of a value (N times)
Definition: foamVtkOutputTemplates.C:35
Foam::instant
An instant of time. Contains the time value and name.
Definition: instant.H:52
Foam::surfaceWriter::close
virtual void close()
Finish output, performing any necessary cleanup.
Definition: surfaceWriter.C:306
Foam::dictionary::getOrDefault
T getOrDefault(const word &keyword, const T &deflt, enum keyType::option matchOpt=keyType::REGEX) const
Definition: dictionaryTemplates.C:122
Foam::surfaceWriters::vtkWriter::vtkWriter
vtkWriter()
Default construct.
Definition: vtkSurfaceWriter.C:64
Foam::vtk::fileWriter::ext
word ext() const
File extension for current format type.
Definition: foamVtkFileWriterI.H:68
Foam::equal
bool equal(const T &s1, const T &s2)
Compare two values for equality.
Definition: doubleFloat.H:46
Foam::surfaceWriters::addNamedToRunTimeSelectionTable
addNamedToRunTimeSelectionTable(surfaceWriter, vtkWriter, word, vtp)