Nektar++
MeshGraph.h
Go to the documentation of this file.
1////////////////////////////////////////////////////////////////////////////////
2//
3// File: MeshGraph.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:
32//
33////////////////////////////////////////////////////////////////////////////////
34
35#ifndef NEKTAR_SPATIALDOMAINS_MESHGRAPH_H
36#define NEKTAR_SPATIALDOMAINS_MESHGRAPH_H
37
38#include <unordered_map>
39
43
52
55
56class TiXmlDocument;
57
59{
60typedef std::map<int, std::pair<LibUtilities::ShapeType, std::vector<int>>>
62
64{
84};
85
86// Keep this consistent with the enums in ExpansionType.
87// This is used in the BC file to specify the expansion type.
88const std::string kExpansionTypeStr[] = {"NOTYPE",
89 "MODIFIED",
90 "MODIFIEDQUADPLUS1",
91 "MODIFIEDQUADPLUS2",
92 "MODIFIEDGLLRADAU10",
93 "ORTHOGONAL",
94 "GLL_LAGRANGE",
95 "GLL_LAGRANGE_SEM",
96 "GAUSS_LAGRANGE",
97 "GAUSS_LAGRANGE_SEM",
98 "FOURIER",
99 "FOURIERSINGLEMODE",
100 "FOURIERHALFMODERE",
101 "FOURIERHALFMODEIM",
102 "CHEBYSHEV",
103 "FOURIER-CHEBYSHEV",
104 "CHEBYSHEV-FOURIER",
105 "FOURIER-MODIFIED"};
106
107typedef std::map<int, std::vector<unsigned int>> CompositeOrdering;
108typedef std::map<int, std::vector<unsigned int>> BndRegionOrdering;
109
110// set restriction on domain range for post-processing.
111// struct DomainRange
112// {
113// bool m_doXrange;
114// NekDouble m_xmin;
115// NekDouble m_xmax;
116// bool m_doYrange;
117// NekDouble m_ymin;
118// NekDouble m_ymax;
119// bool m_doZrange;
120// NekDouble m_zmin;
121// NekDouble m_zmax;
122
123// bool m_checkShape;
124// LibUtilities::ShapeType m_shapeType;
125// };
126
127// typedef std::shared_ptr<DomainRange> DomainRangeShPtr;
128// static DomainRangeShPtr NullDomainRangeShPtr;
129
131{
132 std::vector<std::shared_ptr<Geometry>> m_geomVec;
133};
134
135typedef std::shared_ptr<Composite> CompositeSharedPtr;
136typedef std::map<int, CompositeSharedPtr> CompositeMap;
137
138struct ExpansionInfo;
139
140typedef std::shared_ptr<ExpansionInfo> ExpansionInfoShPtr;
141typedef std::map<int, ExpansionInfoShPtr> ExpansionInfoMap;
142
143typedef std::shared_ptr<ExpansionInfoMap> ExpansionInfoMapShPtr;
144typedef std::map<std::string, ExpansionInfoMapShPtr> ExpansionInfoMapShPtrMap;
145
147{
149 const LibUtilities::BasisKeyVector basiskeyvec)
150 : m_geomShPtr(geomShPtr), m_basisKeyVector(basiskeyvec)
151 {
152 }
153
155 : m_geomShPtr(ExpInfo->m_geomShPtr),
157 {
158 }
159
162};
163
164typedef std::map<std::string, std::string> GeomInfoMap;
165typedef std::shared_ptr<std::vector<std::pair<GeometrySharedPtr, int>>>
167
168// Forward declaration
169class RefRegion;
170
171typedef std::map<std::string, std::string> MeshMetaDataMap;
172
173class MeshGraph;
174typedef std::shared_ptr<MeshGraph> MeshGraphSharedPtr;
175
176class Movement;
177typedef std::shared_ptr<Movement> MovementSharedPtr;
178
179/// Base class for a spectral/hp element mesh.
181{
182public:
185
186 void Empty(int dim, int space)
187 {
188 m_meshDimension = dim;
189 m_spaceDimension = space;
190 }
191
192 /*transfers the minial data structure to full meshgraph*/
194
196
199
200 ////////////////////
202
203 /// Read refinement info.
205
206 /* ---- Helper functions ---- */
207 /// Dimension of the mesh (can be a 1D curve in 3D space).
209 {
210 return m_meshDimension;
211 }
212
213 /// Dimension of the space (can be a 1D curve in 3D space).
215 {
216 return m_spaceDimension;
217 }
218
219 void SetMeshDimension(int dim)
220 {
221 m_meshDimension = dim;
222 }
223
224 void SetSpaceDimension(int dim)
225 {
226 m_spaceDimension = dim;
227 }
228
229 /* Range definitions for postprorcessing */
231 NekDouble xmin, NekDouble xmax,
236
239
240 /// Check if goemetry is in range definition if activated
242
243 /// Check if goemetry is in range definition if activated
245
246 /* ---- Composites and Domain ---- */
248 {
249 ASSERTL0(m_meshComposites.find(whichComposite) !=
250 m_meshComposites.end(),
251 "Composite not found.");
252 return m_meshComposites.find(whichComposite)->second;
253 }
254
256 GetCompositeItem(int whichComposite, int whichItem);
257
259 const std::string &compositeStr, CompositeMap &compositeVector) const;
260
261 std::map<int, CompositeSharedPtr> &GetComposites()
262 {
263 return m_meshComposites;
264 }
265
266 std::map<int, std::string> &GetCompositesLabels()
267 {
268 return m_compositesLabels;
269 }
270
271 std::map<int, std::map<int, CompositeSharedPtr>> &GetDomain()
272 {
273 return m_domain;
274 }
275
276 std::map<int, CompositeSharedPtr> &GetDomain(int domain)
277 {
278 ASSERTL1(m_domain.count(domain),
279 "Request for domain which does not exist");
280 return m_domain[domain];
281 }
282
284 const std::string variable = "DefaultVar");
285
287 GeometrySharedPtr geom, const std::string variable = "DefaultVar");
288
289 /// Sets expansions given field definitions
291 std::vector<LibUtilities::FieldDefinitionsSharedPtr> &fielddef);
292
293 /// Sets expansions given field definition, quadrature points.
295 std::vector<LibUtilities::FieldDefinitionsSharedPtr> &fielddef,
296 std::vector<std::vector<LibUtilities::PointsType>> &pointstype);
297
298 /// Sets expansions to have equispaced points
300 int npoints = 0);
301
302 /// Reset expansion to have specified polynomial order \a nmodes
304
305 /// Reset expansion to have specified point order \a
306 /// npts
308 /// This function sets the expansion #exp in map with
309 /// entry #variable
310
311 /// Set refinement info.
313 ExpansionInfoMapShPtr &expansionMap);
314
315 /// Perform the p-refinement in the selected elements
317 ExpansionInfoMapShPtr &expansionMap, RefRegion *&region,
318 GeometrySharedPtr geomVecIter);
319
320 inline void SetExpansionInfo(const std::string variable,
322
324
325 /// Sets the basis key for all expansions of the given shape.
328 std::string var = "DefaultVar");
329
333
334 inline bool SameExpansionInfo(const std::string var1,
335 const std::string var2);
336
337 inline bool ExpansionInfoDefined(const std::string var);
338
339 inline bool CheckForGeomInfo(std::string parameter);
340
341 inline const std::string GetGeomInfo(std::string parameter);
342
345 const int order);
346
350 ExpansionType type_z, const int nummodes_x, const int nummodes_y,
351 const int nummodes_z);
352
353 /* ---- Manipulation of mesh ---- */
355 {
356 return m_vertSet.size();
357 }
358
360 {
361 return m_vertSet[id];
362 }
363
365 {
366 return m_segGeoms[id];
367 }
368
370 {
371 return m_curvedEdges;
372 }
374 {
375 return m_curvedFaces;
376 }
377
378 SPATIAL_DOMAINS_EXPORT std::map<int, PointGeomSharedPtr> &GetAllPointGeoms()
379 {
380 return m_vertSet;
381 }
382 SPATIAL_DOMAINS_EXPORT std::map<int, SegGeomSharedPtr> &GetAllSegGeoms()
383 {
384 return m_segGeoms;
385 }
387 {
388 return m_triGeoms;
389 }
391 {
392 return m_quadGeoms;
393 }
395 {
396 return m_tetGeoms;
397 }
399 {
400 return m_pyrGeoms;
401 }
403 {
404 return m_prismGeoms;
405 }
407 {
408 return m_hexGeoms;
409 }
410 SPATIAL_DOMAINS_EXPORT std::unordered_map<int, GeometryLinkSharedPtr> &
412 {
413 return m_faceToElMap;
414 }
415
417
419 {
420 auto it1 = m_triGeoms.find(gID);
421 if (it1 != m_triGeoms.end())
422 {
423 return it1->second;
424 }
425
426 auto it2 = m_quadGeoms.find(gID);
427 if (it2 != m_quadGeoms.end())
428 {
429 return it2->second;
430 }
431
432 return Geometry2DSharedPtr();
433 };
434
437
440
442
444 {
445 return m_compOrder;
446 }
447
449 {
450 m_compOrder = p_compOrder;
451 }
452
454 {
455 return m_bndRegOrder;
456 }
457
459 {
460 m_bndRegOrder = p_bndRegOrder;
461 }
462
463 SPATIAL_DOMAINS_EXPORT std::map<int, MeshEntity> CreateMeshEntities();
465
467 {
468 return m_movement;
469 }
470
471 void Clear();
472
473 void PopulateFaceToElMap(Geometry3DSharedPtr element, int kNfaces);
474
475 void SetMeshPartitioned(bool meshPartitioned)
476 {
477 m_meshPartitioned = meshPartitioned;
478 }
479
480protected:
482 std::string GetCompositeString(CompositeSharedPtr comp);
483
486
489
491
498
502 bool m_meshPartitioned = false;
504
505 // Refinement attributes (class members)
506 /// Link the refinement id with the composites
507 std::map<int, CompositeMap> m_refComposite;
508 // std::map<int, LibUtilities::BasisKeyVector> m_refBasis;
509 /// Link the refinement id with the surface region data
510 std::map<int, RefRegion *> m_refRegion;
511 bool m_refFlag = false;
512
514 std::map<int, std::string> m_compositesLabels;
515 std::map<int, CompositeMap> m_domain;
517
519
520 std::unordered_map<int, GeometryLinkSharedPtr> m_faceToElMap;
521
522 TiXmlElement *m_xmlGeom;
523
526
527 struct GeomRTree;
528 std::unique_ptr<GeomRTree> m_boundingBoxTree;
530};
531typedef std::shared_ptr<MeshGraph> MeshGraphSharedPtr;
533
535
536/**
537 *
538 */
539void MeshGraph::SetExpansionInfo(const std::string variable,
541{
542 if (m_expansionMapShPtrMap.count(variable) != 0)
543 {
544 ASSERTL0(
545 false,
546 (std::string("ExpansionInfo field is already set for variable ") +
547 variable)
548 .c_str());
549 }
550 else
551 {
552 m_expansionMapShPtrMap[variable] = exp;
553 }
554}
555
556/**
557 *
558 */
560{
561 m_session = pSession;
562}
563
564/**
565 *
566 */
567inline bool MeshGraph::SameExpansionInfo(const std::string var1,
568 const std::string var2)
569{
570 ExpansionInfoMapShPtr expVec1 = m_expansionMapShPtrMap.find(var1)->second;
571 ExpansionInfoMapShPtr expVec2 = m_expansionMapShPtrMap.find(var2)->second;
572
573 if (expVec1.get() == expVec2.get())
574 {
575 return true;
576 }
577
578 return false;
579}
580
581/**
582 *
583 */
584inline bool MeshGraph::ExpansionInfoDefined(const std::string var)
585{
586 return m_expansionMapShPtrMap.count(var);
587}
588
589} // namespace Nektar::SpatialDomains
590
591#endif
#define ASSERTL0(condition, msg)
Definition: ErrorUtil.hpp:208
#define ASSERTL1(condition, msg)
Assert Level 1 – Debugging which is used whether in FULLDEBUG or DEBUG compilation mode....
Definition: ErrorUtil.hpp:242
#define SPATIAL_DOMAINS_EXPORT
Provides a generic Factory class.
2D geometry information
Definition: Geometry2D.h:66
3D geometry information
Definition: Geometry3D.h:65
Base class for a spectral/hp element mesh.
Definition: MeshGraph.h:181
void SetDomainRange(NekDouble xmin, NekDouble xmax, NekDouble ymin=NekConstants::kNekUnsetDouble, NekDouble ymax=NekConstants::kNekUnsetDouble, NekDouble zmin=NekConstants::kNekUnsetDouble, NekDouble zmax=NekConstants::kNekUnsetDouble)
Definition: MeshGraph.cpp:4070
std::map< int, SegGeomSharedPtr > & GetAllSegGeoms()
Definition: MeshGraph.h:382
bool CheckRange(Geometry2D &geom)
Check if goemetry is in range definition if activated.
Definition: MeshGraph.cpp:289
std::map< int, RefRegion * > m_refRegion
Link the refinement id with the surface region data.
Definition: MeshGraph.h:510
void SetCompositeOrdering(CompositeOrdering p_compOrder)
Definition: MeshGraph.h:448
int GetMeshDimension()
Dimension of the mesh (can be a 1D curve in 3D space).
Definition: MeshGraph.h:208
const std::string GetGeomInfo(std::string parameter)
void PopulateFaceToElMap(Geometry3DSharedPtr element, int kNfaces)
Given a 3D geometry object #element, populate the face to element map m_faceToElMap which maps faces ...
Definition: MeshGraph.cpp:3913
void SetRefinementInfo(ExpansionInfoMapShPtr &expansionMap)
This function sets the expansion #exp in map with entry #variable.
Definition: MeshGraph.cpp:2667
Geometry2DSharedPtr GetGeometry2D(int gID)
Definition: MeshGraph.h:418
std::map< int, std::map< int, CompositeSharedPtr > > & GetDomain()
Definition: MeshGraph.h:271
void SetExpansionInfoToEvenlySpacedPoints(int npoints=0)
Sets expansions to have equispaced points.
Definition: MeshGraph.cpp:1431
std::map< int, CompositeSharedPtr > & GetComposites()
Definition: MeshGraph.h:261
std::unordered_map< int, GeometryLinkSharedPtr > & GetAllFaceToElMap()
Definition: MeshGraph.h:411
LibUtilities::SessionReaderSharedPtr m_session
Definition: MeshGraph.h:484
std::map< int, CompositeMap > m_domain
Definition: MeshGraph.h:515
void SetPartition(SpatialDomains::MeshGraphSharedPtr graph)
Definition: MeshGraph.cpp:115
std::unique_ptr< GeomRTree > m_boundingBoxTree
Definition: MeshGraph.h:528
ExpansionInfoMapShPtr SetUpExpansionInfoMap()
Definition: MeshGraph.cpp:2517
std::map< int, CompositeSharedPtr > & GetDomain(int domain)
Definition: MeshGraph.h:276
void SetExpansionInfoToPointOrder(int npts)
Reset expansion to have specified point order npts.
Definition: MeshGraph.cpp:1506
bool SameExpansionInfo(const std::string var1, const std::string var2)
Definition: MeshGraph.h:567
CompositeOrdering m_compOrder
Definition: MeshGraph.h:524
std::map< int, CompositeMap > m_refComposite
Link the refinement id with the composites.
Definition: MeshGraph.h:507
bool ExpansionInfoDefined(const std::string var)
Definition: MeshGraph.h:584
void SetMeshPartitioned(bool meshPartitioned)
Definition: MeshGraph.h:475
void GetCompositeList(const std::string &compositeStr, CompositeMap &compositeVector) const
Definition: MeshGraph.cpp:536
void Empty(int dim, int space)
Definition: MeshGraph.h:186
const ExpansionInfoMap & GetExpansionInfo(const std::string variable="DefaultVar")
Definition: MeshGraph.cpp:589
GeometryLinkSharedPtr GetElementsFromEdge(Geometry1DSharedPtr edge)
Definition: MeshGraph.cpp:3840
GeometrySharedPtr GetCompositeItem(int whichComposite, int whichItem)
Definition: MeshGraph.cpp:497
ExpansionInfoMapShPtrMap m_expansionMapShPtrMap
Definition: MeshGraph.h:518
void PRefinementElmts(ExpansionInfoMapShPtr &expansionMap, RefRegion *&region, GeometrySharedPtr geomVecIter)
Perform the p-refinement in the selected elements.
Definition: MeshGraph.cpp:2606
int GetSpaceDimension()
Dimension of the space (can be a 1D curve in 3D space).
Definition: MeshGraph.h:214
MovementSharedPtr m_movement
Definition: MeshGraph.h:529
BndRegionOrdering & GetBndRegionOrdering()
Definition: MeshGraph.h:453
std::string GetCompositeString(CompositeSharedPtr comp)
Returns a string representation of a composite.
Definition: MeshGraph.cpp:2561
void ResetExpansionInfoToBasisKey(ExpansionInfoMapShPtr &expansionMap, LibUtilities::ShapeType shape, LibUtilities::BasisKeyVector &keys)
Definition: MeshGraph.cpp:1551
void SetExpansionInfoToNumModes(int nmodes)
Reset expansion to have specified polynomial order nmodes.
Definition: MeshGraph.cpp:1473
std::unordered_map< int, GeometryLinkSharedPtr > m_faceToElMap
Definition: MeshGraph.h:520
MovementSharedPtr & GetMovement()
Definition: MeshGraph.h:466
CompositeSharedPtr GetComposite(int whichComposite)
Definition: MeshGraph.h:247
void SetExpansionInfo(std::vector< LibUtilities::FieldDefinitionsSharedPtr > &fielddef)
Sets expansions given field definitions.
Definition: MeshGraph.cpp:642
void SetBndRegionOrdering(BndRegionOrdering p_bndRegOrder)
Definition: MeshGraph.h:458
CompositeOrdering & GetCompositeOrdering()
Definition: MeshGraph.h:443
std::map< int, MeshEntity > CreateMeshEntities()
Create mesh entities for this graph.
Definition: MeshGraph.cpp:3944
LibUtilities::BasisKeyVector DefineBasisKeyFromExpansionTypeHomo(GeometrySharedPtr in, ExpansionType type_x, ExpansionType type_y, ExpansionType type_z, const int nummodes_x, const int nummodes_y, const int nummodes_z)
Definition: MeshGraph.cpp:2283
std::map< int, PointGeomSharedPtr > & GetAllPointGeoms()
Definition: MeshGraph.h:378
bool CheckForGeomInfo(std::string parameter)
SegGeomSharedPtr GetSegGeom(int id)
Definition: MeshGraph.h:364
CompositeDescriptor CreateCompositeDescriptor()
Definition: MeshGraph.cpp:4044
GeometryLinkSharedPtr GetElementsFromFace(Geometry2DSharedPtr face)
Definition: MeshGraph.cpp:3895
void ReadRefinementInfo()
Read refinement info.
Definition: MeshGraph.cpp:2710
void SetBasisKey(LibUtilities::ShapeType shape, LibUtilities::BasisKeyVector &keys, std::string var="DefaultVar")
Sets the basis key for all expansions of the given shape.
Definition: MeshGraph.cpp:1543
std::map< int, std::string > m_compositesLabels
Definition: MeshGraph.h:514
std::vector< int > GetElementsContainingPoint(PointGeomSharedPtr p)
Definition: MeshGraph.cpp:235
PointGeomSharedPtr GetVertex(int id)
Definition: MeshGraph.h:359
PrismGeomMap & GetAllPrismGeoms()
Definition: MeshGraph.h:402
std::map< int, std::string > & GetCompositesLabels()
Definition: MeshGraph.h:266
static LibUtilities::BasisKeyVector DefineBasisKeyFromExpansionType(GeometrySharedPtr in, ExpansionType type, const int order)
Definition: MeshGraph.cpp:1568
void SetSession(LibUtilities::SessionReaderSharedPtr pSession)
Definition: MeshGraph.h:559
LibUtilities::DomainRangeShPtr m_domainRange
Definition: MeshGraph.h:516
BndRegionOrdering m_bndRegOrder
Definition: MeshGraph.h:525
Abstract base class for the refinement surface region.
Definition: RefRegion.h:51
std::vector< BasisKey > BasisKeyVector
Name for a vector of BasisKeys.
std::shared_ptr< SessionReader > SessionReaderSharedPtr
std::shared_ptr< DomainRange > DomainRangeShPtr
Definition: DomainRange.h:64
static const NekDouble kNekUnsetDouble
std::map< int, TriGeomSharedPtr > TriGeomMap
Definition: TriGeom.h:57
std::map< std::string, std::string > GeomInfoMap
Definition: MeshGraph.h:164
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::map< int, std::pair< LibUtilities::ShapeType, std::vector< int > > > CompositeDescriptor
Definition: MeshGraph.h:61
std::shared_ptr< std::vector< std::pair< GeometrySharedPtr, int > > > GeometryLinkSharedPtr
Definition: MeshGraph.h:166
std::map< int, std::vector< unsigned int > > BndRegionOrdering
Definition: MeshGraph.h:108
std::shared_ptr< Composite > CompositeSharedPtr
Definition: MeshGraph.h:135
std::shared_ptr< ExpansionInfoMap > ExpansionInfoMapShPtr
Definition: MeshGraph.h:143
std::map< int, SegGeomSharedPtr > SegGeomMap
Definition: SegGeom.h:49
std::shared_ptr< Movement > MovementSharedPtr
Definition: MeshGraph.h:177
std::unordered_map< int, CurveSharedPtr > CurveMap
Definition: Curve.hpp:59
LibUtilities::NekFactory< std::string, MeshGraph > MeshGraphFactory
Definition: MeshGraph.h:532
std::shared_ptr< SegGeom > SegGeomSharedPtr
Definition: Geometry2D.h:59
std::map< int, TetGeomSharedPtr > TetGeomMap
Definition: TetGeom.h:84
std::shared_ptr< ExpansionInfo > ExpansionInfoShPtr
Definition: MeshGraph.h:140
const std::string kExpansionTypeStr[]
Definition: MeshGraph.h:88
std::shared_ptr< MeshGraph > MeshGraphSharedPtr
Definition: MeshGraph.h:174
std::map< std::string, std::string > MeshMetaDataMap
Definition: MeshGraph.h:171
std::map< int, PrismGeomSharedPtr > PrismGeomMap
Definition: PrismGeom.h:83
std::shared_ptr< PointGeom > PointGeomSharedPtr
Definition: Geometry.h:57
std::shared_ptr< Geometry2D > Geometry2DSharedPtr
Definition: Geometry.h:62
std::shared_ptr< Geometry > GeometrySharedPtr
Definition: Geometry.h:51
MeshGraphFactory & GetMeshGraphFactory()
Definition: MeshGraph.cpp:77
std::shared_ptr< Geometry1D > Geometry1DSharedPtr
Definition: Geometry.h:61
std::map< std::string, ExpansionInfoMapShPtr > ExpansionInfoMapShPtrMap
Definition: MeshGraph.h:144
std::map< int, HexGeomSharedPtr > HexGeomMap
Definition: HexGeom.h:85
std::map< int, PointGeomSharedPtr > PointGeomMap
Definition: PointGeom.h:51
std::map< int, ExpansionInfoShPtr > ExpansionInfoMap
Definition: MeshGraph.h:141
std::shared_ptr< Geometry3D > Geometry3DSharedPtr
Definition: Geometry3D.h:50
std::map< int, CompositeSharedPtr > CompositeMap
Definition: MeshGraph.h:136
double NekDouble
std::vector< std::shared_ptr< Geometry > > m_geomVec
Definition: MeshGraph.h:132
ExpansionInfo(GeometrySharedPtr geomShPtr, const LibUtilities::BasisKeyVector basiskeyvec)
Definition: MeshGraph.h:148
LibUtilities::BasisKeyVector m_basisKeyVector
Definition: MeshGraph.h:161
ExpansionInfo(ExpansionInfoShPtr ExpInfo)
Definition: MeshGraph.h:154