forked from TJFord/iblb2d
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmainIBM.cpp
120 lines (102 loc) · 2.99 KB
/
mainIBM.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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
#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 in="input.txt";
//string out="rst.txt";
string cin="cellInput.txt";
//string cin="circle.txt";
//string cin="sphere.txt";
//string cin="chain.txt";
//string in="inputForce.txt";
//string fin="inputChannel.txt";
string fin="shear.txt";
//string fin="channel.txt";
//string fin="vonkarman.txt";
string fgeom="fgeom.txt";
string cellout="cellRst.txt";
string cellForce="cellForce.txt";
string cellVelocity="cellVelocity.txt";
string fluidout="fluidRst.txt";
string fluidForce="fluidForce.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);
rbc.writeLog(log);
IBM cellInChanl(&channel,&rbc);
int nSave =50000;
int nts =2500001;//100000;
//a.init();
//a.printInfor();// this one should come after init();
//a.output(out);
//clock_t begin = clock();
for (int i=0;i<12000;i++){
//channel.collideSwap();
//channel.streamSwap();
channel.collide();
channel.stream();
channel.applyBC();
}
// channel.writeVelocity(fluidout);
clock_t begin = clock();
//cellInChanl.output(cellout);
for (int i=0;i<nts;i++){
//---compute fluid velocity and interpret velocity---//
//channel.computeVelocity();
cellInChanl.interpret();
//---update temporary position at half time step---//
rbc.updateHalf();
//---compute solid force based on temporary position---//
rbc.computeForce();
//rbc.computeReference();
//rbc.computeRigidForce();
//---spread force to fluid---//
cellInChanl.spread();
//---LB fluid solver---//
channel.applyForce();
channel.collide();
channel.stream();
channel.applyBC();
//---compute fluid velocity and interpret velocity after force spreading---//
//channel.computeVelocity();
cellInChanl.interpret();
//---update position at a full time step---//
rbc.update();
if (i%nSave ==0 ){
channel.writeVelocity(fluidout);
channel.writeForce(fluidForce);
rbc.writeGeometry(cellout);
rbc.writeForce(cellForce);
rbc.writeVelocity(cellVelocity);
cout<<"time step "<<i<<" finsished"<<endl;
cout<<"area "<<rbc.computeArea(0)/rbc.A0[0]<<endl;
cellInChanl.writeLog(log,i);
}
}
clock_t end = clock();
double elapsedSecs = double(end-begin)/CLOCKS_PER_SEC;
cout<<"time elapsed "<<elapsedSecs<<endl;
return 0;
}