ensightSetWriter.H
Go to the documentation of this file.
1 /*---------------------------------------------------------------------------*\
2  ========= |
3  \\ / F ield | OpenFOAM: The Open Source CFD Toolbox
4  \\ / O peration | Website: https://openfoam.org
5  \\ / A nd | Copyright (C) 2011-2021 OpenFOAM Foundation
6  \\/ M anipulation |
7 -------------------------------------------------------------------------------
8 License
9  This file is part of OpenFOAM.
10 
11  OpenFOAM is free software: you can redistribute it and/or modify it
12  under the terms of the GNU General Public License as published by
13  the Free Software Foundation, either version 3 of the License, or
14  (at your option) any later version.
15 
16  OpenFOAM is distributed in the hope that it will be useful, but WITHOUT
17  ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
18  FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
19  for more details.
20 
21  You should have received a copy of the GNU General Public License
22  along with OpenFOAM. If not, see <http://www.gnu.org/licenses/>.
23 
24 Class
25  Foam::ensightSetWriter
26 
27 Description
28 
29 SourceFiles
30  ensightSetWriter.C
31 
32 \*---------------------------------------------------------------------------*/
33 
34 #ifndef ensightSetWriter_H
35 #define ensightSetWriter_H
36 
37 #include "setWriter.H"
38 
39 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
40 
41 namespace Foam
42 {
43 
44 /*---------------------------------------------------------------------------*\
45  Class ensightSetWriter Declaration
46 \*---------------------------------------------------------------------------*/
47 
48 class ensightSetWriter
49 :
50  public setWriter
51 {
52 public:
53 
54  //- Runtime type information
55  TypeName("ensight");
56 
57 
58  // Constructors
59 
60  //- Inherit constructors
62 
63 
64  //- Destructor
65  virtual ~ensightSetWriter();
66 
67 
68  // Member Functions
69 
70  //- Write a coordSet and associated data
71  virtual void write
72  (
73  const fileName& outputDir,
74  const fileName& setName,
75  const coordSet& set,
76  const wordList& valueSetNames
77  #define TypeValueSetsConstArg(Type, nullArg) \
78  , const UPtrList<const Field<Type>>& Type##ValueSets
81  ) const;
82 };
83 
84 
85 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
86 
87 } // End namespace Foam
88 
89 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
90 
91 #endif
92 
93 // ************************************************************************* //
A class for handling file names.
Definition: fileName.H:79
TypeName("ensight")
Runtime type information.
Base class for writing coordinate sets with data.
Definition: setWriter.H:63
#define TypeValueSetsConstArg(Type, nullArg)
Holds list of sampling positions.
Definition: coordSet.H:50
Pre-declare SubField and related Field type.
Definition: Field.H:56
A templated 1D list of pointers to objects of type <T>, where the size of the array is known and used...
Definition: UPtrList.H:54
setWriter(const IOstream::streamFormat writeFormat, const IOstream::compressionType writeCompression)
Construct given write options.
Definition: setWriter.C:249
virtual ~ensightSetWriter()
Destructor.
virtual void write(const fileName &outputDir, const fileName &setName, const coordSet &set, const wordList &valueSetNames #define TypeValueSetsConstArg(Type, nullArg)) const
Write a coordSet and associated data.
FOR_ALL_FIELD_TYPES(DefineFvWallInfoType)
Namespace for OpenFOAM.