Hi, everyone.
I just tested the dual time stepping for euler vortex case in the examples using following *.ini configuration:
[solver-time-integrator]
formulation = dual
scheme = bdf2
pseudo-scheme = tvd-rk3
tstart = 0.0
tend = 100.0
dt = 1
pseudo-dt = 0.01
controller = none
pseudo-niters-max = 20
pseudo-niters-min = 5
pseudo-aresid = 1e-5
pseudo-rresid = 1e-5
It is really fast (4s) comparing with standard time integrator (39s).
100.00/100.00 ela: 00:00:04 rem: 00:00:00
However, the result is different from default setting. The vortex goes lower in the dual-time stepping case.
I also tried to use pseudo-dt
= 0.05 and 0.1 but it resulted in NaN error. My question is:
-
What is wrong with this euler-vortex case using dual time stepping?
-
What can I expect from using dual-stepping?