-
Notifications
You must be signed in to change notification settings - Fork 0
/
FluidEquation.h
519 lines (437 loc) · 15.3 KB
/
FluidEquation.h
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
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
//
// Created by Malachi Phillips on 11/10/16.
//
#ifndef CFD_HW_FLUIDEQUATION_H
#define CFD_HW_FLUIDEQUATION_H
#include <vector>
#include "RuntimeParameters.h"
#include "IntCond.h"
#include <boost/multi_array.hpp>
#include <cassert>
#include <fstream>
#include <sstream>
#include <iostream>
#include <cmath>
#include <iostream>
#include <iomanip>
///*
// * Forwrd declarations
//*/
//
//class FluidEquation;
typedef std::vector<std::vector<double>> matrix;
//============================================================================================================
/*
* Struct holding order of passed parameters, regardless if used
*/
//============================================================================================================
struct DOF_IDS{
const unsigned static int lo = 0;
const unsigned static int lf = 1;
const unsigned static int nl = 2;
const unsigned static int ho = 3;
const unsigned static int hf = 4;
const unsigned static int nh = 5;
const unsigned static int tf = 6;
const unsigned static int nt = 7;
const unsigned static int c = 8;
const unsigned static int eps = 9;
const unsigned static int wfreq = 10;
};
//============================================================================================================
/* Base class for equation
*
* An equation holds information about the PDE and the method of solution
* ie. ut + cux = 0 is a PDE, but has several methods of being solved
* Each method would have its own equation (although they can easily borrow off others)
*/
//============================================================================================================
class FluidEquation{
public:
// Constructor
FluidEquation(std::vector<double>& args);
FluidEquation* make_fluid_equation(std::string &equationType, std::vector<double>& args);
virtual void apply_step() = 0; // Pure virtual, must be implemented
virtual void write_to_file(std::string& template_file_name, unsigned int currentStep) = 0;
void convert_idx_to_pos(unsigned int idx, double &pos);
// getters -- needed by the procedure
unsigned int get_nt(){return nt_;};
unsigned int get_nl(){return nl_;};
double get_lo(){return lo_;};
double get_dx(){return dx_;};
double get_lf(){return lf_;};
std::vector<double> uSolutions_; // For 1D case
matrix uSolutionsMatrix_; // For 2D case
matrix vSolutionsMatrix_; // For 2D paired case
/*
* Matrix solutions for lid-driven cavity problem
*/
matrix phi_; // streams
matrix omega_; // vorticity
matrix p_; // pressure
matrix w_;
/*
* std::vector<double>'s used to hold Sod Shock Solutions
*/
std::vector<double> rho_;
std::vector<double> rho_u_;
std::vector<double> E_;
std::vector<double> pressure_;
protected:
// Base class does not include solutions (difference between 1D and 2D equations)
// Data shared by all solution procedures
double lo_;
double lf_;
unsigned int nl_;
unsigned int nt_;
double dx_;
private:
};
//============================================================================================================
/*
* One dimensional linear advection equation solved by upwind/downwind FTBS/FTFS method (first ordr)
*/
//============================================================================================================
class UpwindLinWave : public FluidEquation{
public:
// constructor
UpwindLinWave(std::vector<double>& args);
void apply_step();
void write_to_file(std::string& template_file_name, unsigned int currentStep);
protected:
// Data needed for linear wave equation
double c_;
double tf_;
double dt_;
double CFL_;
private:
};
//============================================================================================================
/*
* DiffusionEquation, solve by FTCS
*/
//============================================================================================================
class DiffusionEquationFTCS : public FluidEquation{
public:
// constructor
DiffusionEquationFTCS(std::vector<double>&args);// : DiffusionEquation(args) {}
void apply_step();
void write_to_file(std::string& template_file_name, unsigned int currentStep);
protected:
// Data needed for linear wave equation
double nu_;
double tf_;
double dt_;
double alpha_;
private:
};
//============================================================================================================
/*
* One dimensional burger equation, FTCS
*/
//============================================================================================================
class BurgerEquationFTCS : public FluidEquation{
public:
// constructor
BurgerEquationFTCS(std::vector<double>&args);
void apply_step();
void write_to_file(std::string& template_file_name, unsigned int currentStep);
protected:
// Data needed for linear wave equation
double dt_;
double eps_;
double T_ = 0;
private:
};
//============================================================================================================
/*
* One dimensional viscous burger equation, FTCS
*/
//============================================================================================================
class ViscousBurgerEquationFTCS : public FluidEquation{
public:
// constructor
ViscousBurgerEquationFTCS(std::vector<double>&args);
void apply_step();
void write_to_file(std::string& template_file_name, unsigned int currentStep);
protected:
double nu_;
double dt_;
double eps_;
double T_ = 0;
private:
};
//============================================================================================================
/*
* Base Class for Sod Shock Tube Problem
*/
//============================================================================================================
class SodShockBase : public FluidEquation{
public:
// constructor
SodShockBase(std::vector<double>&args);
virtual void apply_step() = 0;
void write_to_file(std::string& template_file_name, unsigned int currentStep);
protected:
double nu_;
double dt_;
double eps_;
double T_ = 0;
double gamma_ = 1.4;
private:
};
//============================================================================================================
/*
* Simple Upwind Scheme for Sod Shock Tube
*/
//============================================================================================================
class SodShockUpwind : public SodShockBase{
public:
// constructor
SodShockUpwind(std::vector<double>&args);
virtual void apply_step();
void write_to_file(std::string& template_file_name, unsigned int currentStep);
protected:
private:
};
//============================================================================================================
/*
* MacCormack Scheme for Sod Shock Tube
*/
//============================================================================================================
class SodShockMacCormack : public SodShockBase{
public:
// constructor
SodShockMacCormack(std::vector<double>&args);
virtual void apply_step();
void write_to_file(std::string& template_file_name, unsigned int currentStep);
protected:
private:
};
//============================================================================================================
/*
* LaxWendroff Scheme for Sod Shock Tube
*/
//============================================================================================================
class SodShockLaxWendroff : public SodShockBase{
public:
// constructor
SodShockLaxWendroff(std::vector<double>&args);
virtual void apply_step();
void write_to_file(std::string& template_file_name, unsigned int currentStep);
protected:
private:
};
//============================================================================================================
/*
* LaxWendroff Scheme for Sod Shock Tube
*/
//============================================================================================================
class SodShockLaxWendroffDissipation : public SodShockBase{
public:
// constructor
SodShockLaxWendroffDissipation(std::vector<double>&args);
virtual void apply_step();
void write_to_file(std::string& template_file_name, unsigned int currentStep);
protected:
private:
};
//============================================================================================================
/*
* Rusanov Scheme for Sod Shock Tube
*/
//============================================================================================================
class SodShockRusanov : public SodShockBase{
public:
// constructor
SodShockRusanov(std::vector<double>&args);
virtual void apply_step();
void write_to_file(std::string& template_file_name, unsigned int currentStep);
protected:
private:
};
//============================================================================================================
/*
* Gudonov Scheme for Sod Shock Tube
*/
//============================================================================================================
class SodShockGudonov : public SodShockBase{
public:
// constructor
SodShockGudonov(std::vector<double>&args);
virtual void apply_step();
void write_to_file(std::string& template_file_name, unsigned int currentStep);
protected:
private:
};
//============================================================================================================
/*
* Classic (original) Roe Scheme for Sod Shock Tube
*/
//============================================================================================================
class SodShockRoe : public SodShockBase{
public:
// constructor
SodShockRoe(std::vector<double>&args);
virtual void apply_step();
void write_to_file(std::string& template_file_name, unsigned int currentStep);
protected:
private:
};
//============================================================================================================
/*
* TVD Scheme with UltraBee Flux Limiter for Sod Shock Tube
*/
//============================================================================================================
class SodShockUB : public SodShockBase{
public:
// constructor
SodShockUB(std::vector<double>&args);
virtual void apply_step();
void write_to_file(std::string& template_file_name, unsigned int currentStep);
void flux(double r, double c, double& val);
protected:
private:
};
//============================================================================================================
/*
* Base class for two dimensional problems
*/
//============================================================================================================
class TwoDimFluidEquation : public FluidEquation{
public:
// constructor
TwoDimFluidEquation(std::vector<double>& args);
virtual void apply_step() = 0;
void write_to_file(std::string& template_file_name, unsigned int currentStep);
void convert_idx_to_pos_y(unsigned int idx, double &pos);
// getters
unsigned int get_nh(){return nh_;};
double get_ho(){return ho_;};
double get_dy(){return dy_;};
double get_hf(){return hf_;};
protected:
// Data needed for all 2D test problems
double ho_;
double hf_;
unsigned int nh_;
double dy_;
private:
};
//============================================================================================================
/*
* 2D linear advection equation FTFS/FTBS
*/
//============================================================================================================
class TwoDimLinAdvectionEquation : public TwoDimFluidEquation{
public:
// constructor
TwoDimLinAdvectionEquation(std::vector<double>& args);
void apply_step();
void write_to_file(std::string& template_file_name, unsigned int currentStep);
protected:
// Data needed for linear wave equation
double c_;
double tf_;
double dt_;
private:
};
//============================================================================================================
/*
* 2D Non-linear coupled advective equation
*/
//============================================================================================================
class MultiDimNonLinAdvEqn : public TwoDimFluidEquation{
public:
// constructor
MultiDimNonLinAdvEqn(std::vector<double>& args);
void apply_step();
void write_to_file(std::string& template_file_name, unsigned int currentStep);
protected:
double eps_;
double dt_;
double T_ = 0;
private:
};
//============================================================================================================
/*
* 2D Diffusion Equation
*/
//============================================================================================================
class MultiDimDiffusion : public TwoDimFluidEquation{
public:
//constructor
MultiDimDiffusion(std::vector<double>& args);
void apply_step();
void write_to_file(std::string& template_file_name, unsigned int currentStep);
protected:
double nu_;
double dt_;
double tf_;
private:
};
//============================================================================================================
/*
* 2D Diffusion Equation
*/
//============================================================================================================
class MultiDimBurger : public TwoDimFluidEquation{
public:
MultiDimBurger(std::vector<double>& args);
void apply_step();
void write_to_file(std::string& template_file_name, unsigned int currentStep);
protected:
double eps_;
double dt_;
double T_ = 0;
double nu_; // for diffusive portion
private:
};
//============================================================================================================
/*
* 2D Laplacian Solver
*/
//============================================================================================================
class Laplacian : public TwoDimFluidEquation{
public:
// constructor
Laplacian(std::vector<double>& args);
void apply_step();
void write_to_file(std::string& template_file_name, unsigned int currentStep);
protected:
// Data needed for linear wave equation
double eps_;
double beta_;
bool isConverged_ = false;
private:
};
//============================================================================================================
/*
* 2D Lid Driven Cavity
*/
//============================================================================================================
class LidDriven : public TwoDimFluidEquation{
public:
// constructor
LidDriven(std::vector<double>& args);
void apply_step();
void write_to_file(std::string& template_file_name, unsigned int currentStep);
void apply_stream_func();
void apply_vorticity_boundary();
void apply_rhs();
void update_vorticity();
void update_velocity();
void update_pressure();
matrix pTemp_; //temporary p matrix
protected:
// Data needed for linear wave equation
double eps_;
double beta_;
double Re_; // Use the time specification for the reynolds number
// For now, force sub iterations for stream function solution to be the same as overall
// Force user to pick delta X, delta Y to be the same
// Force numerical epsilon to be the same for the stream function solution and others
bool isConverged_ = false;
private:
};
#endif //CFD_HW_FLUIDEQUATION_H