Nektar++
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
OutputNekpp.h
Go to the documentation of this file.
1 ////////////////////////////////////////////////////////////////////////////////
2 //
3 // File: OutputNekpp.h
4 //
5 // For more information, please see: http://www.nektar.info/
6 //
7 // The MIT License
8 //
9 // Copyright (c) 2006 Division of Applied Mathematics, Brown University (USA),
10 // Department of Aeronautics, Imperial College London (UK), and Scientific
11 // Computing and Imaging Institute, University of Utah (USA).
12 //
13 // License for the specific language governing rights and limitations under
14 // Permission is hereby granted, free of charge, to any person obtaining a
15 // copy of this software and associated documentation files (the "Software"),
16 // to deal in the Software without restriction, including without limitation
17 // the rights to use, copy, modify, merge, publish, distribute, sublicense,
18 // and/or sell copies of the Software, and to permit persons to whom the
19 // Software is furnished to do so, subject to the following conditions:
20 //
21 // The above copyright notice and this permission notice shall be included
22 // in all copies or substantial portions of the Software.
23 //
24 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
25 // OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
26 // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
27 // THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
28 // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
29 // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
30 // DEALINGS IN THE SOFTWARE.
31 //
32 // Description: GMSH converter.
33 //
34 ////////////////////////////////////////////////////////////////////////////////
35 
36 #ifndef UTILITIES_NEKMESH_OUTPUTNEKPP
37 #define UTILITIES_NEKMESH_OUTPUTNEKPP
38 
39 #include <tinyxml.h>
40 
41 #include "../Module.h"
42 
43 namespace Nektar
44 {
45 namespace Utilities
46 {
47 
48 /// Converter for Gmsh files.
49 class OutputNekpp : public OutputModule
50 {
51 public:
52  /// Creates an instance of this class
53  static boost::shared_ptr<Module> create(MeshSharedPtr m)
54  {
56  }
58 
60  virtual ~OutputNekpp();
61 
62  /// Write mesh to output file.
63  virtual void Process();
64 
65 private:
66  /// Writes the <NODES> section of the XML file.
67  void WriteXmlNodes(TiXmlElement *pRoot);
68  /// Writes the <EDGES> section of the XML file.
69  void WriteXmlEdges(TiXmlElement *pRoot);
70  /// Writes the <FACES> section of the XML file if needed.
71  void WriteXmlFaces(TiXmlElement *pRoot);
72  /// Writes the <ELEMENTS> section of the XML file.
73  void WriteXmlElements(TiXmlElement *pRoot);
74  /// Writes the <CURVES> section of the XML file if needed.
75  void WriteXmlCurves(TiXmlElement *pRoot);
76  /// Writes the <COMPOSITES> section of the XML file.
77  void WriteXmlComposites(TiXmlElement *pRoot);
78  /// Writes the <DOMAIN> section of the XML file.
79  void WriteXmlDomain(TiXmlElement *pRoot);
80  /// Writes the <EXPANSIONS> section of the XML file.
81  void WriteXmlExpansions(TiXmlElement *pRoot);
82  /// Writes the <CONDITIONS> section of the XML file.
83  void WriteXmlConditions(TiXmlElement *pRoot);
84 };
85 }
86 }
87 
88 #endif
void WriteXmlCurves(TiXmlElement *pRoot)
Writes the section of the XML file if needed.
virtual void Process()
Write mesh to output file.
Definition: OutputNekpp.cpp:94
pair< ModuleType, string > ModuleKey
static boost::shared_ptr< DataType > AllocateSharedPtr()
Allocate a shared pointer from the memory pool.
void WriteXmlFaces(TiXmlElement *pRoot)
Writes the section of the XML file if needed.
Abstract base class for output modules.
void WriteXmlNodes(TiXmlElement *pRoot)
Writes the section of the XML file.
static ModuleKey className
Definition: OutputNekpp.h:57
void WriteXmlExpansions(TiXmlElement *pRoot)
Writes the section of the XML file.
boost::shared_ptr< Mesh > MeshSharedPtr
Shared pointer to a mesh.
Definition: Mesh.h:137
void WriteXmlDomain(TiXmlElement *pRoot)
Writes the section of the XML file.
void WriteXmlComposites(TiXmlElement *pRoot)
Writes the section of the XML file.
void WriteXmlElements(TiXmlElement *pRoot)
Writes the section of the XML file.
static boost::shared_ptr< Module > create(MeshSharedPtr m)
Creates an instance of this class.
Definition: OutputNekpp.h:53
void WriteXmlConditions(TiXmlElement *pRoot)
Writes the section of the XML file.
Converter for Gmsh files.
Definition: OutputNekpp.h:49
void WriteXmlEdges(TiXmlElement *pRoot)
Writes the section of the XML file.