Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 14 additions & 1 deletion NEWS.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,8 @@ used in the Julia ecosystem. Notable changes will be documented in this file for
- The example files are now loading sub-packages of OrdinaryDiffEq.jl instead of
OrdinaryDiffEq.jl itself. For example, `using OrdinaryDiffEqLowStorageRK` instead of
`using OrdinaryDiffEq` (#1154).
- `DensityDiffusionAntuono` now only takes only one kwarg `delta` (#1142).
- `DensityDiffusionAntuono` now only has the kwarg `delta` and no positional
arguments (#1142).
- Return type of `vtk2trixi` changed to `NamedTuple` including an optional
`:initial_condition` field if `create_initial_condition=true` is passed (#959).
- Public system constructors now use keyword arguments for configuration values.
Expand Down Expand Up @@ -71,6 +72,18 @@ BoundaryDEMSystem(ic; normal_stiffness)
See [#1131](https://github.com/trixi-framework/TrixiParticles.jl/issues/1131)
for a detailed breakdown including benchmark results.

### Features

- Added a `SortingCallback` that can be used to sort particles by their spatial location
to improve performance (#1044).

### Important Bugfixes

- Fixed a bug where `DensityDiffusionAntuono` could not be used together with open
boundaries and `BoundaryModelDynamicalPressureZhang` (#1043).
- Fixed a bug where no-slip boundary conditions were not applied correctly when not using
`ViscosityAdami` (#1089).

## Version 0.4.4

### API Changes
Expand Down
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name = "TrixiParticles"
uuid = "66699cd8-9c01-4e9d-a059-b96c86d16b3a"
version = "0.4.5-dev"
version = "0.5"
authors = ["erik.faulhaber <44124897+efaulhaber@users.noreply.github.com>"]

[deps]
Expand Down
Loading