Trixi.jl icon indicating copy to clipboard operation
Trixi.jl copied to clipboard

Trixi.jl: Adaptive high-order numerical simulations of conservation laws in Julia

Results 236 Trixi.jl issues
Sort by recently updated
recently updated
newest added

Currently, in `analysis.jl` there are two versions of the `analyze` function. The original one (for the hyperbolic solver) dispatches only on `semi::AbstractSemidiscretization`. A new (experimental) version of `analyze` for the...

Several of recently approved major pull-request for Trixi.jl, e.g., [gmsh-support](https://github.com/trixi-framework/Trixi.jl/pull/1799), [parabolic AMR](https://github.com/trixi-framework/Trixi.jl/pull/1629) and [improved tutorials](https://github.com/trixi-framework/Trixi.jl/pull/1343), were issued from developers who were significantly supported by my institute (Lab for Applied and...

Closes #1241 ## TODO - [ ] fix the wrapping and unwrapping - [x] basic stuff - [x] `EulerAcousticsCouplingCallback` - [x] positivity-preserving limiters - [ ] plotting - [x] decide...

upstream
latency
breaking

I first encountered this issue for the baroclinic instability test case. Then I found a reduced example based on elixir_advection_basic but with nonperiodic boundary conditions: - 3 cells - 3...

bug
parallelization

While looking at the [`elixir_euleracoustics_co-rotating_vortex_pair.jl`](https://github.com/trixi-framework/Trixi.jl/blob/main/examples/tree_2d_dgsem/elixir_euleracoustics_co-rotating_vortex_pair.jl) I noticed that this can only be run with the integrators from `OrdinaryDiffEq.jl` because the `EulerAcousticsCouplingCallback` requires a `step!` function https://github.com/trixi-framework/Trixi.jl/blob/18aaae96035a995e840e4e262964e7b49fdd9325/src/callbacks_step/euler_acoustics_coupling.jl#L189 and an `init` function...

consistency
refactoring

Raise your hands if you haven't encountered this situation at least once before: You tinker with a new feature implementation and/or simulation setup. Finally, you get it to run. For...

enhancement