1+ %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
2+ % %
3+ % WARNING %
4+ % This regression test will diverge! %
5+ % %
6+ % This test case is only meant to trigger the negative part of the SA model, %
7+ % to check the integrity of the commits. It is inadvisable to use it as an %
8+ % starting point for tutorials. %
9+ % The rae2822 airfoil is a simple (fast) case. A high angle of attack is being %
10+ % used in order to force the negative part of the SA in a reasonable amount of %
11+ % iterations. With the current configuration, e.g., convective scheme, CFL %
12+ % number, etc, the solution is not stable and diverges after some iterations, %
13+ % around 15. Therefore, this regression test shall only run for iter < 15. %
14+ % %
15+ %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
16+ %
117% ------------- DIRECT, ADJOINT, AND LINEARIZED PROBLEM DEFINITION ------------%
218%
319% Physical governing equations
@@ -14,7 +30,7 @@ RESTART_SOL= NO
1430MACH_NUMBER = 0.729
1531%
1632% Angle of attack (degrees, only for compressible flows)
17- AOA = 2 .31
33+ AOA = 20 .31
1834%
1935% Free-stream temperature (288.15 K by default)
2036FREESTREAM_TEMPERATURE = 288.15
@@ -61,7 +77,11 @@ NUM_METHOD_GRAD= WEIGHTED_LEAST_SQUARES
6177CFL_NUMBER = 2.5
6278%
6379% Adaptive CFL number (NO, YES)
64- CFL_ADAPT = NO
80+ CFL_ADAPT = YES
81+ %
82+ % Parameters of the adaptive CFL number ( factor down, factor up, CFL min value,
83+ % CFL max value )
84+ CFL_ADAPT_PARAM = ( 0.5, 1.5, 400.0, 1000.0 )
6585%
6686% Number of total iterations
6787ITER = 99999
@@ -78,7 +98,7 @@ LINEAR_SOLVER_ITER= 20
7898% -------------------------- MULTIGRID PARAMETERS -----------------------------%
7999%
80100% Multi-Grid Levels (0 = no multi-grid)
81- MGLEVEL = 3
101+ MGLEVEL = 0
82102%
83103% Multi-grid cycle (V_CYCLE, W_CYCLE, FULLMG_CYCLE)
84104MGCYCLE = W_CYCLE
0 commit comments