Skip to content

Commit 3e92fc9

Browse files
authored
Merge branch 'main' into oriented-bbox
2 parents bd36703 + 5ad3e6e commit 3e92fc9

4 files changed

Lines changed: 6 additions & 5 deletions

File tree

Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ FastPow = "0.1"
5050
FileIO = "1"
5151
ForwardDiff = "1"
5252
GPUArraysCore = "0.2"
53-
JSON = "0.21"
53+
JSON = "1"
5454
KernelAbstractions = "0.9"
5555
MuladdMacro = "0.2"
5656
OrdinaryDiffEq = "6.91"

test/Project.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,11 @@ TrixiTest = "0a316866-cbd0-4425-8bcb-08103b2c1f26"
1717

1818
[compat]
1919
CSV = "0.10"
20-
CairoMakie = "0.13, 0.15"
20+
CairoMakie = "0.15"
2121
DataFrames = "1.6"
2222
GLM = "1.9"
2323
Glob = "1.3"
24-
JSON = "0.21"
24+
JSON = "1"
2525
OrdinaryDiffEq = "6.49"
2626
Plots = "1"
2727
Polyester = "0.7"

test/systems/iisph_system.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -253,7 +253,7 @@
253253
time_step=0.001)
254254

255255
u0 = zeros(TrixiParticles.u_nvariables(system),
256-
TrixiParticles.n_moving_particles(system))
256+
TrixiParticles.n_integrated_particles(system))
257257
TrixiParticles.write_u0!(u0, system)
258258

259259
@test u0 == coordinates
@@ -279,7 +279,7 @@
279279
time_step=0.001)
280280

281281
v0 = zeros(TrixiParticles.v_nvariables(system),
282-
TrixiParticles.n_moving_particles(system))
282+
TrixiParticles.n_integrated_particles(system))
283283
TrixiParticles.write_v0!(v0, system)
284284

285285
@test v0 == velocity

test/systems/systems.jl

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,3 +5,4 @@ include("boundary_system.jl")
55
include("open_boundary_system.jl")
66
include("dem_system.jl")
77
include("packing_system.jl")
8+
include("iisph_system.jl")

0 commit comments

Comments
 (0)