Nektar++
MeshGraphXml.h
Go to the documentation of this file.
1////////////////////////////////////////////////////////////////////////////////
2//
3// File: MeshGraphXml.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// MeshGraphXml class.
33//
34//
35////////////////////////////////////////////////////////////////////////////////
36#ifndef NEKTAR_SPATIALDOMAINS_MGXML_H
37#define NEKTAR_SPATIALDOMAINS_MGXML_H
38
41
43{
44
45class MeshGraphXml : public MeshGraph
46{
47public:
49 {
50 }
51
52 ~MeshGraphXml() override
53 {
54 }
55
57 std::string outname, std::vector<std::set<unsigned int>> elements,
58 std::vector<unsigned int> partitions);
59
61 {
63 }
64
65 static std::string className;
66
67protected:
68 // some of these functions are going to be virtual because they will be
69 // inherited by the XmlCompressed version
70
72 const std::string &outfilename, bool defaultExp = false,
73 const LibUtilities::FieldMetaDataMap &metadata =
76 LibUtilities::DomainRangeShPtr rng, bool fillGraph) override;
79
80 virtual void v_ReadVertices();
81 virtual void v_ReadCurves();
82 void ReadDomain();
83
84 virtual void v_ReadEdges();
85 virtual void v_ReadFaces();
86
87 void ReadElements();
88 void ReadComposites();
89
90 virtual void v_ReadElements1D();
91 virtual void v_ReadElements2D();
92 virtual void v_ReadElements3D();
93
94 void ResolveGeomRef(const std::string &prevToken, const std::string &token,
95 CompositeSharedPtr &composite);
96 void ResolveGeomRef1D(const std::string &prevToken,
97 const std::string &token,
98 CompositeSharedPtr &composite);
99 void ResolveGeomRef2D(const std::string &prevToken,
100 const std::string &token,
101 CompositeSharedPtr &composite);
102 void ResolveGeomRef3D(const std::string &prevToken,
103 const std::string &token,
104 CompositeSharedPtr &composite);
105
106 virtual void v_WriteVertices(TiXmlElement *geomTag, PointGeomMap &verts);
107 virtual void v_WriteEdges(TiXmlElement *geomTag, SegGeomMap &edges);
108 virtual void v_WriteTris(TiXmlElement *faceTag, TriGeomMap &tris);
109 virtual void v_WriteQuads(TiXmlElement *faceTag, QuadGeomMap &quads);
110 virtual void v_WriteHexs(TiXmlElement *elmtTag, HexGeomMap &hexs);
111 virtual void v_WritePrisms(TiXmlElement *elmtTag, PrismGeomMap &pris);
112 virtual void v_WritePyrs(TiXmlElement *elmtTag, PyrGeomMap &pyrs);
113 virtual void v_WriteTets(TiXmlElement *elmtTag, TetGeomMap &tets);
114 virtual void v_WriteCurves(TiXmlElement *geomTag, CurveMap &edges,
115 CurveMap &faces);
116 void WriteComposites(TiXmlElement *geomTag, CompositeMap &comps,
117 std::map<int, std::string> &compLabels);
118 void WriteDomain(TiXmlElement *geomTag,
119 std::map<int, CompositeMap> &domain);
120 void WriteDefaultExpansion(TiXmlElement *root);
121
123};
124
125} // namespace Nektar::SpatialDomains
126
127#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:181
void ResolveGeomRef1D(const std::string &prevToken, const std::string &token, CompositeSharedPtr &composite)
void WriteDefaultExpansion(TiXmlElement *root)
void v_WriteGeometry(const std::string &outfilename, bool defaultExp=false, const LibUtilities::FieldMetaDataMap &metadata=LibUtilities::NullFieldMetaDataMap) override
Write out an XML file containing the GEOMETRY block representing this MeshGraph instance inside a NEK...
virtual void v_WriteQuads(TiXmlElement *faceTag, QuadGeomMap &quads)
virtual void v_WritePyrs(TiXmlElement *elmtTag, PyrGeomMap &pyrs)
void WriteXMLGeometry(std::string outname, std::vector< std::set< unsigned int > > elements, std::vector< unsigned int > partitions)
virtual void v_WriteTris(TiXmlElement *faceTag, TriGeomMap &tris)
virtual void v_WriteVertices(TiXmlElement *geomTag, PointGeomMap &verts)
static MeshGraphSharedPtr create()
Definition: MeshGraphXml.h:60
void v_ReadGeometry(LibUtilities::DomainRangeShPtr rng, bool fillGraph) override
void ResolveGeomRef(const std::string &prevToken, const std::string &token, CompositeSharedPtr &composite)
void ResolveGeomRef3D(const std::string &prevToken, const std::string &token, CompositeSharedPtr &composite)
CompositeOrdering CreateCompositeOrdering()
virtual void v_WriteHexs(TiXmlElement *elmtTag, HexGeomMap &hexs)
virtual void v_WritePrisms(TiXmlElement *elmtTag, PrismGeomMap &pris)
virtual void v_WriteEdges(TiXmlElement *geomTag, SegGeomMap &edges)
void ResolveGeomRef2D(const std::string &prevToken, const std::string &token, CompositeSharedPtr &composite)
virtual void v_WriteTets(TiXmlElement *elmtTag, TetGeomMap &tets)
void WriteDomain(TiXmlElement *geomTag, std::map< int, CompositeMap > &domain)
void v_PartitionMesh(LibUtilities::SessionReaderSharedPtr session) override
void WriteComposites(TiXmlElement *geomTag, CompositeMap &comps, std::map< int, std::string > &compLabels)
virtual void v_WriteCurves(TiXmlElement *geomTag, CurveMap &edges, CurveMap &faces)
std::map< std::string, std::string > FieldMetaDataMap
Definition: FieldIO.h:50
std::shared_ptr< SessionReader > SessionReaderSharedPtr
static FieldMetaDataMap NullFieldMetaDataMap
Definition: FieldIO.h:51
std::shared_ptr< DomainRange > DomainRangeShPtr
Definition: DomainRange.h:64
std::map< int, TriGeomSharedPtr > TriGeomMap
Definition: TriGeom.h:57
std::map< int, std::vector< unsigned int > > CompositeOrdering
Definition: MeshGraph.h:107
std::map< int, PyrGeomSharedPtr > PyrGeomMap
Definition: PyrGeom.h:76
std::map< int, QuadGeomSharedPtr > QuadGeomMap
Definition: QuadGeom.h:52
std::shared_ptr< Composite > CompositeSharedPtr
Definition: MeshGraph.h:135
std::map< int, SegGeomSharedPtr > SegGeomMap
Definition: SegGeom.h:49
std::unordered_map< int, CurveSharedPtr > CurveMap
Definition: Curve.hpp:59
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::map< int, HexGeomSharedPtr > HexGeomMap
Definition: HexGeom.h:85
std::map< int, PointGeomSharedPtr > PointGeomMap
Definition: PointGeom.h:51
std::map< int, CompositeSharedPtr > CompositeMap
Definition: MeshGraph.h:136