Skip to content

Commit ae9a018

Browse files
author
rois1995
committed
- Remove unecessary comments from config files
1 parent 0e7e9f9 commit ae9a018

4 files changed

Lines changed: 10 additions & 345 deletions

File tree

TestCases/transition/E387_Airfoil/transitional_SA_LM_model_ConfigFile.cfg

Lines changed: 3 additions & 82 deletions
Original file line numberDiff line numberDiff line change
@@ -11,220 +11,141 @@
1111

1212
% ------------- DIRECT, ADJOINT, AND LINEARIZED PROBLEM DEFINITION ------------%
1313
%
14-
% Physical governing equations (EULER, NAVIER_STOKES,
15-
% WAVE_EQUATION, HEAT_EQUATION, FEM_ELASTICITY,
16-
% POISSON_EQUATION)
1714
SOLVER= RANS
1815
%
19-
% Specify turbulent model (NONE, SA, SA_NEG, SST)
2016
KIND_TURB_MODEL= SA
2117
KIND_TRANS_MODEL= LM
2218
FREESTREAM_TURBULENCEINTENSITY= 0.001
2319
%
24-
% Mathematical problem (DIRECT, CONTINUOUS_ADJOINT)
2520
MATH_PROBLEM= DIRECT
2621
%
27-
% Restart solution (NO, YES)
2822
RESTART_SOL= NO
2923
%
3024

3125
% -------------------- COMPRESSIBLE FREE-STREAM DEFINITION --------------------%
3226
%
33-
% Mach number (non-dimensional, based on the free-stream values)
3427
MACH_NUMBER= 0.06
3528
%
36-
% Angle of attack (degrees, only for compressible flows)
3729
AOA= 2
3830
%
39-
% Free-stream temperature (288.15 K by default)
4031
FREESTREAM_TEMPERATURE= 288.15
4132
%
42-
% Reynolds number (non-dimensional, based on the free-stream values)
4333
REYNOLDS_NUMBER= 200000.0
4434
%
45-
% Reynolds length (1 m by default)
4635
REYNOLDS_LENGTH= 1.0
4736

4837
% ---------------------- REFERENCE VALUE DEFINITION ---------------------------%
4938
%
50-
% Reference origin for moment computation
5139
REF_ORIGIN_MOMENT_X= 0.25
5240
REF_ORIGIN_MOMENT_Y = 0.00
5341
REF_ORIGIN_MOMENT_Z = 0.00
5442
%
55-
% Reference length for pitching, rolling, and yawing non-dimensional moment
5643
REF_LENGTH= 1.0
5744
%
58-
% Reference area for force coefficients (0 implies automatic calculation)
5945
REF_AREA= 0
6046
%
61-
% Flow non-dimensionalization (DIMENSIONAL, FREESTREAM_PRESS_EQ_ONE,
62-
% FREESTREAM_VEL_EQ_MACH, FREESTREAM_VEL_EQ_ONE)
6347
REF_DIMENSIONALIZATION= FREESTREAM_VEL_EQ_MACH
6448

6549
% -------------------- BOUNDARY CONDITION DEFINITION --------------------------%
6650
%
67-
% Navier-Stokes wall boundary marker(s) (NONE = no marker)
6851
MARKER_HEATFLUX= ( Airfoil, 0.0 )
6952
%
70-
% Farfield boundary marker(s) (NONE = no marker)
7153
MARKER_FAR= ( Farfield )
72-
%MARKER_SYM= ( Symmetry )
7354
%
74-
% Marker(s) of the surface to be plotted or designed
7555
MARKER_PLOTTING= ( Airfoil )
7656
%
77-
% Marker(s) of the surface where the functional (Cd, Cl, etc.) will be evaluated
7857
MARKER_MONITORING= ( Airfoil )
7958

8059
% ------------- COMMON PARAMETERS DEFINING THE NUMERICAL METHOD ---------------%
8160
%
82-
% Numerical method for spatial gradients (GREEN_GAUSS, WEIGHTED_LEAST_SQUARES)
8361
NUM_METHOD_GRAD= GREEN_GAUSS
84-
%NUM_METHOD_GRAD_RECON= LEAST_SQUARES
8562
%
86-
% Courant-Friedrichs-Lewy condition of the finest grid
87-
%CFL_NUMBER= 1000.0
8863
CFL_NUMBER= 1
8964
%
90-
% Max Delta time
9165
%MAX_DELTA_TIME= 1E10
9266
%
93-
% Adaptive CFL number (NO, YES)
9467
CFL_ADAPT= YES
9568
%
96-
% Parameters of the adaptive CFL number (factor down, factor up, CFL min value,
97-
% CFL max value )
9869
CFL_ADAPT_PARAM= ( 0.1, 2.0, 40.0, 1e10, 0.001 )
9970
%
100-
% Number of total iterations
10171
ITER= 100000
10272

10373
% ------------------------ LINEAR SOLVER DEFINITION ---------------------------%
10474
%
105-
% Linear solver or smoother for implicit formulations (BCGSTAB, FGMRES, SMOOTHER)
10675
LINEAR_SOLVER= FGMRES
10776
%
108-
% Preconditioner of the Krylov linear solver (ILU, LU_SGS, LINELET, JACOBI)
10977
LINEAR_SOLVER_PREC= LU_SGS
11078
%
111-
% Minimum error of the linear solver for implicit formulations
11279
LINEAR_SOLVER_ERROR= 1E-6
11380
%
114-
% Max number of iterations of the linear solver for the implicit formulation
11581
LINEAR_SOLVER_ITER= 5
11682

