REVIEW 2 major objections 5 minor 100 references
AGILE is a GPU-native adaptive mesh refinement framework claiming up to a fivefold cut in cost-to-solution for astrophysical flows, with small 16^3 blocks and scaling to 2048 GPUs.
Reviewed by Pith at T0; open to challenge. T0 means a machine referee read the full paper against a public rubric. the ladder, T0–T4 →
T0 review · deepseek-v4-flash
2026-08-01 12:52 UTC pith:Q2JLQLVP
load-bearing objection AGILE is a well-engineered GPU-AMR framework with credible performance claims and broad physics coverage, but the paper leaves a key correctness question unanswered: how coarse-fine interface fluxes are reconciled (if at all). the 2 major comments →
Astrophysics on GPUs: introducing AGILE 1.0
The pith
A machine-rendered reading of the paper's core claim, the machinery that carries it, and where it could break.
Core claim
AGILE's central claim is that the main obstacle to GPU AMR—efficient execution with moderate block sizes—can be overcome by restructuring the update loop. Instead of scheduling whole-block operations that create block-sized temporary arrays, AGILE launches one macro-kernel with a gang loop over the space-filling curve of blocks and collapsed vector loops over cells, so all work for a Runge–Kutta substep (primitive-variable conversion, reconstruction, Riemann fluxes, source terms, conservative update) stays local to one vector unit. Fluxes at shared interfaces are computed twice, once by each adjacent cell, but the savings in shared-memory traffic and kernel-launch overhead make the redundanc
What carries the argument
The macro-kernel: a single GPU kernel that treats the AMR block hierarchy as a gang loop and each block's cells as collapsed vector loops, performing every step of one timestep per cell. Its load-bearing details are redundant interface flux computation (each interface flux is computed by both adjacent cells rather than shared through a block-sized array), cell-local register storage, and device-side ghost-cell packing with exactly-sized buffers and one MPI message per neighbor relation. This machinery keeps kernel-launch overhead low and memory traffic minimal, which is what allows small block sizes without performance loss.
Load-bearing premise
The GPU kernels are trusted to reproduce the CPU solver's physics because they reuse its algorithms and pass standard test problems, but no manufactured-solution or order-of-accuracy study checks the device-side macro-kernel and ghost-cell packing for subtle offloading errors.
What would settle it
Run a 3D manufactured-solution or grid-convergence test with AGILE across multiple AMR levels, including a fine-coarse interface with device-side ghost exchange, and monitor conservation of total mass, momentum, and energy; if the measured convergence order falls below the formal reconstruction order, or conserved quantities drift at refinement boundaries in a way the CPU solver does not show, the correctness-inheritance premise fails.
If this is right
- Small 16^3-cell blocks become a viable default for AMR, so refinement can be deep and local without a performance penalty.
- Cost-to-solution drops by up to about five times on current GPU clusters, letting the same production simulations run for a fraction of the CPU-node budget.
- Existing setups and data formats from the parent CPU code carry over almost unchanged, lowering the barrier for moving established science workflows to GPUs.
- Because the kernel is memory-bound, future GPUs optimized for memory-hungry AI workloads should deliver further speedups without code changes.
- Four physics modules—hydrodynamics, frozen-field hydrodynamics, magnetohydrodynamics, and special-relativistic hydrodynamics—are demonstrated on production-scale runs, with new modules reported to port in about a day.
Where Pith is reading between the lines
- A fair next test would compare full AMR runs against uniform-grid runs at equal effective resolution, since the headline CUPS numbers are uniform-grid benchmarks and do not isolate refinement, load-balancing, or prolongation/restriction overhead.
- The redundant-flux design trades arithmetic for memory traffic; on GPUs with much higher compute-to-bandwidth ratios the tradeoff could reverse, so a variant that caches fluxes in shared memory would reveal how much of the speed comes from register locality versus avoiding block-sized arrays.
- A manufactured-solution convergence suite across all four physics modules, especially special-relativistic hydrodynamics with its iterative primitive-variable inversion, would settle the correctness-inheritance question that the standard test problems do not fully address.
- The reported one-day porting time for a physics module suggests the modular interface itself is the durable asset; if it stays stable, AGILE could become a common GPU backend for the wider family of codes that share its parent CPU lineage.
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. AGILE 1.0 is presented as a GPU-accelerated AMR framework for (near-)conservation laws, developed as a modern-Fortran/OpenACC compatible successor to MPI-AMRVAC. The paper describes the design (macro-kernel cell-by-cell updates, device-side ghost-cell packing, dynamic buffers, OpenACC portability), the physics modules (HD, FFHD, MHD, SRHD), single- and multi-GPU benchmarks up to 2048 GPUs, and six application demonstrations with quantitative diagnostics. The central claims are that AGILE achieves excellent performance on GPUs with moderate block sizes (16^3), scales well, and reduces cost to solution by up to a factor of ~5 relative to the CPU MPI-AMRVAC implementation.
Significance. If the claims are upheld, AGILE is a valuable community resource: it is open-source (GPLv3), has continuous integration on multiple compilers, and provides a relatively low-barrier transition path from MPI-AMRVAC to GPU clusters. The paper includes broad hardware coverage (NVIDIA, AMD, CPU), a roofline analysis, scaling to 2048 GPUs, and cross-code comparisons (MPI-AMRVAC, and discussions of foap4/AthenaK/gPLUTO). The science applications go beyond mere demonstration and include quantitative validation (fractal dimension d=2.541, ram-pressure drag scaling, jet morphology matching MPI-AMRVAC). The main gap is methodological: conservation at AMR coarse-fine boundaries is not documented, and no formal convergence/order-of-accuracy verification of the GPU kernels is provided.
major comments (2)
- [Section 2.1.3 / Fig. 2] The AMR dataflow described in Section 2.1.3 and the flow charts in Figures 1–2 do not include a coarse-fine flux correction (refluxing) step. The macro-kernel (Listing 3) updates each cell from fluxes computed from local data, and the ghost-cell exchange packs/unpacks same-resolution, finer, and coarser neighbor data, but no mechanism is described for correcting the coarse-level fluxes at coarse-fine interfaces after fine-level cells are updated. For block-structured AMR without such correction, the scheme is non-conservative across level boundaries. This directly affects the quantitative diagnostics in the multi-level applications (Sections 4.1, 4.3, 4.5, 4.6), such as cloud mass fraction (Figure 16), fractal dimension (Figure 13), and jet propagation. The authors must either (a) document the refluxing routine and where it appears in the code, or (b) add a conservation-error diagnostic
- [Sections 2.1.3 and 4] The numerical correctness of the GPU macro-kernel is not verified by a convergence or manufactured-solution study. The paper relies on standard benchmarks, visual agreement, and integrated physical scalings (fractal dimension, ram-pressure drag, jet morphology). While these are necessary and valuable, they are not sufficient to rule out subtle implementation errors in the redundant-flux device kernel or in device-side ghost-cell packing. A formal order-of-accuracy test (e.g., a smooth 3D advection or acoustic-wave problem on multiple AMR levels) would materially strengthen the central 'capable' claim. If such tests exist in the repository or test suite, they should be cited and reported; otherwise they should be added.
minor comments (5)
- [Section 3.1] Typo: 'G200' should be 'B200' in the sentence 'the G200 features 4.8TB/s'. The table and surrounding text refer to B200.
- [Section 4.6] The MPI-AMRVAC comparison run is said to use 'EPYC Rome' cores on four Snellius nodes, while the CPU benchmark nodes in Section 3.1 are EPYC Genoa/Milan. Please clarify the exact CPU model and node count for the jet comparison, as the cost-to-solution factor depends on this.
- [Section 3.1 / Table B1] All CUPS values appear to be single measurements. Given the cost-to-solution claims, a measure of run-to-run variability (or at least a statement that runs are deterministic) would improve confidence. Please indicate whether the reported numbers are representative of a single run or an average over repeats.
- [References] The citation format 'Teunissen & et al. (2026)' should be corrected; the reference list entry is 'Teunissen, J. & et al., 2026'.
- [Section 5] The conclusion states 'demonstrated reduced cost to solution of up to a factor of 5', while Section 3.1 quotes 'over 5 times reduced runtime and cost' and Section 4.6 quotes a 5.3x wall-clock reduction but a 3.6x cost reduction. Please harmonize these numbers and clarify the exact basis (node cost, wall-clock, or both) for the central cost claim.
Circularity Check
Mostly self-contained performance and validation; one cloud-crushing diagnostic fits the drag coefficient, then calls the resulting curve an 'analytic prediction'.
specific steps
-
fitted input called prediction
[Section 4.3, cloud crushing diagnostics and Figure 16]
"The gray lines show the analytic ram-pressure drag prediction vcl(t) = at with constant acceleration a = 3CD v^2_w/(8χr_c), derived under the assumption vcl << v_w, with drag coefficient CD fitted to the early linear regime of each cooling run. The fitted drag coefficients are consistent across all three density contrasts, CD ∈ {3.06, 3.06, 3.19} respectively, confirming that the early acceleration follows the expected 1/χ scaling of the ram-pressure drag law across the full parameter range."
The slope of the 'predicted' curve is obtained by fitting CD to the early linear regime of the very same data that the curve is then displayed against, so the early-time agreement is enforced by construction rather than predicted. The only residual content is the consistency of the three fitted CD values across density contrasts, which provides weak support for the 1/χ scaling but does not make the curve a parameter-free analytic prediction. This is a secondary validation diagnostic, not the paper's central capability claim, and the main performance benchmarks remain externally measured.
full rationale
No significant circularity in the central claims. AGILE's capability and cost-efficiency claims rest on measured single-GPU and multi-GPU performance (CUPS, scaling efficiencies, SBU cost comparisons) against external hardware, independent codes such as AthenaK, gPLUTO and foap4, and an openly reproduced CPU implementation in MPI-AMRVAC; these are not fitted parameters or self-referential definitions. The heavy self-citation of MPI-AMRVAC and foap4 is largely attribution of inherited design and algorithms rather than load-bearing evidence for the measured numbers. The science applications are compared to external theoretical scalings (fractal dimension 5/2, cloud-crushing time, analytic drag law) and to previously published setups. The one concrete circular element is the cloud-crushing drag comparison in Section 4.3, where a drag coefficient is fitted to the early data and the resulting curve is labeled an 'analytic ram-pressure drag prediction'; the early-time match is therefore by construction, though the near-constancy of CD across χ retains some independent content. The absence of a documented coarse-fine flux-correction/refluxing step is a potential correctness risk for AMR conservation, but it is not a circularity and is not scored here.
Axiom & Free-Parameter Ledger
free parameters (4)
- log-skew-normal cooling parameters μ and A =
μ≈1.19, A≈8.19e-16 g cm^5 s^-3
- Cloud drag coefficient C_D =
3.06, 3.06, 3.19
- AMR refinement weights =
0.8 tracer / 0.2 density
- GLM divergence-cleaning parameter α_GLM =
0.5
axioms (4)
- standard math Finite-volume discretization with Riemann solvers and Runge-Kutta time integration is a correct discretization of the conservation laws in Eq. (1).
- domain assumption OpenACC compilers generate correct device code for the macro-kernel and the nested derived-type ghost-cell structures.
- domain assumption The physical equations used in the HD, FFHD, MHD, and SRHD modules are the correct models for the presented applications.
- domain assumption The uniform-grid benchmark measurements are representative of production AMR workloads.
read the original abstract
We present AGILE, a GPU-enabled adaptive mesh refinement (AMR) framework for the solution of (near-) conservation laws which occur in astro- and solar-physical applications. AGILE is written in modern fortran 2003, inherits a part of its modules and mesh handling from MPI-AMRVAC, and achieves excellent GPU performance via OpenACC offloading. We here discuss the design decisions which enable AGILE to perform cost-efficient and scalable deeply nested AMR simulations with moderate block sizes of e.g. $16^3$ cells. AGILE currently implements several physics modules, ie. hydrodynamics, frozen-field hydrodynamics, magnetohydrodynamics and special-relativistic hydrodynamics and can easily be extended further through its modular design. Besides strong scaling tests to up to 2048 GPUs and standard benchmarks which show consistent performance across a large range of devices and problem sizes, we demonstrate AGILE's capabilities by means of state-of-the art science applications with all currently available physics modules.
Figures
Reference graph
Works this paper leans on
-
[1]
Visualization Handbook , year =
Ahrens, James and Geveci, Berk and Law, Charles , chapter =. Visualization Handbook , year =
-
[3]
T. E. Computing in Science Engineering , title=. 2007 , volume=. doi:10.1109/MCSE.2007.58 , ISSN=
-
[4]
Jones, Eric and Oliphant, Travis and Peterson, Pearu , year =
-
[5]
Hunter, J. D. , Title =. Computing in Science & Engineering , Volume =
-
[6]
Seppänen and Jody Klymak and Damon McDougall and Andrew Straw and Paul Hobson and cgohlke and Tony S Yu and Eric Ma and Adrien F
Michael Droettboom and Thomas A Caswell and John Hunter and Eric Firing and Jens Hedegaard Nielsen and Antony Lee and Elliott Sales de Andrade and Nelle Varoquaux and David Stansby and Benjamin Root and Phil Elson and Darren Dale and Jae-Joon Lee and Ryan May and Jouni K. Seppänen and Jody Klymak and Damon McDougall and Andrew Straw and Paul Hobson and cg...
-
[7]
yt: A Multi-code Analysis Toolkit for Astrophysical Simulation Data. ,keywords =. doi:10.1088/0067-0049/192/1/9 ,adsurl =
-
[8]
The Astrophysical Journal , volume =
An, Yifu and Chen, Yuxi and Zhou, Hongyang and Gaenko, Alexander and T. The Astrophysical Journal , volume =. doi:10.3847/1538-4357/adaf15 , urldate =
-
[9]
The Astrophysical Journal , volume =
Magnetic Reconnection and Hot Spot Formation in Black Hole Accretion Disks , author =. The Astrophysical Journal , volume =. doi:10.3847/1538-4357/ababab , archiveprefix =. 2003.04330 , primaryclass =
Pith/arXiv arXiv 2003
-
[10]
Morphology and Dynamics of Relativistic Jets , author =. 1997 , month = apr, journal =. doi:10.1086/303842 , url =
-
[11]
Intracluster Medium Reheating by Relativistic Jets , author =. 2011 , month = dec, journal =. doi:10.1088/0004-637X/743/1/42 , url =. arXiv , arxivurl =:1107.5484 , primaryclass =
Pith/arXiv arXiv 2011
-
[12]
Experimental Results , keywords =
Shock identification and classification in 2D magnetohydrodynamiccompressible turbulence Orszag-Tang vortex. Experimental Results , keywords =. doi:10.1017/exp.2021.28 , adsurl =
-
[13]
Journal of Fluid Mechanics , keywords =
Small-scale structure of two-dimensional magnetohydrodynamic turbulence. Journal of Fluid Mechanics , keywords =. doi:10.1017/S002211207900210X , adsurl =
-
[14]
Effect of optically thin cooling curves on condensation formation: Case study using thermal instability. , keywords =. doi:10.1051/0004-6361/202140665 , archivePrefix =. 2107.07569 , primaryClass =
-
[15]
Computer Physics Communications , keywords =
A multidimensional grid-adaptive relativistic magnetofluid code. Computer Physics Communications , keywords =. doi:10.1016/j.cpc.2008.05.005 , archivePrefix =. 0807.0713 , primaryClass =
Pith/arXiv arXiv 2008
-
[16]
Two-fluid implementation in MPI-AMRVAC with applications to the solar chromosphere. , keywords =. doi:10.1051/0004-6361/202243630 , archivePrefix =. 2205.05049 , primaryClass =
-
[17]
Evolution of the Orszag-Tang vortex system in a compressible medium. II. Supersonic flow. Physics of Fluids B , keywords =. doi:10.1063/1.859953 , adsurl =
-
[18]
Extension of the MURaM Radiative MHD Code for Coronal Simulations. , keywords =. doi:10.3847/1538-4357/834/1/10 , archivePrefix =. 1609.09818 , primaryClass =
-
[19]
Modeling the thermal conduction in the solar atmosphere with the code MANCHA3D. , keywords =. doi:10.1051/0004-6361/202243439 , archivePrefix =. 2205.08846 , primaryClass =
-
[20]
Geophysical and Astrophysical Fluid Dynamics , keywords =
Non-Fourier description of heat flux evolution in 3D MHD simulations of the solar corona. Geophysical and Astrophysical Fluid Dynamics , keywords =. doi:10.1080/03091929.2019.1670173 , archivePrefix =. 1811.01572 , primaryClass =
arXiv 2019
-
[21]
Rossi, P. and Mignone, A. and Bodo, G. and Massaglia, S. and Ferrari, A. , year =. Formation of Dynamical Structures in Relativistic Jets: The. Astronomy and Astrophysics , volume =. doi:10.1051/0004-6361:200809687 , url =. arXiv , date-added =:0806.1648 , pages =
-
[22]
Using Synchrotron Emission Modelling of Relativistic Hydrodynamic Jet Simulations to Study the. 2019 , month = jun, journal =. doi:10.1093/mnras/stz734 , url =
-
[23]
Perucho, M. and Mart. Long-Term. 2018 , month = oct, journal =. arXiv , arxivurl =:1810.10968 , url =
Pith/arXiv arXiv 2018
-
[24]
1974 , month = dec, journal =
A 'twin-Exhaust' Model for Double Radio Sources , author =. 1974 , month = dec, journal =
1974
-
[25]
Causality and Stability of Cosmic Jets , author =. 2015 , month = sep, journal =. doi:10.1093/mnras/stv1295 , url =. arXiv , date-added =:1408.3318 , primaryclass =
Pith/arXiv arXiv 2015
-
[26]
Bicknell, Geoffrey V. , year =. Relativistic. The Astrophysical Journal Supplement Series , volume =. doi:10.1086/192232 , url =
-
[27]
1984 , month = apr, journal =
Theory of Extragalactic Radio Sources , author =. 1984 , month = apr, journal =
1984
-
[28]
Observational Evidence of Active Galactic Nuclei Feedback , author =. 2012 , month = sep, volume =. doi:10.1146/annurev-astro-081811-125521 , url =. arXiv , date-added =:1204.4114 , pages =
Pith/arXiv arXiv 2012
-
[29]
Seo, Jeongbhin and Kang, Hyesung and Ryu, Dongsu , year =. A. The Astrophysical Journal , volume =. doi:10.3847/1538-4357/ac19b4 , url =
-
[30]
Equation of State in Numerical Relativistic Hydrodynamics , author =. 2006 , month = sep, journal =. doi:10.1086/505937 , url =. arXiv:astro-ph/0605550 , pages =
Pith/arXiv arXiv 2006
-
[31]
The Astrophysical Journal Supplement Series , volume =
The Piecewise Parabolic Method for Multidimensional Relativistic Fluid Dynamics , author =. The Astrophysical Journal Supplement Series , volume =. doi:10.1086/430905 , adsnote =. arXiv:astro-ph/0505200 , pages =
-
[32]
The Astrophysical Journal , volume =
The Hydromagnetic Free Expansion of a Relativistic Gas , author =. The Astrophysical Journal , volume =. doi:10.1086/150883 , adsnote =
-
[33]
Meliani, Z. and Sauty, C. and Tsinganos, K. and Vlahakis, N. , year = 2004, month = oct, volume =. Relativistic. doi:10.1051/0004-6361:20035653 , adsnote =. arXiv:astro-ph/0407100 , pages =
Pith/arXiv arXiv 2004
-
[34]
, author =
The Relativistic Gas. , author =
-
[35]
Advanced Magnetohydrodynamics , author =
-
[36]
Bergmans, J. and Keppens, R. and. Simulations of. Adaptive. doi:10.1007/3-540-27039-6_15 , isbn =
-
[37]
Modestov, M. and Asensio, I. Alonso and Khomenko, E. , year =. Astronomy & Astrophysics , volume =. doi:10.1051/0004-6361/202558286 , url =
-
[38]
Teunissen, Jannis and Olivares S. Foap4:
-
[39]
Journal of Computational Physics , year = 2012, month = feb, volume =
Parallel, grid-adaptive approaches for relativistic hydro and magnetohydrodynamics. Journal of Computational Physics , year = 2012, month = feb, volume =. doi:10.1016/j.jcp.2011.01.020 , adsurl =
-
[40]
Computer Physics Communications , keywords =
A geometric multigrid library for quadtree/octree AMR grids coupled to MPI-AMRVAC. Computer Physics Communications , keywords =. doi:10.1016/j.cpc.2019.106866 , archivePrefix =. 1901.11370 , primaryClass =
arXiv 2019
-
[41]
Journal of Computational Physics , keywords =
The Numerical Simulation of Two-Dimensional Fluid Flow with Strong Shocks. Journal of Computational Physics , keywords =. doi:10.1016/0021-9991(84)90142-6 , adsurl =
-
[42]
Journal of Computational Physics , keywords =
Local Adaptive Mesh Refinement for Shock Hydrodynamics. Journal of Computational Physics , keywords =. doi:10.1016/0021-9991(89)90035-1 , adsurl =
-
[43]
Sembach, K. R. and Wakker, B. P. and Savage, B. D. and Richter, P. and Meade, M. and Shull, J. M. and Jenkins, E. B. and Sonneborn, G. and Moos, H. W. , year =. Highly. The Astrophysical Journal Supplement Series , volume =. doi:10.1086/346231 , url =
-
[44]
Fox, Andrew J. and Savage, Blair D. and Wakker, Bart P. and Richter, Philipp and Sembach, Kenneth R. and Tripp, Todd M. , year =. Highly. The Astrophysical Journal , volume =. doi:10.1086/381024 , url =
-
[45]
Fabian, A. C. and Sanders, J. S. and Crawford, C. S. and Conselice, C. J. and Gallagher, J. S. and Wyse, R. F. G. , year =. The Relationship between the Optical. Monthly Notices of the Royal Astronomical Society , volume =. doi:10.1046/j.1365-8711.2003.06856.x , url =
arXiv 2003
-
[46]
Properties of the Simulated Circumgalactic Medium , author =. 2020 , month = mar, journal =. doi:10.1093/mnras/staa358 , url =
-
[48]
Simulations of Radiative Turbulent Mixing Layers , author =. 2019 , month = jul, journal =. doi:10.1093/mnras/stz1248 , url =
-
[49]
Kwak, Kyujin and Shelton, Robin L. , year =. Numerical. The Astrophysical Journal , volume =. doi:10.1088/0004-637X/719/1/523 , url =
-
[50]
Audit, E. and Hennebelle, P. , year =. On the Structure of the Turbulent Interstellar Clouds. Astronomy and Astrophysics , volume =. doi:10.1051/0004-6361/200912695 , url =
-
[51]
Slavin, Jonathan D. and Shull, J. M. and Begelman, Mitchell C. , year =. Turbulent. The Astrophysical Journal , volume =. doi:10.1086/172494 , url =
-
[52]
A Model for Line Absorption and Emission from Turbulent Mixing Layers , author =. 2021 , month = nov, journal =. doi:10.1093/mnrasl/slab100 , url =
-
[53]
Del Zanna, Luca and Landi, Simone and Serafini, Lorenzo and Bugli, Matteo and Papini, Emanuele , year = 2024, month = jan, journal =. A. doi:10.3390/fluids9010016 , urldate =
-
[54]
Kestener, Pierre , year = 2017, month = oct, journal =. Ramses-
2017
-
[55]
Stone, James M. and Mullen, Patrick D. and Fielding, Drummond and Grete, Philipp and Guo, Minghao and Kempski, Philipp and Most, Elias R. and White, Christopher J. and Wong, George N. , year = 2026, month = feb, journal =. doi:10.3847/1538-4365/ae3717 , urldate =
-
[56]
Classical and Quantum Gravity , volume =
Shankar, Swapnil and M. Classical and Quantum Gravity , volume =. doi:10.1088/1361-6382/acf2d9 , urldate =
-
[57]
Lesur, G. R. J. and Baghdadi, S. and. Astronomy and Astrophysics , volume =. doi:10.1051/0004-6361/202346005 , urldate =
-
[58]
Schive, Hsi-Yu and ZuHone, John A. and Goldbaum, Nathan J. and Turk, Matthew J. and Gaspari, Massimo and Cheng, Chin-Yu , year = 2018, month = dec, journal =. doi:10.1093/mnras/sty2586 , urldate =
-
[59]
arXiv e-prints , doi =
Parthenon -- a Performance Portable Block-Structured Adaptive Mesh Refinement Framework , author =. arXiv e-prints , doi =
-
[60]
Liska, M. T. P. and Chatterjee, K. and Issa, D. and Yoon, D. and Kaaz, N. and Tchekhovskoy, A. and. H-. The Astrophysical Journal Supplement Series , volume =. doi:10.3847/1538-4365/ac9966 , urldate =
-
[61]
, year = 2026, month = ?, journal =
Teunissen, Jannis and et al. , year = 2026, month = ?, journal =. doi:? , langid =
2026
-
[62]
doi:10.1016/j.camwa.2020.03.023 , urldate =
Keppens, Rony and Teunissen, Jannis and Xia, Chun and Porth, Oliver , year = 2021, month = jan, journal =. doi:10.1016/j.camwa.2020.03.023 , urldate =
-
[63]
, year = 2024, month = mar, journal =
Mayer, Markus and Dash, Ashutosh and Inghirami, Gabriele and Elfner, Hannah and Rezzolla, Luciano and Rischke, Dirk H. , year = 2024, month = mar, journal =. doi:10.48550/arXiv.2403.08668 , urldate =
-
[64]
Hybrid Approach to Long-Term Binary Neutron-Star Simulations , author =. Physical Review D , volume =. doi:10.1103/PhysRevD.109.064061 , urldate =
-
[65]
Cheong, Patrick Chi-Kit and Lin, Lap-Ming and Li, Tjonnie Guang Feng , year = 2020, month = jul, journal =. Gmunu: Toward Multigrid Based. doi:10.1088/1361-6382/ab8e9c , urldate =
-
[66]
Casse, F. and Varniere, P. and Meliani, Z. , year = 2017, month = jan, journal =. Impact of the Gravity of a. doi:10.1093/mnras/stw2572 , urldate =
-
[67]
Towards the ultimate conservative difference scheme
Van Leer, Bram , journal =. Towards the ultimate conservative difference scheme. 1974 , doi =
1974
-
[68]
An adaptive finite element scheme for transient problems in
L. An adaptive finite element scheme for transient problems in. Computer Methods in Applied Mechanics and Engineering , year =
-
[69]
The Astrophysical Journal , author =
Radiative. The Astrophysical Journal , author =. 2008 , pages =. doi:10.1086/592561 , language =
-
[70]
Annual Review of Astronomy and Astrophysics , author =
Heating and. Annual Review of Astronomy and Astrophysics , author =. 1972 , pages =. doi:10.1146/annurev.aa.10.090172.002111 , language =
arXiv 1972
-
[71]
Girichidis, Philipp and Naab, Thorsten and Walch, Stefanie and Berlok, Thomas , month = jul, year =. The in situ formation of molecular and warm ionized gas triggered by hot galactic outflows , volume =. Monthly Notices of the Royal Astronomical Society , publisher =. doi:10.1093/mnras/stab1203 , urldate =
-
[72]
Monthly Notices of the Royal Astronomical Society: Letters , author =
The growth and entrainment of cold gas in a hot wind , volume =. Monthly Notices of the Royal Astronomical Society: Letters , author =. 2018 , pages =. doi:10.1093/mnrasl/sly131 , language =
-
[73]
On the hydrodynamic interaction of shock waves with interstellar clouds. 1:. The Astrophysical Journal , author =. 1994 , pages =. doi:10.1086/173554 , language =
doi:10.1086/173554 1994
-
[74]
Journal of Computational Physics , keywords =
High-order conservative finite difference GLM-MHD schemes for cell-centered MHD. Journal of Computational Physics , keywords =. doi:10.1016/j.jcp.2010.04.013 , archivePrefix =. 1001.2832 , primaryClass =
Pith/arXiv arXiv 2010
-
[75]
Journal of Computational Physics , year = 2002, month = jan, volume =
Hyperbolic Divergence Cleaning for the MHD Equations. Journal of Computational Physics , year = 2002, month = jan, volume =. doi:10.1006/jcph.2001.6961 , adsurl =
arXiv 2002
-
[76]
Frozen-field Modeling of Coronal Condensations with MPI-AMRVAC. II. Optimization and Application in 3D Models. , keywords =. doi:10.3847/1538-4357/ad96af , archivePrefix =. 2411.16415 , primaryClass =
-
[77]
Frozen-field Modeling of Coronal Condensations with MPI-AMRVAC. I. Demonstration in Two-dimensional Models. , keywords =. doi:10.3847/1538-4357/ad4466 , archivePrefix =. 2404.17056 , primaryClass =
-
[78]
An Exact Integration Scheme for Radiative Cooling in Hydrodynamical Simulations. , keywords =. doi:10.1088/0067-0049/181/2/391 , archivePrefix =. 0901.3146 , primaryClass =
-
[79]
T. The. 1997 , month = dec, journal =. doi:10.1006/jcph.1997.5813 , url =
arXiv 1997
-
[80]
Vincent, Jonathan and Gong, Jing and Karp, Martin and Peplinski, Adam and Jansson, Niclas and Podobas, Artur and Jocksch, Andreas and Yao, Jie and Hussain, Fazle and Markidis, Stefano and Karlsson, Matts and Pleiter, Dirk and Laure, Erwin and Schlatter, Philipp , year =. Strong. International. doi:10.1145/3492805.3492818 , url =
-
[81]
Davis, Joshua H. and Sivaraman, Pranav and Kitson, Joy and Parasyris, Konstantinos and Menon, Harshitha and Minn, Isaac and Georgakoudis, Giorgis and Bhatele, Abhinav , year =. Taking. doi:10.48550/arXiv.2402.08950 , url =
-
[82]
Rossazza, Marco and Mignone, Andrea and Bugli, Matteo and Truzzi, Stefano and Riha, Lubomir and Panoc, Tomas and Vysocky, Ondrej and Shukla, Nitin and Romeo, Alessandro and Berta, Vittoria , year = 2025, month = nov, publisher =. The. doi:10.48550/arXiv.2511.20337 , urldate =
discussion (0)
Sign in with ORCID, Apple, or X to comment. Anyone can read and Pith papers without signing in.