Nektar++
MCNABTimeIntegrationScheme.h
Go to the documentation of this file.
1 ///////////////////////////////////////////////////////////////////////////////
2 //
3 // File: MCNABTimeIntegrationScheme.h
4 //
5 // For more information, please see: http://www.nektar.info
6 //
7 // The MIT License
8 //
9 // Copyright (c) 2018 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: Header file of time integration scheme wrappers
33 //
34 ///////////////////////////////////////////////////////////////////////////////
35 
36 // Note : If adding a new integrator be sure to register the
37 // integrator with the Time Integration Scheme Facatory in
38 // SchemeInitializor.cpp.
39 
40 #ifndef NEKTAR_LIB_UTILITIES_TIME_INTEGRATION_MCNAB_TIME_INTEGRATION_SCHEME
41 #define NEKTAR_LIB_UTILITIES_TIME_INTEGRATION_MCNAB_TIME_INTEGRATION_SCHEME
42 
43 #define LUE LIB_UTILITIES_EXPORT
44 
47 
48 namespace Nektar
49 {
50 namespace LibUtilities
51 {
52 
54 {
55 public:
56  MCNABTimeIntegrationScheme(std::string variant, unsigned int order,
57  std::vector<NekDouble> freeParams)
58  : TimeIntegrationSchemeGLM("", 2, freeParams)
59  {
60  boost::ignore_unused(variant);
61  boost::ignore_unused(order);
62 
65  new TimeIntegrationAlgorithmGLM(this));
67  new TimeIntegrationAlgorithmGLM(this));
69  new TimeIntegrationAlgorithmGLM(this));
70 
72  m_integration_phases[0], 2, std::vector<NekDouble>{2, 2});
74  m_integration_phases[1], 2, std::vector<NekDouble>{2, 2});
76  }
77 
79  {
80  }
81 
83  std::string variant, unsigned int order,
84  std::vector<NekDouble> freeParams)
85  {
86  boost::ignore_unused(variant);
87  boost::ignore_unused(order);
88 
91  "", 2, freeParams);
92 
93  return p;
94  }
95 
96  static std::string className;
97 
99  {
100  phase->m_schemeType = eIMEX;
101  phase->m_order = 2;
102  phase->m_name =
103  std::string("MCNABOrder" + std::to_string(phase->m_order));
104 
105  phase->m_numsteps = 5;
106  phase->m_numstages = 1;
107 
108  phase->m_A = Array<OneD, Array<TwoD, NekDouble>>(2);
109  phase->m_B = Array<OneD, Array<TwoD, NekDouble>>(2);
110 
111  phase->m_A[0] =
112  Array<TwoD, NekDouble>(phase->m_numstages, phase->m_numstages, 0.0);
113  phase->m_B[0] =
114  Array<TwoD, NekDouble>(phase->m_numsteps, phase->m_numstages, 0.0);
115  phase->m_A[1] =
116  Array<TwoD, NekDouble>(phase->m_numstages, phase->m_numstages, 0.0);
117  phase->m_B[1] =
118  Array<TwoD, NekDouble>(phase->m_numsteps, phase->m_numstages, 0.0);
119  phase->m_U =
120  Array<TwoD, NekDouble>(phase->m_numstages, phase->m_numsteps, 0.0);
121  phase->m_V =
122  Array<TwoD, NekDouble>(phase->m_numsteps, phase->m_numsteps, 0.0);
123 
124  phase->m_A[0][0][0] = 9.0 / 16.0;
125  phase->m_B[0][0][0] = 9.0 / 16.0;
126  phase->m_B[0][1][0] = 1.0;
127 
128  phase->m_B[1][3][0] = 1.0;
129 
130  phase->m_U[0][0] = 1.0;
131  phase->m_U[0][1] = 6.0 / 16.0;
132  phase->m_U[0][2] = 1.0 / 16.0;
133  phase->m_U[0][3] = 24.0 / 16.0;
134  phase->m_U[0][4] = -8.0 / 16.0;
135 
136  phase->m_V[0][0] = 1.0;
137  phase->m_V[0][1] = 6.0 / 16.0;
138  phase->m_V[0][2] = 1.0 / 16.0;
139  phase->m_V[0][3] = 24.0 / 16.0;
140  phase->m_V[0][4] = -8.0 / 16.0;
141 
142  phase->m_V[2][1] = 1.0;
143  phase->m_V[4][3] = 1.0;
144 
145  phase->m_numMultiStepValues = 1;
146  phase->m_numMultiStepImplicitDerivs = 2;
147  phase->m_numMultiStepDerivs = 2;
148  phase->m_timeLevelOffset = Array<OneD, unsigned int>(phase->m_numsteps);
149  phase->m_timeLevelOffset[0] = 0;
150  phase->m_timeLevelOffset[1] = 0;
151  phase->m_timeLevelOffset[2] = 1;
152  phase->m_timeLevelOffset[3] = 0;
153  phase->m_timeLevelOffset[4] = 1;
154 
155  phase->CheckAndVerify();
156  }
157 
158 protected:
159  LUE virtual std::string v_GetName() const override
160  {
161  return std::string("MCNAB");
162  }
163 
164  LUE virtual NekDouble v_GetTimeStability() const override
165  {
166  return 1.0;
167  }
168 
169 }; // end class MCNABTimeIntegrationScheme
170 
171 } // end namespace LibUtilities
172 } // end namespace Nektar
173 
174 #endif
#define LUE
static LUE void SetupSchemeData(TimeIntegrationAlgorithmGLMSharedPtr &phase, unsigned int order, std::vector< NekDouble > freeParams)
static TimeIntegrationSchemeSharedPtr create(std::string variant, unsigned int order, std::vector< NekDouble > freeParams)
MCNABTimeIntegrationScheme(std::string variant, unsigned int order, std::vector< NekDouble > freeParams)
static LUE void SetupSchemeData(TimeIntegrationAlgorithmGLMSharedPtr &phase)
virtual LUE std::string v_GetName() const override
virtual LUE NekDouble v_GetTimeStability() const override
Base class for GLM time integration schemes.
TimeIntegrationAlgorithmGLMVector m_integration_phases
static std::shared_ptr< DataType > AllocateSharedPtr(const Args &...args)
Allocate a shared pointer from the memory pool.
std::shared_ptr< TimeIntegrationAlgorithmGLM > TimeIntegrationAlgorithmGLMSharedPtr
@ eIMEX
Implicit Explicit General Linear Method.
std::vector< TimeIntegrationAlgorithmGLMSharedPtr > TimeIntegrationAlgorithmGLMVector
std::shared_ptr< TimeIntegrationScheme > TimeIntegrationSchemeSharedPtr
The above copyright notice and this permission notice shall be included.
Definition: CoupledSolver.h:2
double NekDouble