Skip to content

Commit

Permalink
skip CI
Browse files Browse the repository at this point in the history
  • Loading branch information
LasNikas committed Nov 23, 2023
1 parent f2bf4c4 commit c8f3860
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion examples/fluid/taylor_green_vortex_2d.jl
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ fluid_system = EntropicallyDampedSPHSystem(fluid, smoothing_kernel, smoothing_le
sound_speed, initial_pressure_function=p,
initial_velocity_function=(v_x, v_y),
transport_velocity=TransportVelocityAdami(background_pressure),
viscosity=ViscosityAdami(;nu))
viscosity=ViscosityAdami(; nu))

# ==========================================================================================
# ==== Simulation
Expand Down
1 change: 0 additions & 1 deletion src/callbacks/update.jl
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@ function Base.show(io::IO, ::MIME"text/plain",
end

function UpdateEachTimeStep()

update_each_dt = UpdateEachDt()
return DiscreteCallback(update_each_dt, update_each_dt, initialize=initial_update!,
save_positions=(false, false))
Expand Down
2 changes: 1 addition & 1 deletion src/visualization/write2vtk.jl
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ vtkname(system::OpenBoundarySPHSystem) = "open_boundary"

function write2vtk!(vtk, v, u, t, system::FluidSystem; write_meta_data=true)
vtk["velocity"] = [current_velocity(v, system, particle)
for particle in active_particles(system)]
for particle in active_particles(system)]
vtk["density"] = [particle_density(v, system, particle)
for particle in active_particles(system)]
vtk["pressure"] = [particle_pressure(v, system, particle)
Expand Down

0 comments on commit c8f3860

Please sign in to comment.