forked from stanfordhpccenter/HTR-solver
-
Notifications
You must be signed in to change notification settings - Fork 0
/
config_schema.lua
335 lines (318 loc) · 8.9 KB
/
config_schema.lua
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
-- Copyright (c) "2019, by Stanford University
-- Developer: Mario Di Renzo
-- Affiliation: Center for Turbulence Research, Stanford University
-- URL: https://ctr.stanford.edu
-- Citation: Di Renzo, M., Lin, F., and Urzay, J. (2020).
-- HTR solver: An open-source exascale-oriented task-based
-- multi-GPU high-order code for hypersonic aerothermodynamics.
-- Computer Physics Communications 255, 107262"
-- All rights reserved.
--
-- Redistribution and use in source and binary forms, with or without
-- modification, are permitted provided that the following conditions are met:
-- * Redistributions of source code must retain the above copyright
-- notice, this list of conditions and the following disclaimer.
-- * Redistributions in binary form must reproduce the above copyright
-- notice, this list of conditions and the following disclaimer in the
-- documentation and/or other materials provided with the distribution.
--
-- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
-- ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
-- WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
-- DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE FOR ANY
-- DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
-- (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
-- LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
-- ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-- (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
-- SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
local Exports = {}
-- Helper definitions
Exports.Volume = {
fromCell = Array(3,int),
uptoCell = Array(3,int),
}
Exports.Window = {
fromCell = Array(2,int),
uptoCell = Array(2,int),
}
Exports.VolumeProbe = {
outDir = String(256),
interval = int,
volume = Exports.Volume,
}
Exports.Species = {
Name = String(10),
MolarFrac = double,
}
Exports.Mixture = {
Species = UpTo(10, Exports.Species),
}
-- Unions & enumeration constants
Exports.MixtureProfile = Union{
Constant = {
Mixture = Exports.Mixture,
},
File = {
FileDir = String(256),
},
Incoming = {},
}
Exports.TempProfile = Union{
Constant = {
temperature = double,
},
File = {
FileDir = String(256),
},
Incoming = {},
}
Exports.InflowProfile = Union{
Constant = {
velocity = Array(3,double),
},
File = {
FileDir = String(256),
},
Incoming = {
addedVelocity = double,
},
}
Exports.FlowBC = Union{
Dirichlet = {
VelocityProfile = Exports.InflowProfile,
TemperatureProfile = Exports.TempProfile,
MixtureProfile = Exports.MixtureProfile,
P = double,
},
Periodic = {},
Symmetry = {},
AdiabaticWall = {},
IsothermalWall = {
TemperatureProfile = Exports.TempProfile,
},
NSCBC_Inflow = {
VelocityProfile = Exports.InflowProfile,
TemperatureProfile = Exports.TempProfile,
MixtureProfile = Exports.MixtureProfile,
P = double,
},
NSCBC_Outflow = {
P = double,
},
SuctionAndBlowingWall = {
TemperatureProfile = Exports.TempProfile,
Xmin = double,
Xmax = double,
X0 = double,
sigma = double,
Zw = double,
A = UpTo(20, double),
omega = UpTo(20, double),
beta = UpTo(20, double),
},
IncomingShock = {
iShock = int,
beta = double,
Mixture = Exports.Mixture,
velocity0 = Array(3,double),
pressure0 = double,
temperature0 = double,
},
RecycleRescaling = {
iRecycle = int,
VelocityProfile = Exports.InflowProfile,
TemperatureProfile = Exports.TempProfile,
MixtureProfile = Exports.MixtureProfile,
P = double,
},
}
Exports.ViscosityModel = Union{
Constant = {
Visc = double,
},
PowerLaw = {
ViscRef = double,
TempRef = double,
},
Sutherland = {
ViscRef = double,
TempRef = double,
SRef = double,
},
}
Exports.TurbForcingModel = Union{
OFF = {},
CHANNEL = {
RhoUbulk = double,
Forcing = double,
},
}
Exports.MixtureModel = Union{
ConstPropMix = {
gasConstant = double,
gamma = double,
prandtl = double,
viscosityModel = Exports.ViscosityModel,
},
IsentropicMix = {
gasConstant = double,
gamma = double,
},
AirMix = {},
CH41StMix = {},
}
Exports.FlowInitCase = Union{
Uniform = {
pressure = double,
temperature = double,
velocity = Array(3,double),
molarFracs = Exports.Mixture,
},
Random = {
pressure = double,
temperature = double,
magnitude = double,
molarFracs = Exports.Mixture,
},
TaylorGreen2DVortex = {
pressure = double,
temperature = double,
velocity = double,
molarFracs = Exports.Mixture,
},
TaylorGreen3DVortex = {
pressure = double,
temperature = double,
velocity = double,
molarFracs = Exports.Mixture,
},
Perturbed = {
pressure = double,
temperature = double,
velocity = Array(3,double),
molarFracs = Exports.Mixture,
},
RiemannTestOne = {},
RiemannTestTwo = {},
SodProblem = {},
LaxProblem = {},
ShuOsherProblem = {},
VortexAdvection2D = {
pressure = double,
temperature = double,
velocity = Array(2,double),
molarFracs = Exports.Mixture,
},
GrossmanCinnellaProblem = {},
ChannelFlow = {
pressure = double,
temperature = double,
velocity = double,
StreaksIntensity = double,
RandomIntensity = double,
molarFracs = Exports.Mixture,
},
Restart = {
restartDir = String(256),
},
}
Exports.GridType = Enum('Uniform','Cosine','TanhMinus','TanhPlus','Tanh','SinhMinus','SinhPlus','Sinh')
-- Sections of config struct
Exports.MappingStruct = {
-- number of tiles in which to split the domain
tiles = Array(3,int),
-- number of tiles to allocate to each rank
tilesPerRank = Array(3,int),
-- unique id assigned to each sample, according to its order in the command
-- line (first sample is 0, second is 1 etc.); the initial value of this
-- option is irrelevant, it will be overriden by the code
sampleId = int,
-- output directory for each sample; the initial value of this option is
-- irrelevant, it will be overriden by the code
outDir = String(256),
-- expected wall-clock execution time [minutes]
wallTime = int,
}
Exports.GridStruct = {
-- number of cells in the fluid grid
xNum = int,
yNum = int,
zNum = int,
-- coordinates of the fluid grid's origin [m]
origin = Array(3,double),
-- width of the fluid grid [m]
xWidth = double,
yWidth = double,
zWidth = double,
-- grid type in each direction
xType = Exports.GridType,
yType = Exports.GridType,
zType = Exports.GridType,
-- grid stretching factor in each direction
xStretching = double,
yStretching = double,
zStretching = double,
}
Exports.BCStruct = {
xBCLeft = Exports.FlowBC,
xBCRight = Exports.FlowBC,
yBCLeft = Exports.FlowBC,
yBCRight = Exports.FlowBC,
zBCLeft = Exports.FlowBC,
zBCRight = Exports.FlowBC,
}
Exports.IntegratorStruct = {
startIter = int,
startTime = double,
resetTime = bool,
maxIter = int,
maxTime = double,
cfl = double,
fixedDeltaTime = double,
-- implicit or explicit approach for chemistry
implicitChemistry = bool,
---- flag to activate the hybrid scheme
hybridScheme = bool,
-- vorticity scale for the Ducros sensor
vorticityScale = double,
}
Exports.FlowStruct = {
mixture = Exports.MixtureModel,
initCase = Exports.FlowInitCase,
resetMixture = bool,
initMixture = Exports.Mixture,
bodyForce = Array(3,double),
turbForcing = Exports.TurbForcingModel,
}
Exports.IOStruct = {
-- whether to write restart files (requires compiling with HDF support)
wrtRestart = bool,
-- how often to write restart files
restartEveryTimeSteps = int,
-- Probes
probesSamplingInterval = int,
probes = UpTo(5, Exports.Volume),
-- Two-diemnsional averages
AveragesSamplingInterval = int,
ResetAverages = bool,
YZAverages = UpTo(10, Exports.Volume),
XZAverages = UpTo(10, Exports.Volume),
XYAverages = UpTo(10, Exports.Volume),
-- One-diemnsional averages
XAverages = UpTo(10, Exports.Volume),
YAverages = UpTo(10, Exports.Volume),
ZAverages = UpTo(10, Exports.Volume),
-- Volume probes
volumeProbes = UpTo(10, Exports.VolumeProbe),
}
-- Main config struct
Exports.Config = {
Mapping = Exports.MappingStruct,
Grid = Exports.GridStruct,
BC = Exports.BCStruct,
Integrator = Exports.IntegratorStruct,
Flow = Exports.FlowStruct,
IO = Exports.IOStruct,
}
return Exports