Advance equations using Corner Transport Upwind (CTU). More...
#include "pluto.h"
Functions | |
static void | CTU_CT_Source (double **, double **, double **, double *, int, int, Grid *) |
int | Unsplit (const Data *d, Riemann_Solver *Riemann, Time_Step *Dts, Grid *grid) |
Implement the dimensionally unsplit, Corner Transport Upwind method (CTU) of Colella. It consists of
A predictor step :
V
and compute time-centered interface states using either HANCOCK or CHARACTERISTIC_TRACING:
UP
, UM
). Normal (n) and trasnverse (t) indexes for this step should span A corrector step :
UP
and UM
computed in the previous step by adding the transverse RHS contribution, e.g. UP
and UM
, get RHS and evolve to final stage, This integrator performs an integration in the ghost boundary zones, in order to recover appropriate information to build the transverse predictors.
References
|
static |
Add source terms to conservative left and right states obtained from the primitive form of the equations. The source terms are:
These terms are NOT accounted for when the primitive form of the equations is used (see Gardiner & Stone JCP (2005), Crockett et al. JCP(2005)). This is true for both the Charactheristic Tracing AND the primitive Hancock scheme when the constrained transport is used, since the resulting system is 7x7. To better understand this, you can consider the stationary solution rho = p = 1, v = 0 and Bx = x, By = -y. If these terms were not included the code would generate spurious velocities.