REVIEW 4 major objections 5 minor 40 references
Jacobian-free Multigrid Preconditioner for Discontinuous Galerkin Methods applied to Numerical Weather Prediction
T0 review · 4 major / 5 minor · reviewed 2026-08-07 · deepseek-v4-flash
Pith's one-line read This paper argues that a Jacobian-free multigrid preconditioner built on a low-order finite-volume subgrid makes implicit, high-order discontinuous Galerkin time stepping competitive for two-dimensional atmospheric flows.
desk verdict Solid empirical extension of a known FV-multigrid preconditioner to 2D viscous atmospheric flows; the benchmark data support the main claim, but the conclusions overreach and the missing artifacts weaken reproducibility. read the letter →
The pith
A machine-rendered reading of the paper's core claim, the machinery that carries it, and where it could break.
The reading
What carries the argument
The load-bearing object is the composite preconditioner $Q^{-1}=T^{-1}q^{-1}T$, where $T$ interpolates the high-order DG solution at the cell centers of a finite-volume subgrid and $q^{-1}$ is a geometric multigrid cycle for the first-order finite-volume discretization built on that subgrid. The multigrid restriction is volume averaging of child-quad averages, prolongation is injection of the agglomerate average, and the smoother is a one-stage explicit Euler pseudo-time iteration on the finite-volume levels, with optional smoothing on the DG data before transfer. This machinery matters because it approximates the inverse of the high-order DG Jacobian using only operators that are local, parallel, and matrix-free; the outer GMRES iteration then sees a better-conditioned system without the memory cost of forming the full Jacobian.
What would settle it
Run the same preconditioner on a problem whose solution error is dominated by components that oscillate inside each DG cell, or refine the grid while holding the time step fixed and record the multigrid convergence factor: if the preconditioned GMRES iteration count grows proportionally to the number of levels, or if the V-cycle convergence factor approaches one, the finite-volume subgrid is failing to represent the error modes that the solver must remove. A more direct calculation is to compare the energy of representative high-order error modes before and after transfer through $T^{-1}T$; modes whose energy is significantly reduced by the transfer are not being smoothed, and their presence in the residual would falsify the assumption.
Extended reading notes
Core claim
The central claim is that the linear systems from an SDIRK2 time discretization of a DG space discretization of the 2D Euler or viscous flow equations with gravity can be solved efficiently by preconditioned Jacobian-free Newton-GMRES, provided the preconditioner is an agglomeration multigrid V-cycle applied to a first-order finite-volume discretization on a subgrid with the same number of degrees of freedom. Transfer between the DG polynomial space and the finite-volume cell averages is done by interpolation, with an optional mass-conservative correction, and the multigrid smoother is an explicit Runge-Kutta pseudo-time iteration, so no Jacobian matrix is ever formed. The stated result is that the preconditioner increases the stability of the solver while substantially reducing the number of iterations, making the implicit method competitive; on the fine-grid runs, the implicit method finished in about half the wall-clock time of the explicit SSP time stepping while using time steps around 500 times larger.
Load-bearing premise
The load-bearing premise is that a coarse cell-averaged version of the same equations, connected to the high-order DG discretization by simple interpolation, retains the error modes that dominate the high-order Jacobian, a property the paper relies on from earlier empirical comparisons rather than proving here.
Editorial extensions
If this is right
- Unpreconditioned Jacobian-free GMRES is prohibitively slow or fails to converge within the allocated time on the inertia-gravity and rising-bubble tests; the multigrid preconditioner is what makes those runs finish.
- Implicit time steps of roughly 500 to 2000 times the explicit stability limit reproduce the reference solution closely in the rising-bubble and density-current cases, with larger steps degrading accuracy.
- On the finer grids tested, the preconditioned implicit method used roughly half the wall-clock time of the explicit SSP reference, for example 7915 seconds versus 14000 seconds for the rising bubble at 12.5 meter spacing.
- GMRES iteration counts grow sublinearly with increasing time step and by less than a factor of two when the grid is refined, although they are not fully grid independent.
- The most efficient configuration was a V-cycle with one pre- and post-smoothing step on the DG data and all finite-volume levels; W-cycles improve iteration counts but roughly double the run time.
Reading between the lines
- Because the preconditioner acts on the residual operator rather than on any specific flux or geometry, the same transfer-plus-subgrid-multigrid construction should carry over to three-dimensional DG-SEM and simplicial DG discretizations, with the node layout and subgrid subdivision adjusted accordingly.
- A sharper test of the transfer assumption would be to measure, for a fixed error mode, the ratio of its energy after $T^{-1}T$ to its original energy; modes that the finite-volume subgrid annihilates are exactly the ones the smoother must handle, and their loss would predict when iteration reductions fail to generalize.
- In flows where global mass conservation is a hard constraint, such as moist or tracer transport, the optional mass-conservative correction in the transfer may become essential even though it made no difference in the dry test cases reported here.
- The observed growth of iterations under mesh refinement indicates the scheme is not yet an optimal-order solver; a natural next step would be to identify whether the limiting factor is the pseudo-time smoother or the coarse-grid correction of the finite-volume subgrid.
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. The paper proposes a Jacobian-free multigrid preconditioner for implicit time integration of high-order discontinuous Galerkin (DG) discretizations of compressible atmospheric flow equations. The preconditioner transfers the DG solution to a low-order finite volume subgrid with the same number of degrees of freedom, applies a geometric multigrid V- or W-cycle with explicit Runge-Kutta pseudo-time smoothers, and transfers back with a mass-conservative mapping. The method is embedded in a Jacobian-free Newton-GMRES framework with SDIRK2 time stepping and is tested on three two-dimensional benchmark problems: non-hydrostatic inertia gravity, rising warm air bubble, and density current. The paper reports GMRES iteration counts and wall-clock times, showing significant reductions relative to unpreconditioned GMRES and, in some high-resolution runs, CPU times competitive with an explicit strong-stability-preserving Runge-Kutta method.
Significance. If the results hold, the paper offers a practical path toward making implicit high-order DG methods affordable for numerical weather prediction, a setting where stiffness from gravity and low Mach numbers makes explicit time stepping unattractive. The strengths are the use of standard benchmark test cases, direct comparison of iteration counts and wall-clock times, the mass-conservative transfer construction, and the availability of the implementation within the open DUNE-FEM framework. The main weaknesses are that several strong claims—parallel scalability, low memory footprint, and near-optimal arithmetic intensity—are not supported by measurements, the h-dependence of iteration counts is only demonstrated over one refinement step per test case, and solution accuracy is only assessed visually rather than through quantitative error norms.
major comments (4)
- [Section 2.4.4 and Section 3] The pseudo-CFL number used for the explicit Euler smoother is never reported. The text states that the pseudo time step is 'computed based on a pseudo CFL number' and that the parameters are 'chosen based on [18]', but no value or tuning procedure is given. Since the iteration counts in Figures 5, 7, and 10 depend directly on this smoother parameter, the experiments cannot be reproduced without it. Please provide the pseudo-CFL value(s) used, and clarify how the choice of one-stage explicit Euler relates to the optimized multi-stage Runge-Kutta smoothers in [18].
- [Section 3.2, Fig. 7(c); Section 3.3, Fig. 10(b); Section 4] The central claim that the preconditioned implicit solver becomes competitive at high resolution is supported by only two resolutions in each test case, and the iteration counts grow under refinement. The paper explicitly acknowledges that the rising-bubble iteration count grows by less than a factor of two when the grid width is halved from 25 m to 12.5 m and that the density-current count grows by less than 50% from 320 m to 160 m. This is insufficient to establish that the preconditioner will remain effective at the much finer resolutions typical of NWP. Please either add experiments at one or two additional refinement levels, or revise the conclusions to state the demonstrated resolution regime.
- [Section 4 (Summary and Conclusions)] The statements that the preconditioner 'achieves close to optimal arithmetic intensity for large problems on parallel machines' and 'uses little extra memory' are not supported by any measurement in the manuscript. There are no FLOP-to-byte ratios, roofline data, memory footprint measurements, or parallel scaling results. The abstract also promises a 'fast, highly parallel, low-memory iterative solver.' These claims should either be demonstrated with appropriate experiments or removed/tempered, as they currently go beyond what the paper shows.
- [Section 3 and Section 4] Solution accuracy is only assessed visually. Figures 3, 4, and 9 show line plots, and the text uses qualitative language such as 'broadly follow' and 'some deviation.' No L1, L2, or L-infinity error norms relative to the explicit reference solution are reported. Since the conclusion states that 'the implicit high order solver produces accurate results even for large CFL numbers,' quantitative accuracy metrics are needed to support this claim.
minor comments (5)
- [Abstract and Section 2.4.2] There are typos: 'precondtioner' in the abstract and 'straighforward' in Section 2.4.2. Please correct them.
- [Section 3.2] In the sentence 'at ∆x=25m we the DG solution is computed' the verb is missing, and later the configuration 'mg0011111V' appears with an extra '1'; it should be 'mg001111V'.
- [Section 3.1] The domain notation '[0, 300 000]×[0, 10 000]km^2' is dimensionally inconsistent; presumably the lengths are in meters.
- [Section 3.3] The value 'cp = 1, 004J/(kg K)' uses a comma as a decimal separator inconsistently with the rest of the text; consider writing 1004 J/(kg K).
- [Section 2.4.1] The phrase 'defined such that the functions are close in some sense' is vague. Please specify the relevant norm or cite a precise approximation result from [16, 30] for the interpolation-based transfer operator.
Circularity Check
No equation-level circularity; the central claim rests on measured benchmark performance, with only minor self-citations for design choices.
full rationale
The paper's derivation chain is: DG discretization (Sec. 2.1), SDIRK time integration (Sec. 2.2), Jacobian-free Newton-GMRES (Sec. 2.3), and a preconditioner Q^{-1}=T^{-1}q^{-1}T built from a low-order FV subgrid discretization with transfer operator T (Sec. 2.4, Eq. 16). The claimed outcome, fewer GMRES iterations and competitive wall-clock times, is obtained by direct measurement on standard atmospheric test cases (inertia gravity, rising bubble, density current) against an explicit reference, not by algebraic prediction from the construction. No fitted parameter is renamed as a prediction: the pseudo-CFL smoother settings are taken from [18], an independent optimization, and the transfer-operator choice is justified by prior comparisons [16,30] but is itself tested in this paper's experiments. The only self-referential elements are citations to the authors' earlier work for the subcell FV multigrid concept and transfer operators; these support implementation choices and do not constitute the empirical conclusion. No equation of the paper reduces a claimed prediction to an input by construction, so no circular step is exhibited.
Assumptions & free parameters
free parameters (4)
- pseudo-CFL number for smoother time step =
not stated (taken from [18])
- multigrid pre/post smoothing counts (a-f) =
e.g., mg111111V, mg001111V
- Newton tolerance TOL =
1e-3
- Eisenstat-Walker forcing parameters =
gamma=0.1, alpha=1
assumptions (5)
- standard math DG with Gauss-Legendre nodes yields diagonal mass matrices.
- domain assumption The pseudo-time ODE (20) is stable if the original spatial discretization is stable.
- domain assumption Interpolation-based transfer functions perform as well as L2 projection for this preconditioner.
- ad hoc to paper The low-order FV subgrid system is an effective preconditioner for the high-order DG Jacobian.
- domain assumption The environmental atmosphere is known a priori for well-balancing.
Cite this review
Pith. "Pith review of Jacobian-free Multigrid Preconditioner for Discontinuous Galerkin Methods applied to Numerical Weather Prediction." pith.science (2026). https://pith.science/paper/OGM6DWMQ
@misc{pith2026250524504,
author = {Pith},
title = {Pith review of: Jacobian-free Multigrid Preconditioner for Discontinuous Galerkin Methods applied to Numerical Weather Prediction},
year = {2026},
howpublished = {\url{https://pith.science/paper/OGM6DWMQ}},
note = {Machine review of arXiv:2505.24504}
}
abstract
Discontinuous Galerkin (DG) methods are promising high order discretizations for unsteady compressible flows. Here, we focus on Numerical Weather Prediction (NWP). These flows are characterized by a fine resolution in $z$-direction and low Mach numbers, making the system stiff. Thus, implicit time integration is required and for this a fast, highly parallel, low-memory iterative solver for the resulting algebraic systems. As a basic framework, we use inexact Jacobian-Free Newton-GMRES with a preconditioner. For low order finite volume discretizations, multigrid methods have been successfully applied to steady and unsteady fluid flows. However, for high order DG methods, such solvers are currently lacking. %The lack of efficient solvers suitable for contemporary computer architectures inhibits wider adoption of DG methods. This motivates our research to construct a Jacobian-free precondtioner for high order DG discretizations. The preconditioner is based on a multigrid method constructed for a low order finite volume discretization defined on a subgrid of the DG mesh. We design a computationally efficient and mass conservative mapping between the grids. As smoothers, explicit Runge-Kutta pseudo time iterations are used, which can be implemented in parallel in a Jacobian-free low-memory manner. We consider DG Methods for the Euler equations and for viscous flow equations in 2D, both with gravity, in a well balanced formulation. Numerical experiments in the software framework DUNE-FEM on atmospheric flow problems show the benefit of this approach.
Reference graph
Works this paper leans on
-
[18]
Birken, P.: Optimizing Runge-Kutta smoothers for unsteady flow problems. ETNA 39, 298–312 (2012)
work page 2012
-
[1]
Bao, L., Kl¨ ofkorn, R., Nair, R.D.: Horizontally Explicit and Vertically Implicit (HEVI) Time Discretization Scheme for a Discontinuous Galerkin Nonhydro- static Model. Mon. Wea. Rev. 143, 972–990 (2015) https://doi.org/10.1175/ MWR-D-14-00083.1
work page 2015
-
[2]
Journal of Computational Physics 515, 113275 (2024) https://doi.org/10.1016/j.jcp.2024.113275
Giraldo, F.X., de Bragan¸ ca Alves, F.A.V., Kelly, J.F., Kang, S., Reinecke, P.A.: A performance study of horizontally explicit vertically implicit (hevi) time- integrators for non-hydrostatic atmospheric models. Journal of Computational Physics 515, 113275 (2024) https://doi.org/10.1016/j.jcp.2024.113275
arXiv 2024
-
[3]
Bastian, P., M¨ uller, E., M¨ uthing, S., Piatkowski, M.: Matrix-free multigrid block-preconditioners for higher order Discontinuous Galerkin discretisations. J. Comput. Phys. 394, 417–439 (2019) https://doi.org/10.1016/j.jcp.2019.06.001
-
[4]
Kempf, D., Heß, R., M¨ uthing, S., Bastian, P.: Automatic Code Generation for High-Performance Discontinuous Galerkin Methods on Modern Architectures. 20 ACM Trans. Math. Softw. 47(1) (2020) https://doi.org/10.1145/3424144
-
[5]
Kronbichler, M., Kormann, K.: Fast Matrix-Free Evaluation of Discontinuous Galerkin Finite Element Operators. ACM Trans. Math. Softw.45(3) (2019) https: //doi.org/10.1145/3325864
doi:10.1145/3325864 2019
-
[6]
Bassi, F., Ghidoni, A., Rebay, S., Tesini, P.: High-order accurate p-multigrid discontinuous Galerkin solution of the Euler equations. Int. J. Num. Meth. Fluids 60, 847–865 (2009) https://doi.org/10.1002/fld
doi:10.1002/fld 2009
-
[7]
Birken, P., Gassner, G., Haas, M., Munz, C.D.: Preconditioning for modal discon- tinuous Galerkin methods for unsteady 3D Navier-Stokes equations. J. Comput. Phys. 240, 20–35 (2013) https://doi.org/10.1016/j.jcp.2013.01.004
Show all 40 references
-
[8]
Carr, L.E., Borges, C.F., Giraldo, F.X.: Matrix-Free Polynomial-Based Nonlin- ear Least Squares Optimized Preconditioning and its Application to Continuous and Discontinuous Element-Based Discretizations of the Euler Equations. J. Sci. Comput. 66, 917–940 (2016) https://doi.or...
2016 doi
-
[9]
Franco, M., Persson, P.O., Pazner, W.: Iterative subregion correction precondi- tioners with adaptive tolerance for problems with geometrically localized stiffness. Commun. Appl. Math. Comput. 6, 811–836 (2023) https://doi.org/10.1007/ s42967-023-00254-0
2023
-
[10]
Wang, L., Trojak, W., Witherden, F., Jameson, A.: Nonlinear p-Multigrid Precon- ditioner for Implicit Time Integration of Compressible Navier–Stokes Equations with p-Adaptive Flux Reconstruction. J. Sci. Comput. 93 (2022) https://doi.org/ 10.1007/s10915-022-02037-w
2022 doi
-
[11]
Communications in Computational Physics 36 (2024) https://doi.org/10.4208/cicp.OA-2023-0199
Puppo, G., Semplice, M., Visconti, G.: Quinpi: Integrating stiff hyperbolic systems with implicit high order finite volume schemes. Communications in Computational Physics 36 (2024) https://doi.org/10.4208/cicp.OA-2023-0199
2024 doi
-
[12]
AIAA Paper 2001-2673 (2001) https://doi.org/10.2514/6.2001-2673
Caughey, D.A., Jameson, A.: How Many Steps are Required to Solve the Euler Equations of Steady Compressible Flow: In Search of a Fast Solution Algorithm. AIAA Paper 2001-2673 (2001) https://doi.org/10.2514/6.2001-2673
2001 doi
-
[13]
Birken, P., Bull, J., Jameson, A.: Preconditioned Smoothers for the Full Approxi- mation Scheme for the RANS Equations. J. Sci. Comput. 78(2), 995–1022 (2019) https://doi.org/10.1007/s10915-018-0792-9 arXiv:1710.04875
2019 arXiv
-
[14]
CRC Press, Boca Raton (2021)
Birken, P.: Numerical Methods for Unsteady Compressible Flow Problems. CRC Press, Boca Raton (2021). https://doi.org/10.1201/9781003025214
2021 doi
-
[15]
Birken, P., Gassner, G.J., Versbach, L.M.: Subcell finite volume multigrid precon- ditioning for high-order discontinuous Galerkin methods. Int. J. Comput. Fluid Dyn. 33(9), 353–361 (2019) https://doi.org/10.1080/10618562.2019.1667983 21
2019
-
[16]
and Versbach, L
Kasimir, J. and Versbach, L. M. and Birken, P. and Gassner, G. J. and Kl¨ ofkorn, R.: An finite volume based multigrid preconditioner for DG-SEM for convection-diffusion. WCCM-ECCOMAS2020 (2021). https://doi.org/10.23967/ wccm-eccomas.2020.21
2021
-
[17]
In: ECCOMAS 2024 (2024)
Birken, P., Dedner, A., Kasimir, J., Kl¨ ofkorn, R.: A multigrid preconditioner for discontinuous galerkin methods applied to numerical weather prediction. In: ECCOMAS 2024 (2024). https://doi.org/10.23967/eccomas.2024.027
2024 doi
-
[19]
Blom, D.S., Birken, P., Bijl, H., Kessels, F., Meister, A., Zuijlen, A.H.: A com- parison of rosenbrock and esdirk methods combined with iterative solvers for unsteady compressible flows. Adv. Comp. Math. 42, 1401–1426 (2016) https: //doi.org/10.1007/s10444-016-9468-x
2016 doi
-
[20]
Meteorologische Zeitschrift 23(4), 449–464 (2014) https://doi
Schuster, D., Brdar, S., Baldauf, M., Dedner, A., Kl¨ ofkorn, R., Kr¨ oner, D.: On discontinuous Galerkin approach for atmospheric flow in the mesoscale with and without moisture. Meteorologische Zeitschrift 23(4), 449–464 (2014) https://doi. org/10.1127/0941-2948/2014/0565
2014 doi
-
[21]
Dedner, A., Kl¨ ofkorn, R.: Extendible and Efficient Python Framework for Solving Evolution Equations with Stabilized Discontinuous Galerkin Method. Commun. Appl. Math. Comput. 4, 657–696 (2022) https://doi.org/10.1007/ s42967-021-00134-5
2022
-
[22]
Kopriva, D.A., Gassner, G.: On the Quadrature and Weak Form Choices in Collo- cation Type Discontinuous Galerkin Spectral Element Methods. J. Sci. Comput. 44, 136–155 (2010) https://doi.org/10.1007/s10915-010-9372-3
2010 doi
-
[23]
Kopriva, D.A., Woodruff, S.L., Hussaini, M.Y.: Computation of electromagnetic scattering with a non-conforming discontinuous spectral element method. Int. J. Numer. Methods Eng. 53(1), 105–122 (2002) https://doi.org/10.1002/nme.394
2002 doi
-
[24]
Springer, Berlin, Heidelberg (2009)
Toro, E.F.: Riemann Solvers and Numerical Methods for Fluid Dynamics. Springer, Berlin, Heidelberg (2009). https://doi.org/10.1007/b79761
2009 doi
-
[25]
Brdar, S., Dedner, A., Kl¨ ofkorn, R.: Compact and stable Discontinuous Galerkin methods for convection-diffusion problems. SIAM J. Sci. Comput. 34(1), 263–282 (2012) https://doi.org/10.1137/100817528
2012 doi
-
[26]
ANS 5(1) (2017) https://doi.org/10.11588/ans.2017.1.28602
Dedner, A., Girke, S., Kl¨ ofkorn, R., Malkmus, T.: The DUNE-FEM-DG module. ANS 5(1) (2017) https://doi.org/10.11588/ans.2017.1.28602
2017 doi
-
[27]
PhD thesis, University of Stuttgart (1999) 22
Ellsiepen, P.: Zeit- und ortsadaptive Verfahren angewandt auf Mehrphasenprob- leme por¨ oser Medien. PhD thesis, University of Stuttgart (1999) 22
1999
-
[28]
Knoll, D.A., Keyes, D.E.: Jacobian-free Newton-Krylov methods: a survey of approaches and applications. J. Comput. Phys. 193(2), 357–397 (2004) https: //doi.org/10.1016/j.jcp.2003.08.010
2004 doi
-
[29]
Eisenstat, S.C., Walker, H.F.: Choosing the Forcing Terms in an Inexact Newton Method. SIAM J. Sci. Comput. 17(1), 16–32 (1996) https://doi.org/10.1137/ 0917003
1996
-
[30]
Master thesis, Lund University (2021)
Kasimir, J.: Subgrid finite volume preconditioner for Discontinuous Galerkin implemented in the DUNE framework. Master thesis, Lund University (2021). https://lup.lub.lu.se/student-papers/search/publication/9065436
2021
-
[31]
Witherden, F.D., Vincent, P.E.: On Nodal Point Sets for Flux Reconstruction. J. Comput. Appl. Math. 381 (2021) https://doi.org/10.1016/j.cam.2020.113014
2021
-
[32]
Birken, P., Linders, V.: Conservation properties of iterative methods for implicit discretizations of conservation laws. J. Sci. Comput. 92 (2021) https://doi.org/ 10.1007/s10915-022-01923-7
2021 doi
-
[33]
Linders, V., Birken, P.: Locally conservative and flux consistent iterative methods. SIAM J. Sci. Comput. (2023) https://doi.org/10.1137/22M1503348
2023 doi
-
[34]
PhD thesis, Universit¨ at Freiburg (2003)
Dedner, A.: Solving the system of Radiation Magnetohydrodynamics for solar physical simulations in 3d. PhD thesis, Universit¨ at Freiburg (2003). https://doi. org/urn:nbn:de:bsz:25-opus-10989
2003
-
[35]
Ketcheson, D.I.: Highly Efficient Strong Stability-Preserving Runge-Kutta Meth- ods with Low-Storage Implementations. SIAM J. Sci. Comput. 30(4), 2113–2136 (2008) https://doi.org/10.1137/07070485X
2008 doi
-
[36]
Monthly Weather Review 122 (1994) https://doi.org/10.1175/1520-0493(1994)122⟨2623:EAAOTK⟩2.0.CO;2
Skamarock, W.C., Klemp, J.B.: Efficiency and Accuracy of the Klemp- Wilhelmson Time-Splitting Technique. Monthly Weather Review 122 (1994) https://doi.org/10.1175/1520-0493(1994)122⟨2623:EAAOTK⟩2.0.CO;2
1994 doi
-
[37]
Robert, A.: Bubble Convection Experiments with a Semi-Implicit Formula- tion of the Euler Equations. J. Atmos. Sci. 50 (1993) https://doi.org/10.1175/ 1520-0469(1993)050⟨1865:BCEW AS⟩2.0.CO;2
1993
-
[38]
Brdar, S., Baldauf, M., Dedner, A., Kl¨ ofkorn, R.: Comparison of dynamical cores for NWP models: comparison of COSMO and DUNE. Theor. Comput. Fluid Dyn. 27(3-4), 453–472 (2013) https://doi.org/10.1007/s00162-012-0264-z
2013 doi
-
[39]
Straka, J.M., Wilhelmson, R.B., Wicker, L.J., Anderson, J.R., Droegemeier, K.K.: Numerical solutions of a non-linear density current: A benchmark solution and comparisons. Int. J. Num. Meth. Fluids 17, 1–22 (1993) https://doi.org/10.1002/ fld.1650170103 23
1993
-
[40]
Computing 90(3–4), 165–196 (2010) https://doi.org/10
Dedner, A., Kl¨ ofkorn, R., Nolte, M., Ohlberger, M.: A Generic Interface for Parallel and Adaptive Scientific Computing: abstraction Principles and the DUNE-FEM Module. Computing 90(3–4), 165–196 (2010) https://doi.org/10. 1007/s00607-010-0110-3 A Modified Newton-Cotes formul...
2010
Reviewed August 7, 2026 · model on record in the stance chip above.
Discussion (0). Sign in to comment.