Nektar++
CNABTimeIntegrationScheme.h
Go to the documentation of this file.
1///////////////////////////////////////////////////////////////////////////////
2//
3// File: CNABTimeIntegrationScheme.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_CNAB_TIME_INTEGRATION_SCHEME
41#define NEKTAR_LIB_UTILITIES_TIME_INTEGRATION_CNAB_TIME_INTEGRATION_SCHEME
42
43#define LUE LIB_UTILITIES_EXPORT
44
47
49{
50
52{
53public:
54 CNABTimeIntegrationScheme(std::string variant, size_t order,
55 std::vector<NekDouble> freeParams)
56 : TimeIntegrationSchemeGLM("", 2, freeParams)
57 {
58 boost::ignore_unused(variant, order);
59
65
66 // IMEX dirk 2 2 2
68 2, {2, 2});
69 // CNAB
71 }
72
74 {
75 }
76
78 [[maybe_unused]] std::string variant, [[maybe_unused]] size_t order,
79 std::vector<NekDouble> freeParams)
80 {
83 "", 2, freeParams);
84
85 return p;
86 }
87
88 static std::string className;
89
91 {
92 phase->m_schemeType = eIMEX;
93 phase->m_order = 2;
94 phase->m_name =
95 std::string("CNABOrder" + std::to_string(phase->m_order));
96
97 phase->m_numsteps = 4;
98 phase->m_numstages = 1;
99
100 phase->m_A = Array<OneD, Array<TwoD, NekDouble>>(2);
101 phase->m_B = Array<OneD, Array<TwoD, NekDouble>>(2);
102
103 phase->m_A[0] =
104 Array<TwoD, NekDouble>(phase->m_numstages, phase->m_numstages, 0.0);
105 phase->m_B[0] =
106 Array<TwoD, NekDouble>(phase->m_numsteps, phase->m_numstages, 0.0);
107 phase->m_A[1] =
108 Array<TwoD, NekDouble>(phase->m_numstages, phase->m_numstages, 0.0);
109 phase->m_B[1] =
110 Array<TwoD, NekDouble>(phase->m_numsteps, phase->m_numstages, 0.0);
111
112 phase->m_U =
113 Array<TwoD, NekDouble>(phase->m_numstages, phase->m_numsteps, 0.0);
114 phase->m_V =
115 Array<TwoD, NekDouble>(phase->m_numsteps, phase->m_numsteps, 0.0);
116
117 // Coefficients
118 phase->m_A[0][0][0] = 1.0 / 2.0;
119 phase->m_B[0][0][0] = 1.0 / 2.0;
120 phase->m_B[0][1][0] = 1.0;
121
122 phase->m_B[1][2][0] = 1.0;
123
124 phase->m_U[0][0] = 2.0 / 2.0;
125 phase->m_U[0][1] = 1.0 / 2.0;
126 phase->m_U[0][2] = 3.0 / 2.0;
127 phase->m_U[0][3] = -1.0 / 2.0;
128
129 phase->m_V[0][0] = 2.0 / 2.0;
130 phase->m_V[0][1] = 1.0 / 2.0;
131 phase->m_V[0][2] = 3.0 / 2.0;
132 phase->m_V[0][3] = -1.0 / 2.0;
133
134 phase->m_V[3][2] = 1.0;
135
136 phase->m_numMultiStepValues = 1;
137 phase->m_numMultiStepImplicitDerivs = 1;
138 phase->m_numMultiStepExplicitDerivs = 2;
139 phase->m_timeLevelOffset = Array<OneD, size_t>(phase->m_numsteps);
140 phase->m_timeLevelOffset[0] = 0;
141 phase->m_timeLevelOffset[1] = 0;
142 phase->m_timeLevelOffset[2] = 0;
143 phase->m_timeLevelOffset[3] = 1;
144
145 phase->CheckAndVerify();
146 }
147
148protected:
149 LUE std::string v_GetName() const override
150 {
151 return std::string("CNAB");
152 }
153
155 {
156 return 1.0;
157 }
158
160
161}; // end class CNABTimeIntegrationScheme
162
163} // namespace Nektar::LibUtilities
164
165#endif
#define LUE
CNABTimeIntegrationScheme(std::string variant, size_t order, std::vector< NekDouble > freeParams)
static LUE void SetupSchemeData(TimeIntegrationAlgorithmGLMSharedPtr &phase)
static TimeIntegrationSchemeSharedPtr create(std::string variant, size_t order, std::vector< NekDouble > freeParams)
static LUE void SetupSchemeData(TimeIntegrationAlgorithmGLMSharedPtr &phase, size_t order, std::vector< NekDouble > freeParams)
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
double NekDouble