forked from trixi-framework/TrixiParticles.jl
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathexamples.jl
More file actions
368 lines (348 loc) · 19.5 KB
/
examples.jl
File metadata and controls
368 lines (348 loc) · 19.5 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
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
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
# Smoke tests, i.e., tests to verify that examples are running without crashing,
# but without checking the correctness of the solution.
@testset verbose=true "Examples" begin
include("examples_fluid.jl")
@testset verbose=true "Structure" begin
@trixi_testset "structure/oscillating_beam_2d.jl" begin
@trixi_test_nowarn trixi_include(@__MODULE__,
joinpath(examples_dir(), "structure",
"oscillating_beam_2d.jl"),
tspan=(0.0, 0.1)) [
r"\[ Info: To create the self-interaction neighborhood search.*\n"
]
@test sol.retcode == ReturnCode.Success
if VERSION < v"1.12"
# Older Julia versions produce allocations because `get_neighborhood_search`
# is not type-stable with TLSPH.
@test count_rhs_allocations(sol, semi) < 200
else
@test count_rhs_allocations(sol, semi) == 0
end
end
@trixi_testset "structure/oscillating_beam_2d.jl with penalty force and viscosity" begin
@trixi_test_nowarn trixi_include(@__MODULE__,
joinpath(examples_dir(), "structure",
"oscillating_beam_2d.jl"),
tspan=(0.0, 0.1),
penalty_force=PenaltyForceGanzenmueller(alpha=0.1),
viscosity=ArtificialViscosityMonaghan(alpha=0.01)) [
r"\[ Info: To create the self-interaction neighborhood search.*\n"
]
@test sol.retcode == ReturnCode.Success
if VERSION < v"1.12"
# Older Julia versions produce allocations because `get_neighborhood_search`
# is not type-stable with TLSPH.
@test count_rhs_allocations(sol, semi) < 200
else
@test count_rhs_allocations(sol, semi) == 0
end
end
@trixi_testset "structure/oscillating_beam_2d.jl with rotating clamp" begin
# Simple rotation
movement_function(x,
t) = SVector(cos(2pi * t) * x[1] - sin(2pi * t) * x[2],
sin(2pi * t) * x[1] + cos(2pi * t) * x[2])
is_moving(t) = t < 0.1
prescribed_motion = PrescribedMotion(movement_function, is_moving)
@trixi_test_nowarn trixi_include(@__MODULE__,
joinpath(examples_dir(), "structure",
"oscillating_beam_2d.jl"),
tspan=(0.0, 0.2),
penalty_force=PenaltyForceGanzenmueller(alpha=0.1),
clamped_particles_motion=prescribed_motion) [
r"\[ Info: To create the self-interaction neighborhood search.*\n"
]
@test sol.retcode == ReturnCode.Success
if VERSION < v"1.12"
# Older Julia versions produce allocations because `get_neighborhood_search`
# is not type-stable with TLSPH.
@test count_rhs_allocations(sol, semi) < 200
else
@test count_rhs_allocations(sol, semi) == 0
end
end
end
@testset verbose=true "FSI" begin
@trixi_testset "fsi/falling_water_column_2d.jl" begin
@trixi_test_nowarn trixi_include(@__MODULE__,
joinpath(examples_dir(), "fsi",
"falling_water_column_2d.jl"),
tspan=(0.0, 0.4)) [
r"\[ Info: To create the self-interaction neighborhood search.*\n"
]
@test sol.retcode == ReturnCode.Success
if VERSION < v"1.12"
# Older Julia versions produce allocations because `get_neighborhood_search`
# is not type-stable with TLSPH.
@test count_rhs_allocations(sol, semi) < 200
else
@test count_rhs_allocations(sol, semi) == 0
end
end
@trixi_testset "fsi/dam_break_plate_2d.jl" begin
@trixi_test_nowarn trixi_include(@__MODULE__,
joinpath(examples_dir(), "fsi",
"dam_break_plate_2d.jl"),
# Use rounded dimensions to avoid warnings
initial_fluid_size=(0.15, 0.29),
tspan=(0.0, 0.4)) [
r"\[ Info: To create the self-interaction neighborhood search.*\n"
]
@test sol.retcode == ReturnCode.Success
if VERSION < v"1.12"
# Older Julia versions produce allocations because `get_neighborhood_search`
# is not type-stable with TLSPH.
@test count_rhs_allocations(sol, semi) < 200
else
@test count_rhs_allocations(sol, semi) == 0
end
end
@trixi_testset "fsi/dam_break_plate_2d.jl split integration" begin
# Test that this example does not work with only 500 iterations
@trixi_test_nowarn trixi_include(@__MODULE__,
joinpath(examples_dir(), "fsi",
"dam_break_plate_2d.jl"),
# Use rounded dimensions to avoid warnings
initial_fluid_size=(0.15, 0.29),
# Move plate closer to be able to use a shorter
# tspan and make CI faster.
plate_position=(0.2, 0.0),
tspan=(0.0, 0.2),
E=1e7, # Stiffer plate
maxiters=500) [
r"\[ Info: To create the self-interaction neighborhood search.*\n",
r"┌ Warning: Interrupted. Larger maxiters is needed.*\n",
r"└ @ SciMLBase.*\n"
]
@test sol.retcode == ReturnCode.MaxIters
if VERSION < v"1.12"
# Older Julia versions produce allocations because `get_neighborhood_search`
# is not type-stable with TLSPH.
@test count_rhs_allocations(sol, semi) < 200
else
@test count_rhs_allocations(sol, semi) == 0
end
# Now use split integration and verify that we need less than 400 iterations
split_integration = SplitIntegrationCallback(RDPK3SpFSAL35(), adaptive=false,
dt=5e-5)
@trixi_test_nowarn trixi_include(@__MODULE__,
joinpath(examples_dir(), "fsi",
"dam_break_plate_2d.jl"),
# Use rounded dimensions to avoid warnings
initial_fluid_size=(0.15, 0.29),
# Move plate closer to be able to use a shorter
# tspan and make CI faster.
plate_position=(0.2, 0.0),
tspan=(0.0, 0.2),
E=1e7, # Stiffer plate
maxiters=400,
extra_callback=split_integration) [
r"\[ Info: To create the self-interaction neighborhood search.*\n"
]
@test sol.retcode == ReturnCode.Success
if VERSION < v"1.12"
# Older Julia versions produce allocations because `get_neighborhood_search`
# is not type-stable with TLSPH.
@test count_rhs_allocations(sol, semi) < 200
else
@test count_rhs_allocations(sol, semi) == 0
end
# Now use split integration and verify that it is actually used for TLSPH
# by using a time step that is too large and verifying that it is crashing.
split_integration = SplitIntegrationCallback(RDPK3SpFSAL35(), adaptive=false,
dt=2e-4)
@trixi_test_nowarn trixi_include(@__MODULE__,
joinpath(examples_dir(), "fsi",
"dam_break_plate_2d.jl"),
# Use rounded dimensions to avoid warnings
initial_fluid_size=(0.15, 0.29),
# Move plate closer to be able to use a shorter
# tspan and make CI faster.
plate_position=(0.2, 0.0),
tspan=(0.0, 0.2),
E=1e7, # Stiffer plate
maxiters=500,
extra_callback=split_integration) [
r"\[ Info: To create the self-interaction neighborhood search.*\n",
"┌ Warning: Instability detected. Aborting\n",
r".*dt was forced below floating point epsilon.*\n",
r"└ @ SciMLBase.*\n"
]
@test sol.retcode == ReturnCode.Unstable
if VERSION < v"1.12"
# Older Julia versions produce allocations because `get_neighborhood_search`
# is not type-stable with TLSPH.
@test count_rhs_allocations(sol, semi) < 200
else
@test count_rhs_allocations(sol, semi) == 0
end
end
@trixi_testset "fsi/dam_break_gate_2d.jl" begin
@trixi_test_nowarn trixi_include(@__MODULE__,
joinpath(examples_dir(), "fsi",
"dam_break_gate_2d.jl"),
tspan=(0.0, 0.4),
dtmax=1e-3) [
r"\[ Info: To create the self-interaction neighborhood search.*\n"
]
@test sol.retcode == ReturnCode.Success
if VERSION < v"1.12"
# Older Julia versions produce allocations because `get_neighborhood_search`
# is not type-stable with TLSPH.
@test count_rhs_allocations(sol, semi) < 200
else
@test count_rhs_allocations(sol, semi) == 0
end
end
@trixi_testset "fsi/falling_spheres_2d.jl" begin
@trixi_test_nowarn trixi_include(@__MODULE__,
joinpath(examples_dir(), "fsi",
"falling_spheres_2d.jl"),
tspan=(0.0, 1.0)) [
r"\[ Info: To create the self-interaction neighborhood search.*\n"
]
@test sol.retcode == ReturnCode.Success
if VERSION < v"1.12"
# Older Julia versions produce allocations because `get_neighborhood_search`
# is not type-stable with TLSPH.
@test count_rhs_allocations(sol, semi) < 500
else
@test count_rhs_allocations(sol, semi) == 0
end
end
@trixi_testset "fsi/hydrostatic_water_column_2d.jl" begin
@trixi_test_nowarn trixi_include(@__MODULE__,
joinpath(examples_dir(), "fsi",
"hydrostatic_water_column_2d.jl"),
tspan=(0.0, 0.1), n_particles_plate_y=3) [
r"\[ Info: To create the self-interaction neighborhood search.*\n",
r"┌ Warning: keyword `n_clamped_particles` is deprecated.*\n",
r"│ caller = ip:0x0\n",
r"└ @ Core :-1\n"
]
@test sol.retcode == ReturnCode.Success
if VERSION < v"1.12"
# Older Julia versions produce allocations because `get_neighborhood_search`
# is not type-stable with TLSPH.
@test count_rhs_allocations(sol, semi) < 500
else
@test count_rhs_allocations(sol, semi) == 0
end
end
@trixi_testset "fsi/hydrostatic_water_column_2d.jl with EDAC" begin
@trixi_test_nowarn trixi_include(@__MODULE__,
joinpath(examples_dir(), "fsi",
"hydrostatic_water_column_2d.jl"),
tspan=(0.0, 0.1), n_particles_plate_y=3,
use_edac=true) [
r"\[ Info: To create the self-interaction neighborhood search.*\n",
r"┌ Warning: keyword `n_clamped_particles` is deprecated.*\n",
r"│ caller = ip:0x0\n",
r"└ @ Core :-1\n"
]
@test sol.retcode == ReturnCode.Success
if VERSION < v"1.12"
# Older Julia versions produce allocations because `get_neighborhood_search`
# is not type-stable with TLSPH.
@test count_rhs_allocations(sol, semi) < 500
else
@test count_rhs_allocations(sol, semi) == 0
end
end
end
@testset verbose=true "N-Body" begin
@trixi_testset "n_body/n_body_solar_system.jl" begin
@trixi_test_nowarn trixi_include(@__MODULE__,
joinpath(examples_dir(), "n_body",
"n_body_solar_system.jl"))
@test sol.retcode == ReturnCode.Success
@test count_rhs_allocations(sol, semi) == 0
end
@trixi_testset "n_body/n_body_benchmark_trixi.jl" begin
@trixi_test_nowarn trixi_include(@__MODULE__,
joinpath(examples_dir(), "n_body",
"n_body_benchmark_trixi.jl")) [
r"WARNING: Method definition interact!.*\n"
]
end
@trixi_testset "n_body/n_body_benchmark_reference.jl" begin
@trixi_test_nowarn trixi_include(@__MODULE__,
joinpath(examples_dir(), "n_body",
"n_body_benchmark_reference.jl"))
end
@trixi_testset "n_body/n_body_benchmark_reference_faster.jl" begin
@trixi_test_nowarn trixi_include(joinpath(examples_dir(), "n_body",
"n_body_benchmark_reference_faster.jl"))
end
end
@testset verbose=true "Postprocessing" begin
@trixi_testset "postprocessing/interpolation_plane.jl" begin
@trixi_test_nowarn trixi_include(@__MODULE__,
joinpath(examples_dir(), "postprocessing",
"interpolation_plane.jl"),
tspan=(0.0, 0.01)) [
r"WARNING: importing deprecated binding Makie.*\n",
r"WARNING: using deprecated binding Colors.*\n",
r"WARNING: using deprecated binding PlotUtils.*\n",
r"WARNING: Makie.* is deprecated.*\n",
r" likely near none:1\n",
r", use .* instead.\n",
r"┌ Info: The desired face size is not a multiple of the resolution [0-9.]+\.\n└ New resolution is set to [0-9.]+\.\n"
]
@test sol.retcode == ReturnCode.Success
end
@trixi_testset "postprocessing/interpolation_point_line.jl" begin
@trixi_test_nowarn trixi_include(@__MODULE__,
joinpath(examples_dir(), "postprocessing",
"interpolation_point_line.jl"))
@test sol.retcode == ReturnCode.Success
end
@trixi_testset "postprocessing/postprocessing.jl" begin
@trixi_test_nowarn trixi_include(@__MODULE__,
joinpath(examples_dir(),
"postprocessing",
"postprocessing.jl"))
@test sol.retcode == ReturnCode.Success
end
end
@testset verbose=true "Preprocessing" begin
@trixi_testset "preprocessing/packing_2d.jl" begin
@trixi_test_nowarn trixi_include(@__MODULE__,
joinpath(examples_dir(), "preprocessing",
"packing_2d.jl"))
@test sol.retcode == ReturnCode.Terminated
end
@trixi_testset "preprocessing/packing_2d.jl validation" begin
@trixi_test_nowarn trixi_include(@__MODULE__,
joinpath(examples_dir(), "preprocessing",
"packing_2d.jl"),
particle_spacing=0.4)
expected_coordinates = [-0.540548 -0.189943 0.191664 0.542741 -0.629391 -0.196159 0.197725 0.63081 -0.629447 -0.196158 0.19779 0.631121 -0.540483 -0.190015 0.191345 0.540433;
-0.541127 -0.630201 -0.630119 -0.539294 -0.190697 -0.196942 -0.196916 -0.190324 0.190875 0.197074 0.196955 0.190973 0.541206 0.630323 0.630178 0.541314]
@test isapprox(packed_ic.coordinates, expected_coordinates, atol=1e-5)
end
@trixi_testset "preprocessing/packing_3d.jl" begin
@trixi_test_nowarn trixi_include(@__MODULE__,
joinpath(examples_dir(), "preprocessing",
"packing_3d.jl"))
end
end
@testset verbose=true "DEM" begin
@trixi_testset "dem/rectangular_tank_2d.jl" begin
@trixi_test_nowarn trixi_include(@__MODULE__,
joinpath(examples_dir(), "dem",
"rectangular_tank_2d.jl"),
tspan=(0.0, 0.1))
@test sol.retcode == ReturnCode.Success
@test count_rhs_allocations(sol, semi) == 0
end
end
@trixi_testset "dem/collapsing_sand_pile_3d.jl" begin
@trixi_test_nowarn trixi_include(@__MODULE__,
joinpath(examples_dir(), "dem",
"collapsing_sand_pile_3d.jl"),
tspan=(0.0, 0.1))
@test sol.retcode == ReturnCode.Success
@test count_rhs_allocations(sol, semi) == 0
end
end