Nektar++
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
StandardExtrapolate.cpp
Go to the documentation of this file.
1 ///////////////////////////////////////////////////////////////////////////////
2 //
3 // File: StandardExtrapolate.cpp
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: Abstract base class for StandardExtrapolate.
33 //
34 ///////////////////////////////////////////////////////////////////////////////
35 
38 
39 namespace Nektar
40 {
41  /**
42  * Registers the class with the Factory.
43  */
45  "Standard",
47  "Standard");
48 
53  const Array<OneD, int> pVel,
54  const SolverUtils::AdvectionSharedPtr advObject)
55  : Extrapolate(pSession,pFields,pPressure,pVel,advObject)
56  {
57  }
58 
60  {
61  }
62 
63 
64 
65  /**
66  * Function to extrapolate the new pressure boundary condition.
67  * Based on the velocity field and on the advection term.
68  * Acceleration term is also computed.
69  * This routine is a general one for 2d and 3D application and it can be called
70  * directly from velocity correction scheme. Specialisation on dimensionality is
71  * redirected to the CalcNeumannPressureBCs method.
72  */
74  const Array<OneD, const Array<OneD, NekDouble> > &fields,
75  const Array<OneD, const Array<OneD, NekDouble> > &N,
76  NekDouble kinvis)
77  {
78  if(m_HBCdata.num_elements()>0)
79  {
81 
82  // Rotate HOPBCs storage
84 
85  // Calculate non-linear and viscous BCs at current level
86  // and put in m_pressureHBCs[0]
87  CalcNeumannPressureBCs(fields,N,kinvis);
88 
89  // calculate (phi,du/dt) and level n which will then be
90  // extrpolated.
91  CalcExplicitDuDt(fields);
92 
93  // Extrapolate to m_pressureHBCs to n+1
95 
96  // Copy m_pressureHBCs to m_PbndExp
98 
99  // Evaluate High order outflow conditiosn if required.
100  CalcOutflowBCs(fields, kinvis);
101  }
102  }
103 
104 
105  /**
106  *
107  */
109  int intMethod,
110  const LibUtilities::TimeIntegrationWrapperSharedPtr &IntegrationScheme)
111  {
112  switch(intMethod)
113  {
115  {
116  m_intSteps = 1;
117  }
118  break;
120  {
121  m_intSteps = 2;
122  }
123  break;
125  {
126  m_intSteps = 3;
127  }
128  break;
129  }
130  }
131 
132  /**
133  *
134  */
136  const Array<OneD, const Array<OneD, NekDouble> > &inarray,
137  NekDouble Aii_DT,
138  NekDouble kinvis)
139  {
140  }
141 
142 
143  /**
144  *
145  */
147  const LibUtilities::TimeIntegrationSolutionSharedPtr &integrationSoln,
148  int nstep,
149  NekDouble time)
150  {
151  }
152 
153 
154  /**
155  *
156  */
158  int nstep)
159  {
160  }
161 
162  /**
163  *
164  */
166  int HBCdata,
167  NekDouble kinvis,
169  Array<OneD, const NekDouble> &Advection)
170  {
171  Vmath::Svtvp(HBCdata,-kinvis,Q,1,Advection,1,Q,1);
172  }
173 }
174 
ExtrapolateFactory & GetExtrapolateFactory()
Definition: Extrapolate.cpp:48
virtual void v_MountHOPBCs(int HBCdata, NekDouble kinvis, Array< OneD, NekDouble > &Q, Array< OneD, const NekDouble > &Advection)
boost::shared_ptr< TimeIntegrationWrapper > TimeIntegrationWrapperSharedPtr
void Svtvp(int n, const T alpha, const T *x, const int incx, const T *y, const int incy, T *z, const int incz)
svtvp (scalar times vector plus vector): z = alpha*x + y
Definition: Vmath.cpp:471
boost::shared_ptr< Advection > AdvectionSharedPtr
A shared pointer to an Advection object.
Definition: Advection.h:158
void RollOver(Array< OneD, Array< OneD, NekDouble > > &input)
virtual void v_SubStepAdvance(const LibUtilities::TimeIntegrationSolutionSharedPtr &integrationSoln, int nstep, NekDouble time)
StandardExtrapolate(const LibUtilities::SessionReaderSharedPtr pSession, Array< OneD, MultiRegions::ExpListSharedPtr > pFields, MultiRegions::ExpListSharedPtr pPressure, const Array< OneD, int > pVel, const SolverUtils::AdvectionSharedPtr advObject)
void CopyPressureHBCsToPbndExp(void)
void ExtrapolatePressureHBCs(void)
virtual void v_SubStepSetPressureBCs(const Array< OneD, const Array< OneD, NekDouble > > &inarray, NekDouble Aii_DT, NekDouble kinvis)
boost::shared_ptr< SessionReader > SessionReaderSharedPtr
Definition: MeshPartition.h:51
IMEX 2nd order scheme using Backward Different Formula & Extrapolation.
int m_intSteps
Maximum points used in pressure BC evaluation.
Definition: Extrapolate.h:247
boost::shared_ptr< ExpList > ExpListSharedPtr
Shared pointer to an ExpList object.
double NekDouble
void CalcExplicitDuDt(const Array< OneD, const Array< OneD, NekDouble > > &fields)
Definition: Extrapolate.cpp:81
virtual void v_SubStepSaveFields(int nstep)
int m_pressureCalls
number of times the high-order pressure BCs have been called
Definition: Extrapolate.h:238
static ExtrapolateSharedPtr create(const LibUtilities::SessionReaderSharedPtr &pSession, Array< OneD, MultiRegions::ExpListSharedPtr > &pFields, MultiRegions::ExpListSharedPtr &pPressure, const Array< OneD, int > &pVel, const SolverUtils::AdvectionSharedPtr &advObject)
Creates an instance of this class.
IMEX 3rd order scheme using Backward Different Formula & Extrapolation.
Array< OneD, Array< OneD, NekDouble > > m_pressureHBCs
Storage for current and previous levels of high order pressure boundary conditions.
Definition: Extrapolate.h:271
static std::string className
Name of class.
boost::shared_ptr< TimeIntegrationSolution > TimeIntegrationSolutionSharedPtr
Array< OneD, HBCInfo > m_HBCdata
data structure to old all the information regarding High order pressure BCs
Definition: Extrapolate.h:277
virtual void v_EvaluatePressureBCs(const Array< OneD, const Array< OneD, NekDouble > > &fields, const Array< OneD, const Array< OneD, NekDouble > > &N, NekDouble kinvis)
IMEX 1st order scheme using Euler Backwards/Euler Forwards.
void CalcOutflowBCs(const Array< OneD, const Array< OneD, NekDouble > > &fields, NekDouble kinvis)
virtual void v_SubSteppingTimeIntegration(int intMethod, const LibUtilities::TimeIntegrationWrapperSharedPtr &IntegrationScheme)
void CalcNeumannPressureBCs(const Array< OneD, const Array< OneD, NekDouble > > &fields, const Array< OneD, const Array< OneD, NekDouble > > &N, NekDouble kinvis)
Definition: Extrapolate.h:179
tKey RegisterCreatorFunction(tKey idKey, CreatorFunction classCreator, tDescription pDesc="")
Register a class with the factory.
Definition: NekFactory.hpp:215