11783
% -------------------- FLOW NUMERICAL METHOD DEFINITION -----------------------%
11884
%
119-
% Convective numerical method (JST, LAX-FRIEDRICH, CUSP, ROE, AUSM, HLLC,
120-
% TURKEL_PREC, MSW)
12185
CONV_NUM_METHOD_FLOW= ROE
12286
USE_VECTORIZATION= NO
12387
%
124-
% Spatial numerical order integration (1ST_ORDER, 2ND_ORDER, 2ND_ORDER_LIMITER)
12588
MUSCL_FLOW= YES
12689
%
127-
% Slope limiter (VENKATAKRISHNAN, MINMOD)
12890
SLOPE_LIMITER_FLOW= VENKATAKRISHNAN
12991
%
130-
% 2nd and 4th order artificial dissipation coefficients
13192
JST_SENSOR_COEFF= ( 0.5, 0.02 )
13293
%
133-
% Time discretization (RUNGE-KUTTA_EXPLICIT, EULER_IMPLICIT, EULER_EXPLICIT)
13494
TIME_DISCRE_FLOW= EULER_IMPLICIT
13595

13696
% ----------------------- SLOPE LIMITER DEFINITION ----------------------------%
13797
%
138-
% Coefficient for the limiter
13998
VENKAT_LIMITER_COEFF= 0.05
14099
%
141-
% Freeze the value of the limiter after a number of iterations
142100
LIMITER_ITER= 99999
143101

144102
% -------------------- TURBULENT NUMERICAL METHOD DEFINITION ------------------%
145103
%
146-
% Convective numerical method (SCALAR_UPWIND)
147104
CONV_NUM_METHOD_TURB= SCALAR_UPWIND
148105
%
149-
% Monotonic Upwind Scheme for Conservation Laws (TVD) in the turbulence equations.
150-
% Required for 2nd order upwind schemes (NO, YES)
151106
MUSCL_TURB= NO
152107
%
153-
% Slope limiter (NONE, VENKATAKRISHNAN, VENKATAKRISHNAN_WANG,
154-
% BARTH_JESPERSEN, VAN_ALBADA_EDGE)
155108
SLOPE_LIMITER_TURB= NONE
156109
%
157-
% Time discretization (EULER_IMPLICIT)
158110
TIME_DISCRE_TURB= EULER_IMPLICIT
159111
%
160-
% Reduction factor of the CFL coefficient in the turbulence problem
161112
CFL_REDUCTION_TURB= 1.0
162113

163114
% --------------------------- CONVERGENCE PARAMETERS --------------------------%
164115
%
165116
CONV_RESIDUAL_MINVAL= -13
166117
%
167-
% Min value of the residual (log10 of the residual)
168118
CONV_FIELD= ( RMS_DENSITY )
169119
%
170-
% Start convergence criteria at iteration number
171120
CONV_STARTITER= 500
172121

173122
% ------------------------- INPUT/OUTPUT INFORMATION --------------------------%
174123
%
175-
% Mesh input file
176124
MESH_FILENAME= ogrid_e387.su2
177125
%
178-
% Mesh input file format (SU2, CGNS, NETCDF_ASCII)
179126
MESH_FORMAT= SU2
180127
%
181-
% Mesh output file
182128
MESH_OUT_FILENAME= mesh_out.su2
183-
184-
% Restart flow input file
185-
SOLUTION_FILENAME= restart_flow.dat
186129
%
187-
% Restart adjoint input file
188-
SOLUTION_ADJ_FILENAME= solution_adj.dat
130+
SOLUTION_FILENAME= restart_flow.dat
189131
%
190-
% Output file format (PARAVIEW, TECPLOT, STL)
191-
%TABULAR_FORMAT= CSV
192-
OUTPUT_FILES= (RESTART)
132+
OUTPUT_FILES= (RESTART, PARAVIEW, SURFACE_PARAVIEW)
193133
WRT_FORCES_BREAKDOWN= YES
194134
VOLUME_OUTPUT= (COORDINATES, SOLUTION, PRIMITIVE, RESIDUAL)
195135
HISTORY_OUTPUT= (ITER, LINSOL, RMS_RES, MAX_RES, AERO_COEFF, CFL_NUMBER)
196136
%
197-
% Output file convergence history (w/o extension)
198137
CONV_FILENAME= historySecond
199138
%
200-
% Output file restart flow
201139
RESTART_FILENAME= restart_flow.dat
202140
%
203-
% Output file restart adjoint
204-
RESTART_ADJ_FILENAME= restart_adj.dat
205-
%
206-
% Output file flow (w/o extension) variables
207141
VOLUME_FILENAME= flow
208142
%
209-
% Output file adjoint (w/o extension) variables
210-
VOLUME_ADJ_FILENAME= adjoint
211-
%
212-
% Output objective function gradient (using continuous adjoint)
213-
GRAD_OBJFUNC_FILENAME= of_grad.dat
214-
%
215-
% Output file surface flow coefficient (w/o extension)
216143
SURFACE_FILENAME= surface_flow
217144
%
218-
% Output file surface adjoint coefficient (w/o extension)
219-
SURFACE_ADJ_FILENAME= surface_adjoint
220-
%
221-
% Writing solution file frequency
222145
OUTPUT_WRT_FREQ= 500
223146
%
224-
% Writing convergence history frequency
225147
SCREEN_WRT_FREQ_INNER= 10
226148
%
227-
% Screen output fields
228149
SCREEN_OUTPUT=(INNER_ITER, WALL_TIME, RMS_DENSITY, RMS_INTERMITTENCY, RMS_RE_THETA_T, LIFT, DRAG, LINSOL_ITER_TRANS, LINSOL_RESIDUAL_TRANS, MAX_DENSITY, MAX_INTERMITTENCY, MAX_RE_THETA_T)
229-
150+
%
230151
WRT_PERFORMANCE = YES

0 commit comments

Comments
 (0)