-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathmainFluid.cpp
104 lines (87 loc) · 2.17 KB
/
mainFluid.cpp
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
#include <cstdlib>
#include <iostream>
#include <cmath>
#include <iomanip>
#include <fstream>
#include <string>
#include <ctime>
//#include <climits>
using namespace std;
#include "lb.h"
#include "boundary.h"
#include "units.h"
#include "cell.h"
#include "ibm.h"
int main(int argc, char *argv[])
{
//fstream in("input.txt",ios::in);
string fin="input.txt";
//string out="rst.txt";
string cin="cellInput.txt";
//string in="inputForce.txt";
//string fin="inputChannel.txt";
//string fin="shear.txt";
//string fin="vonkarman.txt";
string fgeom="fgeom.txt";
string cellout="cellRst.txt";
string fluidout="fluidRst.txt";
string log="Log.txt";
LB channel;
channel.readInput(fin);
channel.init();
channel.printInfor();
channel.writeGeometry(fgeom);
channel.writeLog(log);
/* Cell rbc;
rbc.readInput(cin);
rbc.init();
rbc.nondimension(*channel.pUnits);
//rbc.output(out);
//LB a;
//a.readInput(in);
IBM cellInChanl(&channel,&rbc);
*/
int nSave = 5000;
int nts =100000;
//a.init();
//a.printInfor();// this one should come after init();
//a.output(out);
clock_t begin = clock();
/* for (int i=0;i<1200;i++)
{
channel.computeVelocity();
//a.collideSwap();
//a.streamSwap();
//a.applyBC();
//if (i%nSave ==0 )
// a.output(out);
//channel.collideSwap();
//channel.streamSwap();
channel.collide();
channel.stream();
channel.applyBC();
}*/
//clock_t begin = clock();
//cellInChanl.output(cellout);
for (int i=0;i<nts;i++){
//channel.computeVelocity();
//cellInChanl.interpret();
//rbc.updateHalf();
//rbc.computeForce();
//cellInChanl.spread();
channel.applyForce();
channel.collide();
channel.stream();
channel.applyBC();
//rbc.update();
if (i%nSave ==0 ){
channel.writeVelocity(fluidout);
//rbc.output(cellout);
cout<<"time step "<<i<<" finsished"<<endl;
}
}
clock_t end = clock();
double elapsedSecs = double(end-begin)/CLOCKS_PER_SEC;
cout<<"time elapsed "<<elapsedSecs<<endl;
return 0;
}