@@ -89,11 +89,11 @@ NUM_METHOD_GRAD= GREEN_GAUSS
89
89
CFL_NUMBER = 50.0
90
90
%
91
91
% Adaptive CFL number (NO, YES)
92
- CFL_ADAPT = NO
92
+ CFL_ADAPT = YES
93
93
%
94
94
% Parameters of the adaptive CFL number (factor down, factor up, CFL min value,
95
95
% 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 )
97
97
%
98
98
% Runge-Kutta alpha coefficients
99
99
RK_ALPHA_COEFF = ( 0.66667, 0.66667, 1.000000 )
@@ -110,18 +110,18 @@ LINEAR_SOLVER= FGMRES
110
110
LINEAR_SOLVER_PREC = ILU
111
111
%
112
112
% Minimum error of the linear solver for implicit formulations
113
- LINEAR_SOLVER_ERROR = 1E-4
113
+ LINEAR_SOLVER_ERROR = 1E-10
114
114
%
115
115
% Max number of iterations of the linear solver for the implicit formulation
116
- LINEAR_SOLVER_ITER = 10
116
+ LINEAR_SOLVER_ITER = 20
117
117
118
118
% -------------------------- MULTIGRID PARAMETERS -----------------------------%
119
119
%
120
120
% Multi-Grid Levels (0 = no multi-grid)
121
121
MGLEVEL = 3
122
122
%
123
123
% Multi-grid cycle (V_CYCLE, W_CYCLE, FULLMG_CYCLE)
124
- MGCYCLE = V_CYCLE
124
+ MGCYCLE = W_CYCLE
125
125
%
126
126
% Multi-grid pre-smoothing level
127
127
MG_PRE_SMOOTH = ( 1, 2, 3, 3 )
@@ -133,27 +133,17 @@ MG_POST_SMOOTH= ( 0, 0, 0, 0 )
133
133
MG_CORRECTION_SMOOTH = ( 0, 0, 0, 0 )
134
134
%
135
135
% Damping factor for the residual restriction
136
- MG_DAMP_RESTRICTION = 0.9
136
+ MG_DAMP_RESTRICTION = 1.0
137
137
%
138
138
% Damping factor for the correction prolongation
139
- MG_DAMP_PROLONGATION = 0.9
139
+ MG_DAMP_PROLONGATION = 1.0
140
140
141
141
% -------------------- FLOW NUMERICAL METHOD DEFINITION -----------------------%
142
142
%
143
143
% Convective numerical method (JST, LAX-FRIEDRICH, CUSP, ROE, AUSM, HLLC,
144
144
% TURKEL_PREC, MSW)
145
145
CONV_NUM_METHOD_FLOW = JST
146
146
%
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
- %
157
147
% 2nd and 4th order artificial dissipation coefficients
158
148
JST_SENSOR_COEFF = ( 0.5, 0.02 )
159
149
%
@@ -163,12 +153,10 @@ TIME_DISCRE_FLOW= EULER_IMPLICIT
163
153
% --------------------------- CONVERGENCE PARAMETERS --------------------------%
164
154
%
165
155
% Convergence criteria (CAUCHY, RESIDUAL)
166
- %
167
- CONV_CRITERIA = RESIDUAL
168
- %
156
+ CONV_FIELD = RMS_DENSITY
169
157
%
170
158
% Min value of the residual (log10 of the residual)
171
- CONV_RESIDUAL_MINVAL = -12
159
+ CONV_RESIDUAL_MINVAL = -10
172
160
%
173
161
% Start convergence criteria at iteration number
174
162
CONV_STARTITER = 10
@@ -178,7 +166,6 @@ CONV_CAUCHY_ELEMS= 100
178
166
%
179
167
% Epsilon to control the series convergence
180
168
CONV_CAUCHY_EPS = 1E-10
181
- %
182
169
183
170
% ------------------------- INPUT/OUTPUT INFORMATION --------------------------%
184
171
%
@@ -231,4 +218,4 @@ WRT_SOL_FREQ= 250
231
218
WRT_CON_FREQ = 1
232
219
%
233
220
% 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