Nektar++
MappingXofXZ.h
Go to the documentation of this file.
1 ///////////////////////////////////////////////////////////////////////////////
2 //
3 // File: MappingXofXZ.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: Mapping of the type X = X(x,z)
32 //
33 ///////////////////////////////////////////////////////////////////////////////
34 
35 #ifndef NEKTAR_GLOBALMAPPING_MAPPINGXOFXZ
36 #define NEKTAR_GLOBALMAPPING_MAPPINGXOFXZ
37 
38 #include <string>
39 
41 #include <GlobalMapping/Mapping.h>
44 #include <MultiRegions/ExpList.h>
45 
46 namespace Nektar
47 {
48 namespace GlobalMapping
49 {
50 
51 class MappingXofXZ : public Mapping
52 {
53 public:
54  friend class MemoryManager<MappingXofXZ>;
55 
56  /// Creates an instance of this class
61  const TiXmlElement *pMapping)
62  {
65  p->InitObject(pFields, pMapping);
66  return p;
67  }
68 
69  /// Name of the class
70  static std::string className;
71 
72 protected:
73  // Constructor
76 
77  // Virtual functions
79  virtual void v_InitObject(
81  const TiXmlElement *pMapping) override;
82 
84  const Array<OneD, Array<OneD, NekDouble>> &inarray,
85  Array<OneD, Array<OneD, NekDouble>> &outarray) override;
86 
88  const Array<OneD, Array<OneD, NekDouble>> &inarray,
89  Array<OneD, Array<OneD, NekDouble>> &outarray) override;
90 
92  const Array<OneD, Array<OneD, NekDouble>> &inarray,
93  Array<OneD, Array<OneD, NekDouble>> &outarray) override;
94 
96  const Array<OneD, Array<OneD, NekDouble>> &inarray,
97  Array<OneD, Array<OneD, NekDouble>> &outarray) override;
98 
100  Array<OneD, NekDouble> &outarray) override;
101 
103  const Array<OneD, Array<OneD, NekDouble>> &inarray,
104  Array<OneD, NekDouble> &outarray) override;
105 
107  Array<OneD, Array<OneD, NekDouble>> &outarray) override;
108 
110  Array<OneD, Array<OneD, NekDouble>> &outarray) override;
111 
112  GLOBAL_MAPPING_EXPORT virtual void v_LowerIndex(
113  const Array<OneD, Array<OneD, NekDouble>> &inarray,
114  Array<OneD, Array<OneD, NekDouble>> &outarray) override;
115 
116  GLOBAL_MAPPING_EXPORT virtual void v_RaiseIndex(
117  const Array<OneD, Array<OneD, NekDouble>> &inarray,
118  Array<OneD, Array<OneD, NekDouble>> &outarray) override;
119 
121  const Array<OneD, Array<OneD, NekDouble>> &inarray,
122  Array<OneD, Array<OneD, NekDouble>> &outarray) override;
123 
125  const Array<OneD, Array<OneD, NekDouble>> &inarray,
126  Array<OneD, Array<OneD, NekDouble>> &outarray) override;
127 
128  GLOBAL_MAPPING_EXPORT virtual void v_UpdateGeomInfo() override;
129 
130 private:
131 };
132 
133 } // namespace GlobalMapping
134 } // namespace Nektar
135 
136 #endif
#define GLOBAL_MAPPING_EXPORT
Base class for mapping to be applied to the coordinate system.
Definition: Mapping.h:69
virtual GLOBAL_MAPPING_EXPORT void v_UpdateGeomInfo() override
virtual GLOBAL_MAPPING_EXPORT void v_ContravarFromCartesian(const Array< OneD, Array< OneD, NekDouble >> &inarray, Array< OneD, Array< OneD, NekDouble >> &outarray) override
virtual GLOBAL_MAPPING_EXPORT void v_GetJacobian(Array< OneD, NekDouble > &outarray) override
virtual GLOBAL_MAPPING_EXPORT void v_LowerIndex(const Array< OneD, Array< OneD, NekDouble >> &inarray, Array< OneD, Array< OneD, NekDouble >> &outarray) override
virtual GLOBAL_MAPPING_EXPORT void v_ApplyChristoffelContravar(const Array< OneD, Array< OneD, NekDouble >> &inarray, Array< OneD, Array< OneD, NekDouble >> &outarray) override
virtual GLOBAL_MAPPING_EXPORT void v_CovarFromCartesian(const Array< OneD, Array< OneD, NekDouble >> &inarray, Array< OneD, Array< OneD, NekDouble >> &outarray) override
virtual GLOBAL_MAPPING_EXPORT void v_CovarToCartesian(const Array< OneD, Array< OneD, NekDouble >> &inarray, Array< OneD, Array< OneD, NekDouble >> &outarray) override
virtual GLOBAL_MAPPING_EXPORT void v_GetMetricTensor(Array< OneD, Array< OneD, NekDouble >> &outarray) override
static std::string className
Name of the class.
Definition: MappingXofXZ.h:70
virtual GLOBAL_MAPPING_EXPORT void v_DotGradJacobian(const Array< OneD, Array< OneD, NekDouble >> &inarray, Array< OneD, NekDouble > &outarray) override
virtual GLOBAL_MAPPING_EXPORT void v_RaiseIndex(const Array< OneD, Array< OneD, NekDouble >> &inarray, Array< OneD, Array< OneD, NekDouble >> &outarray) override
virtual GLOBAL_MAPPING_EXPORT void v_ContravarToCartesian(const Array< OneD, Array< OneD, NekDouble >> &inarray, Array< OneD, Array< OneD, NekDouble >> &outarray) override
virtual GLOBAL_MAPPING_EXPORT void v_GetInvMetricTensor(Array< OneD, Array< OneD, NekDouble >> &outarray) override
MappingXofXZ(const LibUtilities::SessionReaderSharedPtr &pSession, const Array< OneD, MultiRegions::ExpListSharedPtr > &pFields)
static GLOBAL_MAPPING_EXPORT MappingSharedPtr create(const LibUtilities::SessionReaderSharedPtr &pSession, const Array< OneD, MultiRegions::ExpListSharedPtr > &pFields, const TiXmlElement *pMapping)
Creates an instance of this class.
Definition: MappingXofXZ.h:58
virtual GLOBAL_MAPPING_EXPORT void v_ApplyChristoffelCovar(const Array< OneD, Array< OneD, NekDouble >> &inarray, Array< OneD, Array< OneD, NekDouble >> &outarray) override
virtual GLOBAL_MAPPING_EXPORT void v_InitObject(const Array< OneD, MultiRegions::ExpListSharedPtr > &pFields, const TiXmlElement *pMapping) override
General purpose memory allocation routines with the ability to allocate from thread specific memory p...
static std::shared_ptr< DataType > AllocateSharedPtr(const Args &...args)
Allocate a shared pointer from the memory pool.
GLOBAL_MAPPING_EXPORT typedef std::shared_ptr< Mapping > MappingSharedPtr
A shared pointer to a Mapping object.
Definition: Mapping.h:50
std::shared_ptr< SessionReader > SessionReaderSharedPtr
The above copyright notice and this permission notice shall be included.
Definition: CoupledSolver.h:2