Nektar++
MeshGraphXml.h
Go to the documentation of this file.
1 ////////////////////////////////////////////////////////////////////////////////
2 //
3 // File: Geometry.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 // Permission is hereby granted, free of charge, to any person obtaining a
14 // copy of this software and associated documentation files (the "Software"),
15 // to deal in the Software without restriction, including without limitation
16 // the rights to use, copy, modify, merge, publish, distribute, sublicense,
17 // and/or sell copies of the Software, and to permit persons to whom the
18 // Software is furnished to do so, subject to the following conditions:
19 //
20 // The above copyright notice and this permission notice shall be included
21 // in all copies or substantial portions of the Software.
22 //
23 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
24 // OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
25 // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
26 // THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
27 // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
28 // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
29 // DEALINGS IN THE SOFTWARE.
30 //
31 // Description: This file contains the base class specification for the
32 // Geometry class.
33 //
34 //
35 ////////////////////////////////////////////////////////////////////////////////
36 #ifndef NEKTAR_SPATIALDOMAINS_MGXML_H
37 #define NEKTAR_SPATIALDOMAINS_MGXML_H
38 
41 
42 namespace Nektar
43 {
44 namespace SpatialDomains
45 {
46 
47 class MeshGraphXml : public MeshGraph
48 {
49 public:
51  {
52  }
53 
54  virtual ~MeshGraphXml()
55  {
56  }
57 
59  std::string &outfilename,
60  bool defaultExp = false,
61  const LibUtilities::FieldMetaDataMap &metadata
63 
65  std::string outname,
66  std::vector<std::set<unsigned int>> elements,
67  std::vector<unsigned int> partitions);
68 
70  {
72  }
73 
74  static std::string className;
75 
78  bool fillGraph);
81 
82 protected:
83  // some of these functions are going to be virtual because they will be
84  // inherited by the XmlCompressed version
85 
86  virtual void ReadVertices();
87  virtual void ReadCurves();
88  void ReadDomain();
89 
90  virtual void ReadEdges();
91  virtual void ReadFaces();
92 
93  void ReadElements();
94  void ReadComposites();
95 
96  virtual void ReadElements1D();
97  virtual void ReadElements2D();
98  virtual void ReadElements3D();
99 
100  void ResolveGeomRef(const std::string &prevToken, const std::string &token,
101  CompositeSharedPtr &composite);
102  void ResolveGeomRef1D(const std::string &prevToken,
103  const std::string &token,
104  CompositeSharedPtr &composite);
105  void ResolveGeomRef2D(const std::string &prevToken,
106  const std::string &token,
107  CompositeSharedPtr &composite);
108  void ResolveGeomRef3D(const std::string &prevToken,
109  const std::string &token,
110  CompositeSharedPtr &composite);
111 
112  virtual void WriteVertices(TiXmlElement *geomTag, PointGeomMap &verts);
113  virtual void WriteEdges(TiXmlElement *geomTag, SegGeomMap &edges);
114  virtual void WriteTris(TiXmlElement *faceTag, TriGeomMap &tris);
115  virtual void WriteQuads(TiXmlElement *faceTag, QuadGeomMap &quads);
116  virtual void WriteHexs(TiXmlElement *elmtTag, HexGeomMap &hexs);
117  virtual void WritePrisms(TiXmlElement *elmtTag, PrismGeomMap &pris);
118  virtual void WritePyrs(TiXmlElement *elmtTag, PyrGeomMap &pyrs);
119  virtual void WriteTets(TiXmlElement *elmtTag, TetGeomMap &tets);
120  virtual void WriteCurves(TiXmlElement *geomTag, CurveMap &edges, CurveMap &faces);
121  void WriteComposites(TiXmlElement *geomTag, CompositeMap &comps);
122  void WriteDomain(TiXmlElement *geomTag, std::vector<CompositeMap> &domain);
123  void WriteDefaultExpansion(TiXmlElement *root);
124 
126 };
127 
128 } // end of namespace
129 } // end of namespace
130 
131 #endif
#define SPATIAL_DOMAINS_EXPORT
static std::shared_ptr< DataType > AllocateSharedPtr(const Args &...args)
Allocate a shared pointer from the memory pool.
Base class for a spectral/hp element mesh.
Definition: MeshGraph.h:179
virtual void ReadGeometry(LibUtilities::DomainRangeShPtr rng, bool fillGraph)
void ResolveGeomRef1D(const std::string &prevToken, const std::string &token, CompositeSharedPtr &composite)
void WriteDefaultExpansion(TiXmlElement *root)
virtual void WriteEdges(TiXmlElement *geomTag, SegGeomMap &edges)
static MeshGraphSharedPtr create()
Definition: MeshGraphXml.h:69
void ResolveGeomRef(const std::string &prevToken, const std::string &token, CompositeSharedPtr &composite)
void ResolveGeomRef3D(const std::string &prevToken, const std::string &token, CompositeSharedPtr &composite)
virtual void WriteVertices(TiXmlElement *geomTag, PointGeomMap &verts)
void WriteDomain(TiXmlElement *geomTag, std::vector< CompositeMap > &domain)
virtual void WriteQuads(TiXmlElement *faceTag, QuadGeomMap &quads)
virtual void WriteCurves(TiXmlElement *geomTag, CurveMap &edges, CurveMap &faces)
CompositeOrdering CreateCompositeOrdering()
void WriteComposites(TiXmlElement *geomTag, CompositeMap &comps)
virtual void WriteGeometry(std::string &outfilename, bool defaultExp=false, const LibUtilities::FieldMetaDataMap &metadata=LibUtilities::NullFieldMetaDataMap)
Write out an XML file containing the GEOMETRY block representing this MeshGraph instance inside a NEK...
virtual void WriteTets(TiXmlElement *elmtTag, TetGeomMap &tets)
virtual void WritePyrs(TiXmlElement *elmtTag, PyrGeomMap &pyrs)
virtual void WriteTris(TiXmlElement *faceTag, TriGeomMap &tris)
virtual void WritePrisms(TiXmlElement *elmtTag, PrismGeomMap &pris)
void ResolveGeomRef2D(const std::string &prevToken, const std::string &token, CompositeSharedPtr &composite)
void WriteXMLGeometry(std::string outname, std::vector< std::set< unsigned int >> elements, std::vector< unsigned int > partitions)
virtual void WriteHexs(TiXmlElement *elmtTag, HexGeomMap &hexs)
virtual void PartitionMesh(LibUtilities::SessionReaderSharedPtr session)
std::map< std::string, std::string > FieldMetaDataMap
Definition: FieldIO.h:52
std::shared_ptr< SessionReader > SessionReaderSharedPtr
static FieldMetaDataMap NullFieldMetaDataMap
Definition: FieldIO.h:53
std::shared_ptr< DomainRange > DomainRangeShPtr
Definition: DomainRange.h:61
std::map< int, TriGeomSharedPtr > TriGeomMap
Definition: TriGeom.h:59
std::map< int, std::vector< unsigned int > > CompositeOrdering
Definition: MeshGraph.h:109
std::map< int, PyrGeomSharedPtr > PyrGeomMap
Definition: PyrGeom.h:75
std::map< int, QuadGeomSharedPtr > QuadGeomMap
Definition: QuadGeom.h:54
std::map< int, SegGeomSharedPtr > SegGeomMap
Definition: SegGeom.h:52
std::unordered_map< int, CurveSharedPtr > CurveMap
Definition: Curve.hpp:62
std::map< int, CompositeSharedPtr > CompositeMap
Definition: MeshGraph.h:138
std::map< int, TetGeomSharedPtr > TetGeomMap
Definition: TetGeom.h:84
std::shared_ptr< MeshGraph > MeshGraphSharedPtr
Definition: MeshGraph.h:174
std::map< int, PrismGeomSharedPtr > PrismGeomMap
Definition: PrismGeom.h:83
std::shared_ptr< Composite > CompositeSharedPtr
Definition: MeshGraph.h:137
std::map< int, HexGeomSharedPtr > HexGeomMap
Definition: HexGeom.h:85
std::map< int, PointGeomSharedPtr > PointGeomMap
Definition: PointGeom.h:54
The above copyright notice and this permission notice shall be included.
Definition: CoupledSolver.h:1