@@ -89,11 +89,11 @@ NUM_METHOD_GRAD= GREEN_GAUSS
8989CFL_NUMBER = 50.0
9090%
9191% Adaptive CFL number (NO, YES)
92- CFL_ADAPT = NO
92+ CFL_ADAPT = YES
9393%
9494% Parameters of the adaptive CFL number (factor down, factor up, CFL min value,
9595% CFL max value )
96- CFL_ADAPT_PARAM = ( 1.5, 0.5, 1 .0, 100.0 )
96+ CFL_ADAPT_PARAM = ( 0.1, 2 .0, 50.0, 1e10 )
9797%
9898% Runge-Kutta alpha coefficients
9999RK_ALPHA_COEFF = ( 0.66667, 0.66667, 1.000000 )
@@ -110,18 +110,18 @@ LINEAR_SOLVER= FGMRES
110110LINEAR_SOLVER_PREC = ILU
111111%
112112% Minimum error of the linear solver for implicit formulations
113- LINEAR_SOLVER_ERROR = 1E-4
113+ LINEAR_SOLVER_ERROR = 1E-10
114114%
115115% Max number of iterations of the linear solver for the implicit formulation
116- LINEAR_SOLVER_ITER = 10
116+ LINEAR_SOLVER_ITER = 20
117117
118118% -------------------------- MULTIGRID PARAMETERS -----------------------------%
119119%
120120% Multi-Grid Levels (0 = no multi-grid)
121121MGLEVEL = 3
122122%
123123% Multi-grid cycle (V_CYCLE, W_CYCLE, FULLMG_CYCLE)
124- MGCYCLE = V_CYCLE
124+ MGCYCLE = W_CYCLE
125125%
126126% Multi-grid pre-smoothing level
127127MG_PRE_SMOOTH = ( 1, 2, 3, 3 )
@@ -133,27 +133,17 @@ MG_POST_SMOOTH= ( 0, 0, 0, 0 )
133133MG_CORRECTION_SMOOTH = ( 0, 0, 0, 0 )
134134%
135135% Damping factor for the residual restriction
136- MG_DAMP_RESTRICTION = 0.9
136+ MG_DAMP_RESTRICTION = 1.0
137137%
138138% Damping factor for the correction prolongation
139- MG_DAMP_PROLONGATION = 0.9
139+ MG_DAMP_PROLONGATION = 1.0
140140
141141% -------------------- FLOW NUMERICAL METHOD DEFINITION -----------------------%
142142%
143143% Convective numerical method (JST, LAX-FRIEDRICH, CUSP, ROE, AUSM, HLLC,
144144% TURKEL_PREC, MSW)
145145CONV_NUM_METHOD_FLOW = JST
146146%
147- % Monotonic Upwind Scheme for Conservation Laws (TVD) in the flow equations.
148- % Required for 2nd order upwind schemes (NO, YES)
149- MUSCL_FLOW = YES
150- %
151- % Slope limiter (VENKATAKRISHNAN, MINMOD)
152- SLOPE_LIMITER_FLOW = VENKATAKRISHNAN
153- %
154- % Coefficient for the limiter (smooth regions)
155- VENKAT_LIMITER_COEFF = 0.03
156- %
157147% 2nd and 4th order artificial dissipation coefficients
158148JST_SENSOR_COEFF = ( 0.5, 0.02 )
159149%
@@ -163,12 +153,10 @@ TIME_DISCRE_FLOW= EULER_IMPLICIT
163153% --------------------------- CONVERGENCE PARAMETERS --------------------------%
164154%
165155% Convergence criteria (CAUCHY, RESIDUAL)
166- %
167- CONV_CRITERIA = RESIDUAL
168- %
156+ CONV_FIELD = RMS_DENSITY
169157%
170158% Min value of the residual (log10 of the residual)
171- CONV_RESIDUAL_MINVAL = -12
159+ CONV_RESIDUAL_MINVAL = -10
172160%
173161% Start convergence criteria at iteration number
174162CONV_STARTITER = 10
@@ -178,7 +166,6 @@ CONV_CAUCHY_ELEMS= 100
178166%
179167% Epsilon to control the series convergence
180168CONV_CAUCHY_EPS = 1E-10
181- %
182169
183170% ------------------------- INPUT/OUTPUT INFORMATION --------------------------%
184171%
@@ -231,4 +218,4 @@ WRT_SOL_FREQ= 250
231218WRT_CON_FREQ = 1
232219%
233220% Screen output
234- SCREEN_OUTPUT = (INNER_ITER, RMS_DENSITY, RMS_ENERGY, LIFT, DRAG)
221+ SCREEN_OUTPUT = (INNER_ITER, WALL_TIME, RMS_DENSITY, RMS_ENERGY, LIFT, DRAG)
0 commit comments