Nektar++
LinearSWE.h
Go to the documentation of this file.
1///////////////////////////////////////////////////////////////////////////////
2//
3// File: LinearSWE.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: Linear Shallow water equations in primitive variables
32//
33///////////////////////////////////////////////////////////////////////////////
34
35#ifndef NEKTAR_SOLVERS_SHALLOWWATERSOLVER_EQUATIONSYSTEMS_LINEARSWE_H
36#define NEKTAR_SOLVERS_SHALLOWWATERSOLVER_EQUATIONSYSTEMS_LINEARSWE_H
37
39
40namespace Nektar
41{
42
43/**
44 *
45 *
46 **/
47
49{
50public:
51 friend class MemoryManager<LinearSWE>;
52
53 /// Creates an instance of this class
57 {
60 p->InitObject();
61 return p;
62 }
63 /// Name of class
64 static std::string className;
65
66 ~LinearSWE() override;
67
68protected:
71
72 void v_InitObject(bool DeclareFields = true) override;
73
74 /// Still water depth traces
77
78 void DoOdeRhs(const Array<OneD, const Array<OneD, NekDouble>> &inarray,
80 const NekDouble time);
81
82 void DoOdeProjection(
83 const Array<OneD, const Array<OneD, NekDouble>> &inarray,
84 Array<OneD, Array<OneD, NekDouble>> &outarray, const NekDouble time);
85
86 void GetFluxVector(
87 const Array<OneD, const Array<OneD, NekDouble>> &physfield,
89
91
92 void v_PrimitiveToConservative() override;
93
94 void v_ConservativeToPrimitive() override;
95
97 {
98 return m_dFwd;
99 }
101 {
102 return m_dBwd;
103 }
104
105private:
107 Array<OneD, Array<OneD, NekDouble>> &numfluxX);
108
111 Array<OneD, Array<OneD, NekDouble>> &numfluxY);
112
114 NekDouble time);
115
116 void WallBoundary2D(int bcRegion, int cnt,
118 Array<OneD, Array<OneD, NekDouble>> &physarray);
119 void WallBoundary(int bcRegion, int cnt,
121 Array<OneD, Array<OneD, NekDouble>> &physarray);
122
123 void AddCoriolis(const Array<OneD, const Array<OneD, NekDouble>> &physarray,
124 Array<OneD, Array<OneD, NekDouble>> &outarray);
125
127 const Array<OneD, const Array<OneD, NekDouble>> &physin,
130 const Array<OneD, const Array<OneD, NekDouble>> &physin,
132
133 void GetVelocityVector(const Array<OneD, Array<OneD, NekDouble>> &physfield,
135};
136
137} // namespace Nektar
138
139#endif
void NumericalFlux1D(Array< OneD, Array< OneD, NekDouble > > &physfield, Array< OneD, Array< OneD, NekDouble > > &numfluxX)
void v_GenerateSummary(SolverUtils::SummaryList &s) override
Print a summary of time stepping parameters.
Definition: LinearSWE.cpp:685
void GetVelocityVector(const Array< OneD, Array< OneD, NekDouble > > &physfield, Array< OneD, Array< OneD, NekDouble > > &velocity)
Compute the velocity field given the momentum .
Definition: LinearSWE.cpp:673
void DoOdeRhs(const Array< OneD, const Array< OneD, NekDouble > > &inarray, Array< OneD, Array< OneD, NekDouble > > &outarray, const NekDouble time)
Definition: LinearSWE.cpp:188
LinearSWE(const LibUtilities::SessionReaderSharedPtr &pSession, const SpatialDomains::MeshGraphSharedPtr &pGraph)
Definition: LinearSWE.cpp:51
static SolverUtils::EquationSystemSharedPtr create(const LibUtilities::SessionReaderSharedPtr &pSession, const SpatialDomains::MeshGraphSharedPtr &pGraph)
Creates an instance of this class.
Definition: LinearSWE.h:54
const Array< OneD, NekDouble > & GetDepthBwd()
Definition: LinearSWE.h:100
void DoOdeProjection(const Array< OneD, const Array< OneD, NekDouble > > &inarray, Array< OneD, Array< OneD, NekDouble > > &outarray, const NekDouble time)
Definition: LinearSWE.cpp:287
const Array< OneD, NekDouble > & GetDepthFwd()
Definition: LinearSWE.h:96
void SetBoundaryConditions(Array< OneD, Array< OneD, NekDouble > > &physarray, NekDouble time)
Definition: LinearSWE.cpp:333
void WallBoundary2D(int bcRegion, int cnt, Array< OneD, Array< OneD, NekDouble > > &Fwd, Array< OneD, Array< OneD, NekDouble > > &physarray)
Definition: LinearSWE.cpp:437
void v_ConservativeToPrimitive() override
Definition: LinearSWE.cpp:592
~LinearSWE() override
Definition: LinearSWE.cpp:133
void NumericalFlux2D(Array< OneD, Array< OneD, NekDouble > > &physfield, Array< OneD, Array< OneD, NekDouble > > &numfluxX, Array< OneD, Array< OneD, NekDouble > > &numfluxY)
void v_InitObject(bool DeclareFields=true) override
Init object for UnsteadySystem class.
Definition: LinearSWE.cpp:57
void GetFluxVector(const Array< OneD, const Array< OneD, NekDouble > > &physfield, Array< OneD, Array< OneD, Array< OneD, NekDouble > > > &flux)
Definition: LinearSWE.cpp:519
static std::string className
Name of class.
Definition: LinearSWE.h:64
void v_PrimitiveToConservative() override
Definition: LinearSWE.cpp:649
Array< OneD, NekDouble > m_dFwd
Still water depth traces.
Definition: LinearSWE.h:75
Array< OneD, NekDouble > m_dBwd
Definition: LinearSWE.h:76
void WallBoundary(int bcRegion, int cnt, Array< OneD, Array< OneD, NekDouble > > &Fwd, Array< OneD, Array< OneD, NekDouble > > &physarray)
Wall boundary condition.
Definition: LinearSWE.cpp:383
void AddCoriolis(const Array< OneD, const Array< OneD, NekDouble > > &physarray, Array< OneD, Array< OneD, NekDouble > > &outarray)
Definition: LinearSWE.cpp:138
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.
Base class for unsteady solvers.
std::shared_ptr< SessionReader > SessionReaderSharedPtr
const std::vector< NekDouble > velocity
std::vector< std::pair< std::string, std::string > > SummaryList
Definition: Misc.h:46
std::shared_ptr< EquationSystem > EquationSystemSharedPtr
A shared pointer to an EquationSystem object.
std::shared_ptr< MeshGraph > MeshGraphSharedPtr
Definition: MeshGraph.h:174
double NekDouble