trixi-framework/Trixi.jl

Calculate timestep only once for equations with constant propagation speed

Open

#216 opened on Oct 11, 2020

View on GitHub
 (0 comments) (0 reactions) (0 assignees)Julia (153 forks)batch import
enhancementgood first issueperformancetaal

Repository metrics

Stars
 (686 stars)
PR merge metrics
 (Avg merge 9d 1h) (37 merged PRs in 30d)

Description

For example, scalar advection and hyperbolic diffusion have constant propagation speeds, thus the time step needs to be calculated only once after each change of the mesh. This can be a performance improvement, especially when doing parallel simulations, where it saves one blocking collective communication per time step.

For this to work, first #215 needs to be resolved.

Contributor guide