▲ | timefirstgrav 5 days ago | ||||||||||||||||||||||
This aligns with what I've observed in computational physics. Trying to handle instantaneous constraints and propagating modes with a single timestepper is often suboptimal. I developed a framework that systematically separates these components: using direct elliptic solvers for constraints and explicit methods for flux evolution. The resulting algorithms are both more stable and more efficient than unified implicit approaches. The key insight is that many systems (EM, GR, fluids, quantum mechanics) share the same pattern: - An elliptic constraint equation (solved directly, not timestepped) - A continuity law for charge/mass/probability flux - Wave-like degrees of freedom (handled with explicit methods) Witgh this structure, you can avoid the stiffness issues entirely rather than trying to power through them with implicit methods. | |||||||||||||||||||||||
▲ | semi-extrinsic 5 days ago | parent | next [-] | ||||||||||||||||||||||
You are probably very familiar with it, but this has been the basis of most numerical solvers for the Navier-Stokes equations since the late 1960s: https://en.wikipedia.org/wiki/Projection_method_(fluid_dynam... A disadvantage is that you get a splitting error term that tends to dominate, so you gain nothing from using higher-order methods in time. | |||||||||||||||||||||||
▲ | wizzwizz4 5 days ago | parent | prev | next [-] | ||||||||||||||||||||||
Please don't "publish" on Zenodo. If you think your work has merit, go arXiv -> peer review -> open access journal. Otherwise, put it on your own website. Zenodo is a repository for artefacts (mainly datasets): if you try to put papers on it, people will think you're a crank. It's about as damaging for your reputation (and the reputation of your work) as a paper mill. Of course, make sure you've done a thorough literature search, and that your paper is written from the perspective of "what is the contribution of this paper to the literature?", since most people reading your work will not read it in isolation: it'll be the hundredth or thousandth paper they've skimmed, trying to find those dozen papers relevant to their work. | |||||||||||||||||||||||
| |||||||||||||||||||||||
▲ | physicsguy 4 days ago | parent | prev | next [-] | ||||||||||||||||||||||
In practical terms it’s not unusual to reset the integrator when something instantaneous happens. When i did magnetic research, an application of instantaneous field for e.g. usually required this because otherwise the adaptive integrator spends a lot of time reducing the time step size | |||||||||||||||||||||||
▲ | tomrod 5 days ago | parent | prev | next [-] | ||||||||||||||||||||||
> Trying to handle instantaneous constraints and propagating modes with a single timestepper is often suboptimal. When I read statements like this, I wonder if this is related to optimal policy conditions required for infinitely lived Bellman equations to have global and per-period policies in alignment | |||||||||||||||||||||||
| |||||||||||||||||||||||
▲ | 5 days ago | parent | prev [-] | ||||||||||||||||||||||
[deleted] |