Nektar++
UnsteadyAdvectionDiffusion.h
Go to the documentation of this file.
1 ///////////////////////////////////////////////////////////////////////////////
2 //
3 // File UnsteadyAdvectionDiffusion.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: Unsteady advection-diffusion solve routines
32 //
33 ///////////////////////////////////////////////////////////////////////////////
34 
35 #ifndef NEKTAR_SOLVERS_ADRSOLVER_EQUATIONSYSTEMS_UNSTEADYADVECTIONDIFFUSION_H
36 #define NEKTAR_SOLVERS_ADRSOLVER_EQUATIONSYSTEMS_UNSTEADYADVECTIONDIFFUSION_H
37 
42 
43 namespace Nektar
44 {
46  {
47  public:
49 
50  /// Creates an instance of this class
54  {
57  AllocateSharedPtr(pSession, pGraph);
58  p->InitObject();
59  return p;
60  }
61  /// Name of class
62  static std::string className;
63 
64  /// Destructor
66 
67  protected:
70  NekDouble m_sVVCutoffRatio; // cut off ratio from which to start decayhing modes
71  NekDouble m_sVVDiffCoeff; // Diffusion coefficient of SVV modes
76 
77  // Plane (used only for Discontinous projection
78  // with 3DHomogenoeus1D expansion)
80 
81  /// Session reader
85 
86  /// Evaluate the flux at each solution point for the advection part
87  void GetFluxVectorAdv(
88  const Array<OneD, Array<OneD, NekDouble> > &physfield,
90 
91  /// Evaluate the flux at each solution point for the diffusion part
92  void GetFluxVectorDiff(
93  const Array<OneD, Array<OneD, NekDouble> > &inarray,
94  const Array<OneD, Array<OneD, Array<OneD, NekDouble> > >&qfield,
95  Array<OneD, Array<OneD, Array<OneD, NekDouble> > >&viscousTensor);
96 
97  /// Compute the RHS
98  virtual void DoOdeRhs(
99  const Array<OneD, const Array<OneD, NekDouble> >&inarray,
100  Array<OneD, Array<OneD, NekDouble> >&outarray,
101  const NekDouble time);
102 
103  /// Perform the projection
104  void DoOdeProjection(
105  const Array<OneD, const Array<OneD, NekDouble> > &inarray,
106  Array<OneD, Array<OneD, NekDouble> > &outarray,
107  const NekDouble time);
108 
109  /// Solve implicitly the diffusion term
110  virtual void DoImplicitSolve(
111  const Array<OneD, const Array<OneD, NekDouble> >&inarray,
112  Array<OneD, Array<OneD, NekDouble> >&outarray,
113  NekDouble time,
114  NekDouble lambda);
115 
116  /// Get the normal velocity based on m_velocity
118 
119  /// Get the normal velocity based on input velfield
121  const Array<OneD, const Array<OneD, NekDouble> > &velfield);
122 
123  /// Initialise the object
124  virtual void v_InitObject();
125 
126  /// Print Summary
128 
129  /// PreIntegration step for substepping.
130  virtual bool v_PreIntegrate(int step);
131 
132  // SubsStepping methods -> Probably could be set up in separate class
134  int nstep, NekDouble time);
136  void SetUpSubSteppingTimeIntegration(int intMethod,
137  const LibUtilities::TimeIntegrationWrapperSharedPtr &IntegrationScheme);
138 
139  void SubStepAdvection(const Array<OneD, const Array<OneD, NekDouble> > &inarray,
140  Array<OneD, Array<OneD, NekDouble> > &outarray,
141  const NekDouble time);
142 
143  void SubStepProjection(const Array<OneD, const Array<OneD, NekDouble> > &inarray,
144  Array<OneD, Array<OneD, NekDouble> > &outarray,
145  const NekDouble time);
146 
147  void AddAdvectionPenaltyFlux(const Array<OneD, const Array<OneD, NekDouble> > &velfield,
148  const Array<OneD, const Array<OneD, NekDouble> > &physfield,
149  Array<OneD, Array<OneD, NekDouble> > &Outarray);
150 
151 
153 
156 
158 
162 
163  private:
166  };
167 }
168 
169 #endif
void SubStepProjection(const Array< OneD, const Array< OneD, NekDouble > > &inarray, Array< OneD, Array< OneD, NekDouble > > &outarray, const NekDouble time)
std::shared_ptr< Diffusion > DiffusionSharedPtr
A shared pointer to an EquationSystem object.
Definition: Diffusion.h:183
std::shared_ptr< MeshGraph > MeshGraphSharedPtr
Definition: MeshGraph.h:163
void GetFluxVectorAdv(const Array< OneD, Array< OneD, NekDouble > > &physfield, Array< OneD, Array< OneD, Array< OneD, NekDouble > > > &flux)
Evaluate the flux at each solution point for the advection part.
Array< OneD, NekDouble > GetMaxStdVelocity(const Array< OneD, Array< OneD, NekDouble > > inarray)
UnsteadyAdvectionDiffusion(const LibUtilities::SessionReaderSharedPtr &pSession, const SpatialDomains::MeshGraphSharedPtr &pGraph)
Session reader.
LibUtilities::TimeIntegrationWrapperSharedPtr m_subStepIntegrationScheme
General purpose memory allocation routines with the ability to allocate from thread specific memory p...
std::vector< std::pair< std::string, std::string > > SummaryList
Definition: Misc.h:46
Array< OneD, Array< OneD, NekDouble > > m_velocity
void GetFluxVectorDiff(const Array< OneD, Array< OneD, NekDouble > > &inarray, const Array< OneD, Array< OneD, Array< OneD, NekDouble > > > &qfield, Array< OneD, Array< OneD, Array< OneD, NekDouble > > > &viscousTensor)
Evaluate the flux at each solution point for the diffusion part.
void SubStepAdvection(const Array< OneD, const Array< OneD, NekDouble > > &inarray, Array< OneD, Array< OneD, NekDouble > > &outarray, const NekDouble time)
Array< OneD, NekDouble > & GetNormalVel(const Array< OneD, const Array< OneD, NekDouble > > &velfield)
Get the normal velocity based on input velfield.
static SolverUtils::EquationSystemSharedPtr create(const LibUtilities::SessionReaderSharedPtr &pSession, const SpatialDomains::MeshGraphSharedPtr &pGraph)
Creates an instance of this class.
Array< OneD, NekDouble > & GetNormalVelocity()
Get the normal velocity based on m_velocity.
SolverUtils::RiemannSolverSharedPtr m_riemannSolver
void DoOdeProjection(const Array< OneD, const Array< OneD, NekDouble > > &inarray, Array< OneD, Array< OneD, NekDouble > > &outarray, const NekDouble time)
Perform the projection.
std::shared_ptr< RiemannSolver > RiemannSolverSharedPtr
A shared pointer to an EquationSystem object.
std::shared_ptr< TimeIntegrationWrapper > TimeIntegrationWrapperSharedPtr
virtual void DoOdeRhs(const Array< OneD, const Array< OneD, NekDouble > > &inarray, Array< OneD, Array< OneD, NekDouble > > &outarray, const NekDouble time)
Compute the RHS.
virtual bool v_PreIntegrate(int step)
PreIntegration step for substepping.
virtual void v_GenerateSummary(SolverUtils::SummaryList &s)
Print Summary.
void SetUpSubSteppingTimeIntegration(int intMethod, const LibUtilities::TimeIntegrationWrapperSharedPtr &IntegrationScheme)
static std::shared_ptr< DataType > AllocateSharedPtr(const Args &...args)
Allocate a shared pointer from the memory pool.
SolverUtils::DiffusionSharedPtr m_diffusion
double NekDouble
static std::string className
Name of class.
void SubStepAdvance(const LibUtilities::TimeIntegrationSolutionSharedPtr &integrationSoln, int nstep, NekDouble time)
virtual void DoImplicitSolve(const Array< OneD, const Array< OneD, NekDouble > > &inarray, Array< OneD, Array< OneD, NekDouble > > &outarray, NekDouble time, NekDouble lambda)
Solve implicitly the diffusion term.
LibUtilities::TimeIntegrationSchemeOperators m_subStepIntegrationOps
void AddAdvectionPenaltyFlux(const Array< OneD, const Array< OneD, NekDouble > > &velfield, const Array< OneD, const Array< OneD, NekDouble > > &physfield, Array< OneD, Array< OneD, NekDouble > > &Outarray)
A base class for PDEs which include an advection component.
std::shared_ptr< TimeIntegrationSolution > TimeIntegrationSolutionSharedPtr
virtual void v_InitObject()
Initialise the object.
std::shared_ptr< SessionReader > SessionReaderSharedPtr
std::shared_ptr< EquationSystem > EquationSystemSharedPtr
A shared pointer to an EquationSystem object.