Skip to content

Commit

Permalink
Merge branch 'main' of github.com:svchb/TrixiParticles.jlOpen
Browse files Browse the repository at this point in the history
  • Loading branch information
svchb committed Apr 24, 2024
2 parents 1725eeb + 9c1ebff commit aa2ff98
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
1 change: 0 additions & 1 deletion docs/Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
Documenter = "e30172f5-a6a5-5a46-863b-614d45cd2de4"
OrdinaryDiffEq = "1dea7af3-3e70-54e6-95c3-0bf5283fa5ed"
TrixiBase = "9a0f1c46-06d5-4909-a5a3-ce25d3fa3284"
TrixiParticles = "66699cd8-9c01-4e9d-a059-b96c86d16b3a"

[compat]
Documenter = "1"
Expand Down
7 changes: 4 additions & 3 deletions src/callbacks/solution_saving.jl
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
@doc raw"""
SolutionSavingCallback(; interval::Integer=0, dt=0.0, save_times=Array{Float64, 1}([]),
save_initial_solution=true, save_final_solution=true,
output_directory="out", append_timestamp=false, max_coordinates=2^15,
output_directory="out", append_timestamp=false, prefix="",
verbose=false, write_meta_data=true, max_coordinates=2^15,
custom_quantities...)
Expand All @@ -25,9 +26,9 @@ To ignore a custom quantity for a specific system, return `nothing`.
- `save_final_solution=true`: Save the final solution.
- `output_directory="out"`: Directory to save the VTK files.
- `append_timestamp=false`: Append current timestamp to the output directory.
- 'prefix': Prefix added to the filename.
- 'prefix=""': Prefix added to the filename.
- `custom_quantities...`: Additional user-defined quantities.
- `write_meta_data`: Write meta data.
- `write_meta_data=true`: Write meta data.
- `verbose=false`: Print to standard IO when a file is written.
- `max_coordinates=2^15`: The coordinates of particles will be clipped if their
absolute values exceed this threshold.
Expand Down

0 comments on commit aa2ff98

Please sign in to comment.