Skip to content

Commit f342e96

Browse files
committed
Fix tests
1 parent 84d885c commit f342e96

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

src/general/semidiscretization.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -485,7 +485,7 @@ end
485485
@inline add_velocity!(du, v, particle, system::BoundarySPHSystem) = du
486486

487487
@inline function add_velocity!(du, v, particle, system::FluidSystem)
488-
# This is zero unless a transport velocity is used
488+
# This is zero unless a shifting technique is used
489489
delta_v_ = delta_v(system, particle)
490490

491491
for i in 1:ndims(system)

test/systems/edac_system.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@
140140
│ viscosity: …………………………………………………… Nothing │
141141
│ ν₍EDAC₎: ………………………………………………………… ≈ 0.226 │
142142
│ smoothing kernel: ………………………………… Val │
143-
tansport velocity formulation: Nothing
143+
shifting technique: …………………………… nothing
144144
│ average pressure reduction: ……… no │
145145
│ acceleration: …………………………………………… [0.0, 0.0] │
146146
│ surface tension: …………………………………… nothing │

test/systems/wcsph_system.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -199,7 +199,7 @@
199199
smoothing_length,
200200
density_diffusion=density_diffusion)
201201

202-
show_compact = "WeaklyCompressibleSPHSystem{2}(SummationDensity(), nothing, Val{:state_equation}(), Val{:smoothing_kernel}(), nothing, Val{:density_diffusion}(), nothing, nothing, [0.0, 0.0], nothing) with 2 particles"
202+
show_compact = "WeaklyCompressibleSPHSystem{2}(SummationDensity(), nothing, Val{:state_equation}(), Val{:smoothing_kernel}(), nothing, Val{:density_diffusion}(), nothing, nothing, nothing, [0.0, 0.0], nothing) with 2 particles"
203203
@test repr(system) == show_compact
204204
show_box = """
205205
┌──────────────────────────────────────────────────────────────────────────────────────────────────┐
@@ -211,8 +211,8 @@
211211
│ state equation: ……………………………………… Val │
212212
│ smoothing kernel: ………………………………… Val │
213213
│ viscosity: …………………………………………………… nothing │
214-
│ tansport velocity formulation: Nothing │
215214
│ density diffusion: ……………………………… Val{:density_diffusion}() │
215+
│ shifting technique: …………………………… nothing │
216216
│ surface tension: …………………………………… nothing │
217217
│ surface normal method: …………………… nothing │
218218
│ acceleration: …………………………………………… [0.0, 0.0] │

0 commit comments

Comments
 (0)