Nektar++
Field.hpp
Go to the documentation of this file.
1 ////////////////////////////////////////////////////////////////////////////////
2 //
3 // File: Field.hpp
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: Field converter module base classes.
32 //
33 ////////////////////////////////////////////////////////////////////////////////
34 
35 #ifndef FIELDUTILS_FIELD
36 #define FIELDUTILS_FIELD
37 
38 #include <memory>
39 
46 
53 
54 #include "FieldUtilsDeclspec.h"
55 
56 namespace Nektar
57 {
58 namespace FieldUtils
59 {
60 
61 struct Field
62 {
67  m_addNormals(false), m_fieldPts(LibUtilities::NullPtsField)
68  {
69  }
70 
72  {
73  if (m_comm)
74  {
75  m_comm->Finalise();
76  }
77  }
78  bool m_verbose;
79  std::vector<LibUtilities::FieldDefinitionsSharedPtr> m_fielddef;
80  std::vector<std::vector<double> > m_data;
81  std::vector<MultiRegions::ExpListSharedPtr> m_exp;
82  std::vector<std::string> m_variables;
83 
85 
88 
90 
91  bool m_useFFT;
92 
96  std::map<std::string, std::vector<std::string> > m_inputfiles;
97 
99  std::vector<unsigned int> m_bndRegionsToWrite;
101 
103 
105 
107  int NumHomogeneousDir, bool fldfilegiven = false)
108  {
109 
111 
112  // Set up expansion list
113  int expdim = m_graph->GetMeshDimension();
114  bool dealiasing = false;
115 
116  m_session->MatchSolverInfo("USEFFT", "FFTW", m_useFFT, false);
117 
118  switch (expdim)
119  {
120  case 1:
121  {
122  ASSERTL0(NumHomogeneousDir <= 2,
123  "Quasi-3D approach is only set up for 1 or 2 "
124  "homogeneous directions");
125 
126  if (NumHomogeneousDir == 1)
127  {
129 
130  // Define Homogeneous expansion
131  int nplanes;
132  NekDouble ly;
134 
135  if (fldfilegiven)
136  {
137  nplanes = m_fielddef[0]->m_numModes[1];
138  ly = m_fielddef[0]->m_homogeneousLengths[0];
139  btype = m_fielddef[0]->m_basis[1];
140  }
141  else
142  {
143  m_session->LoadParameter("HomModesZ", nplanes);
144  m_session->LoadParameter("LY", ly);
145  btype = LibUtilities::eFourier;
146  }
147 
148  // Choose points to be at evenly spaced points at
149  // nplanes points
150  const LibUtilities::PointsKey Pkey(
152 
153  const LibUtilities::BasisKey Bkey(btype, nplanes, Pkey);
154 
155  if (m_declareExpansionAsContField ||
156  m_declareExpansionAsDisContField)
157  {
158  ASSERTL0(false, "ContField2DHomogeneous1D or "
159  "DisContField2DHomogenenous1D has "
160  "not been implemented");
161  }
162 
163  Exp2DH1 =
165  AllocateSharedPtr(m_session, Bkey, ly, m_useFFT,
166  dealiasing, m_graph,
168  exp = Exp2DH1;
169  }
170  else if (NumHomogeneousDir == 2)
171  {
173 
174  int nylines, nzlines;
175  NekDouble ly, lz;
176  LibUtilities::BasisType btype1, btype2;
177 
178  if (fldfilegiven)
179  {
180  nylines = m_fielddef[0]->m_numModes[1];
181  nzlines = m_fielddef[0]->m_numModes[2];
182  ly = m_fielddef[0]->m_homogeneousLengths[0];
183  lz = m_fielddef[0]->m_homogeneousLengths[1];
184  btype1 = m_fielddef[0]->m_basis[1];
185  btype2 = m_fielddef[0]->m_basis[2];
186  }
187  else
188  {
189  m_session->LoadParameter("HomModesY", nylines);
190  m_session->LoadParameter("HomModesZ", nzlines);
191  m_session->LoadParameter("LY", ly);
192  m_session->LoadParameter("LZ", lz);
193  btype1 = LibUtilities::eFourier;
194  btype2 = LibUtilities::eFourier;
195  }
196 
197  // Choose points to be at evenly spaced points at
198  // nplanes points
199  const LibUtilities::PointsKey PkeyY(
201  const LibUtilities::BasisKey BkeyY(btype1, nylines, PkeyY);
202 
203  const LibUtilities::PointsKey PkeyZ(
205  const LibUtilities::BasisKey BkeyZ(btype2, nzlines, PkeyZ);
206 
207  if (m_declareExpansionAsContField)
208  {
209  Exp3DH2 = MemoryManager<
211  AllocateSharedPtr(m_session, BkeyY, BkeyZ, ly, lz,
212  m_useFFT, dealiasing, m_graph,
213  m_session->GetVariable(0),
215  }
216  else if (m_declareExpansionAsDisContField)
217  {
218  Exp3DH2 = MemoryManager<
220  AllocateSharedPtr(m_session, BkeyY, BkeyZ, ly, lz,
221  m_useFFT, dealiasing, m_graph,
222  m_session->GetVariable(0),
224  }
225  else
226  {
227  Exp3DH2 = MemoryManager<
229  AllocateSharedPtr(m_session, BkeyY, BkeyZ, ly, lz,
230  m_useFFT, dealiasing, m_graph,
232  }
233 
234  exp = Exp3DH2;
235  }
236  else
237  {
239 
240  if (m_declareExpansionAsContField)
241  {
243  AllocateSharedPtr(m_session, m_graph,
244  m_session->GetVariable(0),
246  }
247  else if (m_declareExpansionAsDisContField)
248  {
250  AllocateSharedPtr(m_session, m_graph,
251  m_session->GetVariable(0),
252  true,
254  }
255  else
256  {
258  AllocateSharedPtr(m_session, m_graph,
259  true,
261  }
262 
263  exp = Exp1D;
264  }
265  }
266  break;
267  case 2:
268  {
269  ASSERTL0(NumHomogeneousDir <= 1,
270  "NumHomogeneousDir is only set up for 1");
271 
272  if (NumHomogeneousDir == 1)
273  {
275 
276  // Define Homogeneous expansion
277  int nplanes;
278  NekDouble lz;
282 
283  if (fldfilegiven)
284  {
285  nplanes = m_fielddef[0]->m_numModes[2];
286  lz = m_fielddef[0]->m_homogeneousLengths[0];
287  btype = m_fielddef[0]->m_basis[2];
288 
290  {
291  btype = LibUtilities::eFourier;
292  m_fielddef[0]->m_basis[2] =
294  if (nplanes <= 2)
295  {
296  nplanes = 4;
297  }
298  }
299  else if (btype == LibUtilities::eFourierHalfModeRe &&
300  nplanes == 1)
301  {
303  }
304  }
305  else
306  {
307  m_session->LoadParameter("HomModesZ", nplanes);
308  m_session->LoadParameter("LZ", lz);
309  btype = LibUtilities::eFourier;
310  }
311 
312  // Choose points to be at evenly spaced points at
313  // nplanes points
314  const LibUtilities::PointsKey Pkey(
315  nplanes, ptype);
316 
317  const LibUtilities::BasisKey Bkey(btype, nplanes, Pkey);
318 
319  if (m_declareExpansionAsContField)
320  {
321  Exp3DH1 = MemoryManager<
323  AllocateSharedPtr(m_session, Bkey, lz, m_useFFT,
324  dealiasing, m_graph,
325  m_session->GetVariable(0),
327  }
328  else if (m_declareExpansionAsDisContField)
329  {
330  Exp3DH1 = MemoryManager<
332  AllocateSharedPtr(m_session, Bkey, lz, m_useFFT,
333  dealiasing, m_graph,
334  m_session->GetVariable(0),
336  }
337  else
338  {
339  Exp3DH1 = MemoryManager<
341  AllocateSharedPtr(m_session, Bkey, lz, m_useFFT,
342  dealiasing, m_graph,
343  "DefaultVar",
345  }
346  exp = Exp3DH1;
347  }
348  else
349  {
351 
352  if (m_declareExpansionAsContField)
353  {
355  AllocateSharedPtr(m_session, m_graph,
356  m_session->GetVariable(0),
357  true,false,
359  }
360  else if (m_declareExpansionAsDisContField)
361  {
363  AllocateSharedPtr(m_session, m_graph,
364  m_session->GetVariable(0),
365  true,true,
367  }
368  else
369  {
371  AllocateSharedPtr(m_session, m_graph,
372  true,
373  "DefaultVar",
375  }
376 
377  exp = Exp2D;
378  }
379  }
380  break;
381  case 3:
382  {
384 
385  if (m_declareExpansionAsContField)
386  {
388  AllocateSharedPtr(m_session, m_graph,
389  m_session->GetVariable(0),
390  false,
392  }
393  else if (m_declareExpansionAsDisContField)
394  {
396  AllocateSharedPtr(m_session, m_graph,
397  m_session->GetVariable(0),
398  true,
400  }
401  else
402  {
403  Exp3D = MemoryManager<
404  MultiRegions::ExpList3D>::AllocateSharedPtr(
405  m_session,
406  m_graph,
407  "DefaultVar",
409  }
410 
411  exp = Exp3D;
412  }
413  break;
414  default:
415  ASSERTL0(false, "Expansion dimension not recognised");
416  break;
417  }
418 
419  return exp;
420  };
421 
422  /**
423  * @brief Construct a FieldIO object for the file @p filename.
424  *
425  * This routine constructs an appropriate FieldIO object for a filename
426  * through the LibUtilities::FieldIO::GetFileType function to detect the
427  * file format. The result is then cached in Field::m_fld to avoid needing
428  * to repeatedly construct the object.
429  *
430  * @param filename Filename to open.
431  * @return Reader for @p filename.
432  */
434  std::string filename)
435  {
437  std::string fmt = LibUtilities::FieldIO::GetFileType(filename, c);
438  auto it = m_fld.find(fmt);
439 
440  if (it == m_fld.end())
441  {
444  m_fld[fmt] = fld;
445  return fld;
446  }
447  else
448  {
449  return it->second;
450  }
451  }
452 
454  int NumHomogeneousDir,
455  std::string var = "DefaultVar",
456  bool NewField = false)
457  {
458  if (var.compare("DefaultVar") == 0 && m_requireBoundaryExpansion)
459  {
460  if (m_session->GetVariables().size())
461  {
462  var = m_session->GetVariables()[0];
463  }
464  }
466  switch (m_graph->GetMeshDimension())
467  {
468  case 1:
469  {
470  if (NumHomogeneousDir == 1)
471  {
472  ASSERTL0(!(m_declareExpansionAsContField ||
473  m_declareExpansionAsDisContField),
474  "ContField2DHomogeneous1D or "
475  "DisContField2DHomogenenous1D has not been "
476  "implemented");
477 
479  std::dynamic_pointer_cast<
481 
483  AllocateSharedPtr(*tmp2);
484  }
485  else if (NumHomogeneousDir == 2)
486  {
487  if (m_declareExpansionAsContField)
488  {
490  std::dynamic_pointer_cast<
492  m_exp[0]);
493 
494  tmp = MemoryManager<
496  AllocateSharedPtr(*tmp2);
497  }
498  else if (m_declareExpansionAsDisContField)
499  {
501  tmp2 = std::dynamic_pointer_cast<
503  m_exp[0]);
504 
505  tmp = MemoryManager<
507  AllocateSharedPtr(*tmp2);
508  }
509  else
510  {
512  std::dynamic_pointer_cast<
514 
515  tmp = MemoryManager<
517  AllocateSharedPtr(*tmp2);
518  }
519  }
520  else
521  {
522  if (m_declareExpansionAsContField)
523  {
525  std::dynamic_pointer_cast<
526  MultiRegions::ContField1D>(m_exp[0]);
527 
529  AllocateSharedPtr(m_session, m_graph, var);
530  }
531  else if (m_declareExpansionAsDisContField)
532  {
534  std::dynamic_pointer_cast<
535  MultiRegions::DisContField1D>(m_exp[0]);
536 
538  AllocateSharedPtr(m_session, m_graph, var);
539  }
540  else
541  {
543  std::dynamic_pointer_cast<
544  MultiRegions::ExpList1D>(m_exp[0]);
545 
546  tmp = MemoryManager<
547  MultiRegions::ExpList1D>::AllocateSharedPtr(*tmp2);
548  }
549  }
550  }
551  break;
552  case 2:
553  {
554  if (NumHomogeneousDir == 1)
555  {
556  if (m_declareExpansionAsContField)
557  {
558  if (NewField)
559  {
560  bool dealiasing = false;
561 
562  tmp = MemoryManager<
564  AllocateSharedPtr(
565  m_session, m_exp[0]
566  ->GetHomogeneousBasis()
567  ->GetBasisKey(),
568  m_exp[0]->GetHomoLen(), m_useFFT,
569  dealiasing, m_graph, var);
570  }
571  else
572  {
574  tmp2 = std::dynamic_pointer_cast<
576  m_exp[0]);
577 
578  ASSERTL0(tmp2, "Failed to type cast m_exp[0]");
579  tmp = MemoryManager<
581  AllocateSharedPtr(*tmp2, m_graph, var);
582  }
583  }
584  else if (m_declareExpansionAsDisContField)
585  {
586  if (NewField)
587  {
588  bool dealiasing = false;
589 
590  tmp = MemoryManager<
592  AllocateSharedPtr(
593  m_session, m_exp[0]
594  ->GetHomogeneousBasis()
595  ->GetBasisKey(),
596  m_exp[0]->GetHomoLen(), m_useFFT,
597  dealiasing, m_graph, var);
598  }
599  else
600  {
602  tmp2 = std::dynamic_pointer_cast<
604  m_exp[0]);
605  ASSERTL0(tmp2, "Failed to type cast m_exp[0]");
606 
607  tmp = MemoryManager<
609  AllocateSharedPtr(*tmp2);
610  }
611  }
612  else
613  {
614  if (NewField)
615  {
616  bool dealiasing = false;
617 
618  tmp = MemoryManager<
620  AllocateSharedPtr(
621  m_session, m_exp[0]
622  ->GetHomogeneousBasis()
623  ->GetBasisKey(),
624  m_exp[0]->GetHomoLen(), m_useFFT,
625  dealiasing, m_graph);
626  }
627  else
628  {
630  std::dynamic_pointer_cast<
632  m_exp[0]);
633  ASSERTL0(tmp2, "Failed to type cast m_exp[0]");
634 
635  tmp = MemoryManager<
637  AllocateSharedPtr(*tmp2);
638  }
639  }
640  }
641  else
642  {
643  if (m_declareExpansionAsContField)
644  {
645  if (NewField)
646  {
648  AllocateSharedPtr(m_session, m_graph, var);
649  }
650  else // call copy constructor
651  {
652 
654  std::dynamic_pointer_cast<
655  MultiRegions::ContField2D>(m_exp[0]);
656 
658  AllocateSharedPtr(*tmp2, m_graph, var);
659  }
660  }
661  else if (m_declareExpansionAsDisContField)
662  {
663  if (NewField)
664  {
666  AllocateSharedPtr(m_session, m_graph, var);
667  }
668  else // call copy constructor
669  {
671  std::dynamic_pointer_cast<
672  MultiRegions::DisContField2D>(m_exp[0]);
673 
675  AllocateSharedPtr(*tmp2, m_graph, var);
676  }
677  }
678  else
679  {
681  std::dynamic_pointer_cast<
682  MultiRegions::ExpList2D>(m_exp[0]);
683 
684  tmp = MemoryManager<
685  MultiRegions::ExpList2D>::AllocateSharedPtr(*tmp2);
686  }
687  }
688  }
689  break;
690  case 3:
691  {
692  if (m_declareExpansionAsContField)
693  {
694  if (NewField)
695  {
697  AllocateSharedPtr(m_session, m_graph, var);
698  }
699  else
700  {
702  std::dynamic_pointer_cast<
703  MultiRegions::ContField3D>(m_exp[0]);
704 
706  AllocateSharedPtr(*tmp2, m_graph, var);
707  }
708  }
709  else if (m_declareExpansionAsDisContField)
710  {
711  if (NewField)
712  {
714  AllocateSharedPtr(m_session, m_graph, var);
715  }
716  else
717  {
719  std::dynamic_pointer_cast<
720  MultiRegions::DisContField3D>(m_exp[0]);
721 
723  AllocateSharedPtr(*tmp2, m_graph, var);
724  }
725  }
726  else
727  {
729  std::dynamic_pointer_cast<MultiRegions::ExpList3D>(
730  m_exp[0]);
731 
732  tmp = MemoryManager<
733  MultiRegions::ExpList3D>::AllocateSharedPtr(*tmp2);
734  }
735  }
736  break;
737  default:
738  ASSERTL0(false, "Expansion dimension not recognised");
739  break;
740  }
741 
742  return tmp;
743  }
744 
746  {
749  m_fieldPts = LibUtilities::NullPtsField;
750  m_exp.clear();
751  m_fielddef = std::vector<LibUtilities::FieldDefinitionsSharedPtr>();
752  m_data = std::vector<std::vector<NekDouble> > ();
753  m_variables.clear();
754  }
755 
756 private:
757  /// Map to store FieldIO instances. Key is the reader type, value is the
758  /// FieldIO object.
759  std::map<std::string, LibUtilities::FieldIOSharedPtr> m_fld;
760 };
761 
762 typedef std::shared_ptr<Field> FieldSharedPtr;
763 }
764 }
765 
766 #endif
LibUtilities::CommSharedPtr m_comm
Definition: Field.hpp:93
std::shared_ptr< DisContField2D > DisContField2DSharedPtr
FIELD_UTILS_EXPORT MultiRegions::ExpListSharedPtr SetUpFirstExpList(int NumHomogeneousDir, bool fldfilegiven=false)
Definition: Field.hpp:106
#define ASSERTL0(condition, msg)
Definition: ErrorUtil.hpp:216
std::shared_ptr< MeshGraph > MeshGraphSharedPtr
Definition: MeshGraph.h:163
std::shared_ptr< DisContField3DHomogeneous1D > DisContField3DHomogeneous1DSharedPtr
std::vector< std::string > m_variables
Definition: Field.hpp:82
std::shared_ptr< ContField1D > ContField1DSharedPtr
Definition: ContField1D.h:238
std::shared_ptr< DisContField3D > DisContField3DSharedPtr
FIELD_UTILS_EXPORT ~Field()
Definition: Field.hpp:71
std::shared_ptr< ExpList > ExpListSharedPtr
Shared pointer to an ExpList object.
bool m_declareExpansionAsDisContField
Definition: Field.hpp:87
General purpose memory allocation routines with the ability to allocate from thread specific memory p...
std::shared_ptr< ContField3DHomogeneous2D > ContField3DHomogeneous2DSharedPtr
FIELD_UTILS_EXPORT MultiRegions::ExpListSharedPtr AppendExpList(int NumHomogeneousDir, std::string var="DefaultVar", bool NewField=false)
Definition: Field.hpp:453
std::map< std::string, LibUtilities::FieldIOSharedPtr > m_fld
Map to store FieldIO instances. Key is the reader type, value is the FieldIO object.
Definition: Field.hpp:759
std::shared_ptr< ContField2D > ContField2DSharedPtr
Definition: ContField2D.h:289
LibUtilities::SessionReaderSharedPtr m_session
Definition: Field.hpp:94
std::shared_ptr< Comm > CommSharedPtr
Pointer to a Communicator object.
Definition: Comm.h:53
std::shared_ptr< ExpList3DHomogeneous1D > ExpList3DHomogeneous1DSharedPtr
Shared pointer to an ExpList3DHomogeneous1D object.
Fourier Expansion .
Definition: BasisType.h:53
std::shared_ptr< Field > FieldSharedPtr
Definition: Field.hpp:762
std::vector< std::vector< double > > m_data
Definition: Field.hpp:80
std::shared_ptr< ExpList2D > ExpList2DSharedPtr
Shared pointer to an ExpList2D object.
Definition: ExpList2D.h:48
FieldIOFactory & GetFieldIOFactory()
Returns the FieldIO factory.
Definition: FieldIO.cpp:72
std::map< std::string, std::string > FieldMetaDataMap
Definition: FieldIO.h:52
SpatialDomains::MeshGraphSharedPtr m_graph
Definition: Field.hpp:95
bool m_declareExpansionAsContField
Definition: Field.hpp:86
Abstraction of a two-dimensional multi-elemental expansion which is merely a collection of local expa...
1D Evenly-spaced points using Lagrange polynomial
Definition: PointsType.h:64
std::vector< unsigned int > m_bndRegionsToWrite
Definition: Field.hpp:99
std::shared_ptr< ContField3D > ContField3DSharedPtr
Definition: ContField3D.h:208
std::vector< LibUtilities::FieldDefinitionsSharedPtr > m_fielddef
Definition: Field.hpp:79
tBaseSharedPtr CreateInstance(tKey idKey, tParam... args)
Create an instance of the class referred to by idKey.
Definition: NekFactory.hpp:144
1D Evenly-spaced points using Fourier Fit
Definition: PointsType.h:65
std::shared_ptr< ExpList2DHomogeneous1D > ExpList2DHomogeneous1DSharedPtr
Shared pointer to an ExpList2DHomogeneous1D object.
std::shared_ptr< PtsField > PtsFieldSharedPtr
Definition: PtsField.h:179
Fourier Modified expansions with just the real part of the first mode .
Definition: BasisType.h:60
FIELD_UTILS_EXPORT void ClearField()
Definition: Field.hpp:745
This class is the abstraction of a global continuous two- dimensional spectral/hp element expansion w...
Definition: ContField2D.h:55
Abstraction of a global continuous one-dimensional spectral/hp element expansion which approximates t...
Definition: ContField1D.h:55
static const std::string GetFileType(const std::string &filename, CommSharedPtr comm)
Determine file type of given input file.
Definition: FieldIO.cpp:97
static std::shared_ptr< DataType > AllocateSharedPtr(const Args &...args)
Allocate a shared pointer from the memory pool.
This class is the abstraction of a global discontinuous two- dimensional spectral/hp element expansio...
FIELD_UTILS_EXPORT LibUtilities::FieldIOSharedPtr FieldIOForFile(std::string filename)
Construct a FieldIO object for the file filename.
Definition: Field.hpp:433
Defines a specification for a set of points.
Definition: Points.h:59
double NekDouble
std::shared_ptr< DisContField3DHomogeneous2D > DisContField3DHomogeneous2DSharedPtr
std::vector< MultiRegions::ExpListSharedPtr > m_exp
Definition: Field.hpp:81
static PtsFieldSharedPtr NullPtsField
Definition: PtsField.h:180
std::shared_ptr< DisContField1D > DisContField1DSharedPtr
#define FIELD_UTILS_EXPORT
Fourier ModifiedExpansion with just the first mode .
Definition: BasisType.h:59
std::shared_ptr< ExpList3D > ExpList3DSharedPtr
Shared pointer to an ExpList3D object.
Definition: ExpList3D.h:111
This class is the abstraction of a one-dimensional multi-elemental expansions which is merely a colle...
Definition: ExpList1D.h:58
Abstraction of a two-dimensional multi-elemental expansion which is merely a collection of local expa...
Definition: ExpList2D.h:57
Abstraction of a three-dimensional multi-elemental expansion which is merely a collection of local ex...
Definition: ExpList3D.h:48
std::map< std::string, std::vector< std::string > > m_inputfiles
Definition: Field.hpp:96
LibUtilities::FieldMetaDataMap m_fieldMetaDataMap
Definition: Field.hpp:104
std::shared_ptr< FieldIO > FieldIOSharedPtr
Definition: FieldIO.h:306
LibUtilities::PtsFieldSharedPtr m_fieldPts
Definition: Field.hpp:102
std::shared_ptr< ExpList1D > ExpList1DSharedPtr
Shared pointer to an ExpList1D object.
Definition: ExpList1D.h:49
Abstraction of a one-dimensional multi-elemental expansion which is merely a collection of local expa...
Abstraction of a two-dimensional multi-elemental expansion which is merely a collection of local expa...
std::shared_ptr< ContField3DHomogeneous1D > ContField3DHomogeneous1DSharedPtr
Describes the specification for a Basis.
Definition: Basis.h:49
std::shared_ptr< SessionReader > SessionReaderSharedPtr
std::shared_ptr< ExpList3DHomogeneous2D > ExpList3DHomogeneous2DSharedPtr
Shared pointer to an ExpList3DHomogeneous2D object.
FIELD_UTILS_EXPORT Field()
Definition: Field.hpp:63