Nektar++
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
APE.h
Go to the documentation of this file.
1 ///////////////////////////////////////////////////////////////////////////////
2 //
3 // File APE.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 // License for the specific language governing rights and limitations under
14 // Permission is hereby granted, free of charge, to any person obtaining a
15 // copy of this software and associated documentation files (the "Software"),
16 // to deal in the Software without restriction, including without limitation
17 // the rights to use, copy, modify, merge, publish, distribute, sublicense,
18 // and/or sell copies of the Software, and to permit persons to whom the
19 // Software is furnished to do so, subject to the following conditions:
20 //
21 // The above copyright notice and this permission notice shall be included
22 // in all copies or substantial portions of the Software.
23 //
24 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
25 // OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
26 // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
27 // THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
28 // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
29 // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
30 // DEALINGS IN THE SOFTWARE.
31 //
32 // Description: Acoustic perturbation equations in conservative variables
33 //
34 ///////////////////////////////////////////////////////////////////////////////
35 
36 #ifndef NEKTAR_SOLVERS_APESOLVER_EQUATIONSYSTEMS_APE_H
37 #define NEKTAR_SOLVERS_APESOLVER_EQUATIONSYSTEMS_APE_H
38 
41 
42 using namespace Nektar::SolverUtils;
43 
44 namespace Nektar
45 {
46 
47 class APE : public UnsteadySystem
48 {
49  public:
50 
51  friend class MemoryManager<APE>;
52 
53  /// Creates an instance of this class
54  static EquationSystemSharedPtr create(
56  {
58  p->InitObject();
59  return p;
60  }
61  /// Name of class
62  static std::string className;
63 
64  /// Destructor
65  virtual ~APE();
66 
67 
68  protected:
69 
71  Array<OneD, Array<OneD, NekDouble> > m_traceBasefield;
72  Array<OneD, Array<OneD, NekDouble> > m_vecLocs;
73  /// Constant incompressible density (APE)
75  /// Isentropic coefficient, Ratio of specific heats (APE)
77  Array<OneD, Array<OneD, NekDouble> > m_basefield;
78  std::vector<std::string> m_basefield_names;
79 
80  /// Initialises UnsteadySystem class members.
82 
83  virtual void v_InitObject();
84 
85  /// Sets up initial conditions.
86  virtual void v_DoInitialise();
87 
88  void DoOdeRhs(const Array<OneD, const Array<OneD, NekDouble> > &inarray,
89  Array<OneD, Array<OneD, NekDouble> > &outarray,
90  const NekDouble time);
91 
92  void DoOdeProjection(const Array<OneD, const Array<OneD, NekDouble> > &inarray,
93  Array<OneD, Array<OneD, NekDouble> > &outarray,
94  const NekDouble time);
95 
96  virtual void v_GetFluxVector(const int i,
97  Array<OneD, Array<OneD, NekDouble> > &physfield,
98  Array<OneD, Array<OneD, NekDouble> > &flux);
99 
100  /// Evaulate flux = m_fields*ivel for i th component of Vu for direction j
101  virtual void v_GetFluxVector(const int i, const int j,
102  Array<OneD, Array<OneD, NekDouble> > &physfield,
103  Array<OneD, Array<OneD, NekDouble> > &flux);
104 
105  ///
106  virtual void v_NumericalFlux(Array<OneD, Array<OneD, NekDouble> > &physfield,
107  Array<OneD, Array<OneD, NekDouble> > &numflux);
108 
109  virtual void v_NumericalFlux(Array<OneD, Array<OneD, NekDouble> > &physfield,
110  Array<OneD, Array<OneD, NekDouble> > &numfluxX,
111  Array<OneD, Array<OneD, NekDouble> > &numfluxY);
112 
113  void AddSource(const Array< OneD, Array< OneD, NekDouble > > &inarray, Array< OneD, Array< OneD, NekDouble > > &outarray);
114 
115  const Array<OneD, const Array<OneD, NekDouble> > &GetNormals();
116 
117  const Array<OneD, const Array<OneD, NekDouble> > &GetVecLocs();
118 
119  const Array<OneD, const Array<OneD, NekDouble> > &GetBasefield();
120 
121  NekDouble GetGamma();
122 
123  NekDouble GetRho();
124 
125  private:
126 
127  void SetBoundaryConditions(Array<OneD, Array<OneD, NekDouble> > &physarray, NekDouble time);
128 
129  void WallBC(int bcRegion, int cnt, Array<OneD, Array<OneD, NekDouble> > &physarray);
130 };
131 }
132 
133 #endif
134