-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.cpp
More file actions
226 lines (165 loc) · 5.57 KB
/
Copy pathmain.cpp
File metadata and controls
226 lines (165 loc) · 5.57 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
#include <iostream>
#include <vector>
#include <string>
#include <algorithm>
#include <cctype>
#include "io/lookUpInFile.h"
#include "io/PBMWriter.h"
#include "numerics/TimeIntegrator.h"
#include "pbm/Pbm0d.h"
#include "pbm/PBMState.h"
static std::string to_key(std::string s)
{
std::transform
(
s.begin(), s.end(), s.begin(),
[](unsigned char c) { return char(std::tolower(c)); }
);
s.erase
(
std::remove_if
(
s.begin(), s.end(),
[](unsigned char c) { return !std::isalnum(c); }
),
s.end()
);
return s;
}
int main()
{
const std::string inputFile = "SetPbm";
const std::string outputFile = "SetOutput";
// -------------------------------------------------------------------------
// Read PBM configuration
// -------------------------------------------------------------------------
PBMConfig cfg = setPBMConfig(inputFile);
PBM0D pbm(cfg);
// -------------------------------------------------------------------------
// Read global simulation parameters
// -------------------------------------------------------------------------
double dt = lookUpInFile<double>(inputFile, "dt");
const double epsilon = lookUpInFile<double>(inputFile, "epsilon");
const double rho_d = lookUpInFile<double>(inputFile, "rho_d");
const double tFinal = lookUpInFile<double>(inputFile, "t_final");
const double Ymin = lookUpInFile<double>(inputFile, "Ymin");
const double Y0 =
lookUpInFile<double>(inputFile, "MassContent");
// -------------------------------------------------------------------------
// Construct initial PBM state
// -------------------------------------------------------------------------
std::vector<double> y(cfg.M + 1, 0.0);
{
const std::string raw =
lookUpInFile<std::string>(inputFile, "Initial");
const std::string key = to_key(raw);
PBMState st0
(
std::vector<double>(cfg.M, 0.0),
0.0,
cfg.P,
rho_d
);
if (key == "uniform")
{
const double Dmin =
lookUpInFile<double>(inputFile, "Dmin");
const double Dmax =
lookUpInFile<double>(inputFile, "Dmax");
st0 =
PBMState::Uniform
(
Dmin,
Dmax,
cfg.P,
Y0,
rho_d
);
}
else if (key == "rosinrammler")
{
const double shape =
lookUpInFile<double>(inputFile, "shape");
const double scale =
lookUpInFile<double>(inputFile, "scale");
st0 =
PBMState::RosinRammler
(
shape,
scale,
cfg.P,
Y0,
rho_d
);
}
else
{
std::cerr
<< "Unknown Initial = '" << raw << "'.\n"
<< "Supported types: Uniform, RosinRammler.\n";
return 2;
}
for (int i = 0; i < cfg.M; ++i)
{
y[size_t(i)] = st0.N()[size_t(i)];
}
y[size_t(cfg.M)] = st0.Y();
}
// -------------------------------------------------------------------------
// Create output writer
// -------------------------------------------------------------------------
PBMWriter writer(outputFile, cfg.M);
// -------------------------------------------------------------------------
// Time integration loop
// -------------------------------------------------------------------------
double time = 0.0;
int nSteps = 0;
while (time < tFinal)
{
// ---------------------------------------------------------------------
// Write diagnostics from the current state
// ---------------------------------------------------------------------
{
PBMState state(y, cfg.P, rho_d);
writer.write(time, state);
}
++nSteps;
// ---------------------------------------------------------------------
// Advance one time step
// ---------------------------------------------------------------------
const double dtUsed = dt;
const bool accepted =
Integrator::step(dt, epsilon, cfg.M + 1, pbm, rho_d, y);
if (!accepted)
{
continue;
}
time += dtUsed;
// ---------------------------------------------------------------------
// Stop if the dispersed phase vanished
// ---------------------------------------------------------------------
if (y[size_t(cfg.M)] <= Ymin)
{
time += dtUsed;
std::cout
<< "Dispersed phase vanished at step "
<< nSteps << ".\n";
break;
}
}
// -------------------------------------------------------------------------
// Write final state
// -------------------------------------------------------------------------
{
PBMState finalState(y, cfg.P, rho_d);
writer.write(time, finalState);
}
// -------------------------------------------------------------------------
// Final report
// -------------------------------------------------------------------------
std::cout
<< "Simulation completed in "
<< nSteps
<< " time steps.\n";
return 0;
}