Skip to content
Snippets Groups Projects
Commit 22e9a377 authored by Jean-Baptiste Keck's avatar Jean-Baptiste Keck
Browse files

fixed taylor green

parent 0b8ed102
No related branches found
No related tags found
1 merge request!3Resolve "Sine and cosine transforms to solve homogeneous Neumann and Dirichlet problems"
......@@ -175,8 +175,10 @@ def compute(args):
### Adaptive timestep operator
adapt_dt = AdaptiveTimeStep(dt, equivalent_CFL=True)
dt_cfl = adapt_dt.push_cfl_criteria(cfl=args.cfl, Finf=min_max_U.Finf,
equivalent_CFL=True)
dt_cfl = adapt_dt.push_cfl_criteria(cfl=args.cfl,
Fmin=min_max_U.Fmin,
Fmax=min_max_U.Fmax,
equivalent_CFL=True)
dt_stretch = adapt_dt.push_stretching_criteria(gradFinf=min_max_gradU.Finf,
criteria=StretchingCriteria.GRAD_U)
dt_lcfl0 = adapt_dt.push_advection_criteria(lcfl=args.lcfl, Finf=min_max_W.Finf,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment