forked from TJFord/iblb2d
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmainRgd.cpp
128 lines (107 loc) · 2.97 KB
/
mainRgd.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
121
122
123
124
125
126
127
128
#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="Velchannel.txt";
//string fin="vonkarman.txt";
string fgeom="fgeom.txt";
string cellout="cellRst.txt";
string cellRef="cellRef.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 =10000;//10000;//2000;
int nts =500001;//500000;
//cellInChanl.moveSolidTo(395,50);
//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++){
cellInChanl.interpret();
rbc.updateHalf();
//rbc.computeForce();
rbc.computeReference();
rbc.computeRigidForce();
cellInChanl.spread();
channel.applyForce();
channel.collide();
channel.stream();
channel.applyBC();
//---compute fluid velocity and interpret velocity after force spreading---//
cellInChanl.interpret();
//---update position at a full time step---//
rbc.update();
cellInChanl.periodic();
if (i%nSave ==0 ){
channel.writeVelocity(fluidout);
channel.writeForce(fluidForce);
rbc.writeGeometry(cellout);
rbc.writeForce(cellForce);
rbc.writeReferenceGeometry(cellRef);
rbc.writeVelocity(cellVelocity);
cout<<"time step "<<i<<" finished"<<endl;
//cout<<"area "<<rbc.computeArea()/rbc.A0<<endl;
cellInChanl.writeLog(log,i);
}
}
clock_t end = clock();
double elapsedSecs = double(end-begin)/CLOCKS_PER_SEC;
cout<<"time elapsed "<<elapsedSecs<<endl;
return 0;
}