Skip to content

Commit

Permalink
add comment
Browse files Browse the repository at this point in the history
  • Loading branch information
LasNikas committed Jul 4, 2023
1 parent 7e0879c commit 3e04d2d
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/schemes/boundary/system.jl
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
"""
BoundarySPHSystem(coordinates, model; movement=nothing)
BoundarySPHSystem(inititial_condition, model; movement=nothing)
System for boundaries modeled by boundary particles.
The system is initialized with the coordinates of the particles and their masses.
The system is initialized with the coordinates of the particles.
The interaction between fluid and boundary particles is specified by the boundary model.
The `movement` field is to define in which way the boundary particles move over time.
Expand Down Expand Up @@ -174,6 +174,7 @@ end
end

@inline function current_acceleration(system, particle)
# TODO: Return `dv` of solid particles
return SVector(ntuple(_ -> 0.0, Val(ndims(system))))
end

Expand Down

0 comments on commit 3e04d2d

Please sign in to comment.