Skip to content

Commit 12d30e6

Browse files
svchbefaulhaber
andauthored
Fix bib (#914)
* update bib * Update refs.bib * Update refs.bib * update refs * remove double escapes * fix entry * fix citation --------- Co-authored-by: Erik Faulhaber <[email protected]>
1 parent 600f4c5 commit 12d30e6

File tree

5 files changed

+427
-431
lines changed

5 files changed

+427
-431
lines changed

docs/literate/src/tut_packing.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ background_pressure = 1.0
140140

141141
# For particle interaction, we select a [smoothing kernel](@ref smoothing_kernel)
142142
# with a suitable smoothing length. Empirically, a factor of `0.8` times the
143-
# particle spacing gives good results [neher2025robustefficientpreprocessingtechniques](@cite).
143+
# particle spacing gives good results [Neher2025](@cite).
144144
smoothing_kernel = SchoenbergQuinticSplineKernel{2}()
145145
smoothing_length = 0.8 * particle_spacing
146146

@@ -203,7 +203,7 @@ plot(packed_ic)
203203
plot!(geometry, seriestype=:path, color=:black, label=nothing, linewidth=2)
204204

205205
# We can see that the particles now stay inside the geometry,
206-
# but their distribution near the surface can still be improved by adding boundary particles [neher2025robustefficientpreprocessingtechniques](@cite).
206+
# but their distribution near the surface can still be improved by adding boundary particles [Neher2025](@cite).
207207
# Therefore, we set up a dedicated boundary packing system
208208
# by setting `is_boundary = true`.
209209
# For convex geometries, it is useful to slightly compress the

docs/src/preprocessing/preprocessing.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -302,7 +302,7 @@ Pages = [joinpath("preprocessing", "geometries", "io.jl")]
302302
```
303303

304304
# [Particle Packing](@id particle_packing)
305-
To obtain a body-fitted and isotropic particle distribution, an initial configuration (see [Sampling of Geometries](@ref sampling_of_geometries)) is first generated. This configuration is then packed using a [`ParticlePackingSystem`](@ref) following the steps introduced in [neher2025robustefficientpreprocessingtechniques](@cite).
305+
To obtain a body-fitted and isotropic particle distribution, an initial configuration (see [Sampling of Geometries](@ref sampling_of_geometries)) is first generated. This configuration is then packed using a [`ParticlePackingSystem`](@ref) following the steps introduced in [Neher2025](@cite).
306306
For a hands-on tutorial with complete examples, see the particle packing tutorial.
307307
The preprocessing pipeline consists of the following steps:
308308

0 commit comments

Comments
 (0)