@@ -407,7 +407,7 @@ int NSE<rnumber>::Euler_step(void)
...
@@ -407,7 +407,7 @@ int NSE<rnumber>::Euler_step(void)
/** \brief Time step with Shu Osher method
/** \brief Time step with Shu Osher method
*
*
* The Navier Stokes equations are integrated with a
* The Navier Stokes equations are integrated with a
* third-order Runge-Kutta method \cite shu1988jcp, which is an explicit
* third-order Runge-Kutta method [shu1988jcp]_, which is an explicit
* Runge-Kutta method with the Butcher tableau
* Runge-Kutta method with the Butcher tableau
*
*
* | | | | |
* | | | | |
...
@@ -417,23 +417,15 @@ int NSE<rnumber>::Euler_step(void)
...
@@ -417,23 +417,15 @@ int NSE<rnumber>::Euler_step(void)
* | 1/2 | 1/4 | 1/4 | |
* | 1/2 | 1/4 | 1/4 | |
* | | 1/6 | 1/6 | 2/3 |
* | | 1/6 | 1/6 | 2/3 |
*
*
* In addition to the stability properties described in \cite shu1988jcp, this method has the advantage that it is memory-efficient, requiring only two additional field allocations, as can be seen from
* In addition to the stability properties described in [shu1988jcp]_, this method has the advantage that it is memory-efficient, requiring only two additional field allocations, as can be seen from