-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathupwind.h
More file actions
310 lines (266 loc) · 11.2 KB
/
upwind.h
File metadata and controls
310 lines (266 loc) · 11.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
/*
* Copyright (c) 2010-2015: G-CSC, Goethe University Frankfurt
* Author: Andreas Vogel
*
* This file is part of UG4.
*
* UG4 is free software: you can redistribute it and/or modify it under the
* terms of the GNU Lesser General Public License version 3 (as published by the
* Free Software Foundation) with the following additional attribution
* requirements (according to LGPL/GPL v3 §7):
*
* (1) The following notice must be displayed in the Appropriate Legal Notices
* of covered and combined works: "Based on UG4 (www.ug4.org/license)".
*
* (2) The following notice must be displayed at a prominent place in the
* terminal output of covered works: "Based on UG4 (www.ug4.org/license)".
*
* (3) The following bibliography is recommended for citation and must be
* preserved in all covered files:
* "Reiter, S., Vogel, A., Heppner, I., Rupp, M., and Wittum, G. A massively
* parallel geometric multigrid solver on hierarchically distributed grids.
* Computing and visualization in science 16, 4 (2013), 151-164"
* "Vogel, A., Reiter, S., Rupp, M., Nägel, A., and Wittum, G. UG4 -- a novel
* flexible software system for simulating pde based models on high performance
* computers. Computing and visualization in science 16, 4 (2013), 165-179"
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*/
#ifndef __H__UG__NAVIER_STOKES__UPWIND__
#define __H__UG__NAVIER_STOKES__UPWIND__
//#define UG_NSUPWIND_ASSERT(cond, exp)
// include define below to assert arrays used in stabilization
#define UG_NSUPWIND_ASSERT(cond, exp) UG_ASSERT((cond), exp)
#include <vector>
#include <string>
#include "upwind_interface.h"
#include "lib_disc/spatial_disc/disc_util/fv1_geom.h"
#include "lib_disc/spatial_disc/disc_util/fvcr_geom.h"
#include "lib_disc/spatial_disc/disc_util/hfvcr_geom.h"
namespace ug{
namespace NavierStokes{
/////////////////////////////////////////////////////////////////////////////
// No Upwind
/////////////////////////////////////////////////////////////////////////////
template <int dim>
class NavierStokesNoUpwind
: public INavierStokesUpwind<dim>,
public NavierStokesUpwindRegister<FV1Geometry, dim, NavierStokesNoUpwind<dim> >,
public NavierStokesUpwindRegister<CRFVGeometry, dim, NavierStokesNoUpwind<dim> >,
public NavierStokesUpwindRegister<HCRFVGeometry, dim, NavierStokesNoUpwind<dim> >
{
public:
typedef INavierStokesUpwind<dim> base_type;
static const size_t maxNumSCVF = base_type::maxNumSCVF;
static const size_t maxNumSH = base_type::maxNumSH;
public:
/// constructor
NavierStokesNoUpwind(){this->set_shape_ip_flag(false);}
/// update of values for FV1Geometry
template <typename TElem>
static void compute(const FV1Geometry<TElem, dim>* geo,
const MathVector<dim> vIPVel[maxNumSCVF],
number vUpShapeSh[maxNumSCVF][maxNumSH],
number vUpShapeIp[maxNumSCVF][maxNumSCVF],
number vConvLength[maxNumSCVF]);
/// update of values for CRFVGeometry
template <typename TElem>
static void compute(const CRFVGeometry<TElem, dim>* geo,
const MathVector<dim> vIPVel[maxNumSCVF],
number vUpShapeSh[maxNumSCVF][maxNumSH],
number vUpShapeIp[maxNumSCVF][maxNumSCVF],
number vConvLength[maxNumSCVF]);
/// update of values for CRFVGeometry
template <typename TElem>
static void compute(const HCRFVGeometry<TElem, dim>* geo,
const MathVector<dim> vIPVel[maxNumSCVF],
number vUpShapeSh[maxNumSCVF][maxNumSH],
number vUpShapeIp[maxNumSCVF][maxNumSCVF],
number vConvLength[maxNumSCVF]);
};
/////////////////////////////////////////////////////////////////////////////
// Full Upwind
/////////////////////////////////////////////////////////////////////////////
template <int dim>
class NavierStokesFullUpwind
: public INavierStokesUpwind<dim>,
public NavierStokesUpwindRegister<FV1Geometry, dim, NavierStokesFullUpwind<dim> >,
public NavierStokesUpwindRegister<CRFVGeometry, dim, NavierStokesFullUpwind<dim> >,
public NavierStokesUpwindRegister<HCRFVGeometry, dim, NavierStokesFullUpwind<dim> >
{
public:
typedef INavierStokesUpwind<dim> base_type;
static const size_t maxNumSCVF = base_type::maxNumSCVF;
static const size_t maxNumSH = base_type::maxNumSH;
public:
/// constructor
NavierStokesFullUpwind(){this->set_shape_ip_flag(false);}
/// update of values for FV1Geometry
template <typename TElem>
static void compute(const FV1Geometry<TElem, dim>* geo,
const MathVector<dim> vIPVel[maxNumSCVF],
number vUpShapeSh[maxNumSCVF][maxNumSH],
number vUpShapeIp[maxNumSCVF][maxNumSCVF],
number vConvLength[maxNumSCVF]);
/// update of values for CRFVGeometry
template <typename TElem>
static void compute(const CRFVGeometry<TElem, dim>* geo,
const MathVector<dim> vIPVel[maxNumSCVF],
number vUpShapeSh[maxNumSCVF][maxNumSH],
number vUpShapeIp[maxNumSCVF][maxNumSCVF],
number vConvLength[maxNumSCVF]);
/// update of values for CRFVGeometry
template <typename TElem>
static void compute(const HCRFVGeometry<TElem, dim>* geo,
const MathVector<dim> vIPVel[maxNumSCVF],
number vUpShapeSh[maxNumSCVF][maxNumSH],
number vUpShapeIp[maxNumSCVF][maxNumSCVF],
number vConvLength[maxNumSCVF]);
};
////////////////////////////////////////////////////////////////////////////////////
// Weighted Upwind
// upwinding between full and no upwind
// shapes computed as m_weight*no_upwind_shape + (1-m_weight)*full_upwind_shape
////////////////////////////////////////////////////////////////////////////////////
/*
template <int dim>
class NavierStokesWeightedUpwind
: public INavierStokesUpwind<dim>,
public NavierStokesUpwindRegister<CRFVGeometry, dim, NavierStokesWeightedUpwind<dim> >
{
public:
typedef INavierStokesUpwind<dim> base_type;
static const size_t maxNumSCVF = base_type::maxNumSCVF;
static const size_t maxNumSH = base_type::maxNumSH;
public:
/// constructor
NavierStokesWeightedUpwind(number weight = 0.5) : m_weight(weight)
{
this->set_shape_ip_flag(false);
}
void set_weight(number weight) {m_weight = weight;}
/// update of values for CRFVGeometry
template <typename TElem>
static void compute(const CRFVGeometry<TElem, dim>* geo,
const MathVector<dim> vIPVel[maxNumSCVF],
number vUpShapeSh[maxNumSCVF][maxNumSH],
number vUpShapeIp[maxNumSCVF][maxNumSCVF],
number vConvLength[maxNumSCVF]);
protected:
number m_weight;
};
*/
/////////////////////////////////////////////////////////////////////////////
// Skewed Upwind
/////////////////////////////////////////////////////////////////////////////
template <int dim>
class NavierStokesSkewedUpwind
: public INavierStokesUpwind<dim>,
public NavierStokesUpwindRegister<FV1Geometry, dim, NavierStokesSkewedUpwind<dim> >,
public NavierStokesUpwindRegister<CRFVGeometry, dim, NavierStokesSkewedUpwind<dim> >
{
public:
typedef INavierStokesUpwind<dim> base_type;
static const size_t maxNumSCVF = base_type::maxNumSCVF;
static const size_t maxNumSH = base_type::maxNumSH;
public:
/// constructor
NavierStokesSkewedUpwind(){this->set_shape_ip_flag(false);}
/// update of values for FV1Geometry
template <typename TElem>
static void compute(const FV1Geometry<TElem, dim>* geo,
const MathVector<dim> vIPVel[maxNumSCVF],
number vUpShapeSh[maxNumSCVF][maxNumSH],
number vUpShapeIp[maxNumSCVF][maxNumSCVF],
number vConvLength[maxNumSCVF]);
/// update of values for CRFVGeometry
template <typename TElem>
static void compute(const CRFVGeometry<TElem, dim>* geo,
const MathVector<dim> vIPVel[maxNumSCVF],
number vUpShapeSh[maxNumSCVF][maxNumSH],
number vUpShapeIp[maxNumSCVF][maxNumSCVF],
number vConvLength[maxNumSCVF]);
};
/////////////////////////////////////////////////////////////////////////////
// Linear Profile Skewed Upwind
/////////////////////////////////////////////////////////////////////////////
template <int dim>
class NavierStokesLinearProfileSkewedUpwind
: public INavierStokesUpwind<dim>,
public NavierStokesUpwindRegister<FV1Geometry, dim, NavierStokesLinearProfileSkewedUpwind<dim> >,
public NavierStokesUpwindRegister<CRFVGeometry, dim, NavierStokesLinearProfileSkewedUpwind<dim> >
{
public:
typedef INavierStokesUpwind<dim> base_type;
static const size_t maxNumSCVF = base_type::maxNumSCVF;
static const size_t maxNumSH = base_type::maxNumSH;
public:
/// constructor
NavierStokesLinearProfileSkewedUpwind(){this->set_shape_ip_flag(false);}
/// update of values for FV1Geometry
template <typename TElem>
static void compute(const FV1Geometry<TElem, dim>* geo,
const MathVector<dim> vIPVel[maxNumSCVF],
number vUpShapeSh[maxNumSCVF][maxNumSH],
number vUpShapeIp[maxNumSCVF][maxNumSCVF],
number vConvLength[maxNumSCVF]);
/// update of values for CRFVGeometry
template <typename TElem>
static void compute(const CRFVGeometry<TElem, dim>* geo,
const MathVector<dim> vIPVel[maxNumSCVF],
number vUpShapeSh[maxNumSCVF][maxNumSH],
number vUpShapeIp[maxNumSCVF][maxNumSCVF],
number vConvLength[maxNumSCVF]);
};
/////////////////////////////////////////////////////////////////////////////
// Positive Upwind
/////////////////////////////////////////////////////////////////////////////
template <int dim>
class NavierStokesPositiveUpwind
: public INavierStokesUpwind<dim>,
public NavierStokesUpwindRegister<FV1Geometry,dim, NavierStokesPositiveUpwind<dim> >
{
public:
typedef INavierStokesUpwind<dim> base_type;
static const size_t maxNumSCVF = base_type::maxNumSCVF;
static const size_t maxNumSH = base_type::maxNumSH;
public:
/// constructor
NavierStokesPositiveUpwind(){this->set_shape_ip_flag(true);}
/// update of values for FV1Geometry
template <typename TElem>
static void compute(const FV1Geometry<TElem, dim>* geo,
const MathVector<dim> vIPVel[maxNumSCVF],
number vUpShapeSh[maxNumSCVF][maxNumSH],
number vUpShapeIp[maxNumSCVF][maxNumSCVF],
number vConvLength[maxNumSCVF]);
};
/////////////////////////////////////////////////////////////////////////////
// Regular Upwind
/////////////////////////////////////////////////////////////////////////////
template <int dim>
class NavierStokesRegularUpwind
: public INavierStokesUpwind<dim>,
public NavierStokesUpwindRegister<FV1Geometry, dim, NavierStokesRegularUpwind<dim> >
{
public:
typedef INavierStokesUpwind<dim> base_type;
static const size_t maxNumSCVF = base_type::maxNumSCVF;
static const size_t maxNumSH = base_type::maxNumSH;
public:
/// constructor
NavierStokesRegularUpwind(){this->set_shape_ip_flag(true);}
/// update of values for FV1Geometry
template <typename TElem>
static void compute(const FV1Geometry<TElem, dim>* geo,
const MathVector<dim> vIPVel[maxNumSCVF],
number vUpShapeSh[maxNumSCVF][maxNumSH],
number vUpShapeIp[maxNumSCVF][maxNumSCVF],
number vConvLength[maxNumSCVF]);
};
} // namespace NavierStokes
} // end namespace ug
#endif /* __H__UG__NAVIER_STOKES__UPWIND__ */