Tests on the templated advection operators
Contents
Advection along x on (t, x)
- 1d_advection_x.cpp: test the BslAdvection1D operator for a 1D case.
The test is the following:
on \(\Omega = [-\pi, \pi]\) with
We test it on a grid \(N_x = 32\) with \(dt = 0.05\). The simulation runs on \(t\in[0,0.4]\) and the relative error is expected to be below \( 5*10^{-3}\).
Advection along x on (t, x, vx)
- 1d_advection_xvx.cpp: test the BslAdvection1D operator for a 1Dx1V case.
The test is the following:
on \(\Omega = [-\pi, \pi]\times[-6, 6]\) with
We test it on a grid \(N_x\times N_{v_x} = 100\times50\) with \(dt = 0.1\). The simulation runs on \(t\in[0,0.4]\) and the relative error is expected to be below \( 5*10^{-7}\).
Advection along x and y on (t, x, y, vx, vy)
- 1d_advection_xyvxvy.cpp: test the BslAdvection1D operator for a 2Dx2V case with a Strang splitting for the resolution.
The test is the following:
on \(\Omega = [-0.5, 0.5]^2\times\{0,1\}^2\) with
with
We test it on a grid \(N_x \times N_y \times N_{v_x} \times N_{v_y} = 60 \times 60 \times 2 \times 2\) with \(dt = 0.05\). The simulation runs on \(t\in[0,0.2]\) and the relative error is expected to be below \( 7*10^{-2}\).
Same test cases as for BslAdvectionSpatial and BslAdvectionVelocity
- 1d_spatial_advection.cpp: test the BslAdvection1D operator for a 1Dx1V case.
This test is similar totests/geometryXVx/spatialadvection.cpp
which tests the BslAdvectionSpatial operator.
The test is the following:
on \(\Omega = [-\pi, \pi]\times[-6, 6]\) with
We test it on a grid \(N_x\times N_{v_x} = 100\times50\) with \(dt = 0.1\). The simulation runs on \(t\in[0,0.1]\) and the relative error is expected to be below \( 1*10^{-6}\).
- 1d_velocity_advection.cpp: test the BslAdvection1D operator for a 1Dx1V case.
This test is similar totests/geometryXVx/velocityadvection.cpp
which tests the BslAdvectionVelocity operator.
The test is the following:
on \(\Omega = [0, 2\pi]\times[-10, 10]\) with
We test it on a grid \(N_x\times N_{v_x} = 50\times100\) with \(dt = 0.1\). The simulation runs on \(t\in[0,0.1]\) and the relative error is expected to be below \( 1*10^{-5}\).