|
11 | 11 |
|
12 | 12 | % ------------- DIRECT, ADJOINT, AND LINEARIZED PROBLEM DEFINITION ------------% |
13 | 13 | % |
14 | | -% Physical governing equations (EULER, NAVIER_STOKES, |
15 | | -% WAVE_EQUATION, HEAT_EQUATION, FEM_ELASTICITY, |
16 | | -% POISSON_EQUATION) |
17 | 14 | SOLVER= RANS |
18 | 15 | % |
19 | | -% Specify turbulent model (NONE, SA, SA_NEG, SST) |
20 | 16 | KIND_TURB_MODEL= SA |
21 | 17 | KIND_TRANS_MODEL= LM |
22 | 18 | FREESTREAM_TURBULENCEINTENSITY= 0.001 |
23 | 19 | % |
24 | | -% Mathematical problem (DIRECT, CONTINUOUS_ADJOINT) |
25 | 20 | MATH_PROBLEM= DIRECT |
26 | 21 | % |
27 | | -% Restart solution (NO, YES) |
28 | 22 | RESTART_SOL= NO |
29 | 23 | % |
30 | 24 |
|
31 | 25 | % -------------------- COMPRESSIBLE FREE-STREAM DEFINITION --------------------% |
32 | 26 | % |
33 | | -% Mach number (non-dimensional, based on the free-stream values) |
34 | 27 | MACH_NUMBER= 0.06 |
35 | 28 | % |
36 | | -% Angle of attack (degrees, only for compressible flows) |
37 | 29 | AOA= 2 |
38 | 30 | % |
39 | | -% Free-stream temperature (288.15 K by default) |
40 | 31 | FREESTREAM_TEMPERATURE= 288.15 |
41 | 32 | % |
42 | | -% Reynolds number (non-dimensional, based on the free-stream values) |
43 | 33 | REYNOLDS_NUMBER= 200000.0 |
44 | 34 | % |
45 | | -% Reynolds length (1 m by default) |
46 | 35 | REYNOLDS_LENGTH= 1.0 |
47 | 36 |
|
48 | 37 | % ---------------------- REFERENCE VALUE DEFINITION ---------------------------% |
49 | 38 | % |
50 | | -% Reference origin for moment computation |
51 | 39 | REF_ORIGIN_MOMENT_X= 0.25 |
52 | 40 | REF_ORIGIN_MOMENT_Y = 0.00 |
53 | 41 | REF_ORIGIN_MOMENT_Z = 0.00 |
54 | 42 | % |
55 | | -% Reference length for pitching, rolling, and yawing non-dimensional moment |
56 | 43 | REF_LENGTH= 1.0 |
57 | 44 | % |
58 | | -% Reference area for force coefficients (0 implies automatic calculation) |
59 | 45 | REF_AREA= 0 |
60 | 46 | % |
61 | | -% Flow non-dimensionalization (DIMENSIONAL, FREESTREAM_PRESS_EQ_ONE, |
62 | | -% FREESTREAM_VEL_EQ_MACH, FREESTREAM_VEL_EQ_ONE) |
63 | 47 | REF_DIMENSIONALIZATION= FREESTREAM_VEL_EQ_MACH |
64 | 48 |
|
65 | 49 | % -------------------- BOUNDARY CONDITION DEFINITION --------------------------% |
66 | 50 | % |
67 | | -% Navier-Stokes wall boundary marker(s) (NONE = no marker) |
68 | 51 | MARKER_HEATFLUX= ( Airfoil, 0.0 ) |
69 | 52 | % |
70 | | -% Farfield boundary marker(s) (NONE = no marker) |
71 | 53 | MARKER_FAR= ( Farfield ) |
72 | | -%MARKER_SYM= ( Symmetry ) |
73 | 54 | % |
74 | | -% Marker(s) of the surface to be plotted or designed |
75 | 55 | MARKER_PLOTTING= ( Airfoil ) |
76 | 56 | % |
77 | | -% Marker(s) of the surface where the functional (Cd, Cl, etc.) will be evaluated |
78 | 57 | MARKER_MONITORING= ( Airfoil ) |
79 | 58 |
|
80 | 59 | % ------------- COMMON PARAMETERS DEFINING THE NUMERICAL METHOD ---------------% |
81 | 60 | % |
82 | | -% Numerical method for spatial gradients (GREEN_GAUSS, WEIGHTED_LEAST_SQUARES) |
83 | 61 | NUM_METHOD_GRAD= GREEN_GAUSS |
84 | | -%NUM_METHOD_GRAD_RECON= LEAST_SQUARES |
85 | 62 | % |
86 | | -% Courant-Friedrichs-Lewy condition of the finest grid |
87 | | -%CFL_NUMBER= 1000.0 |
88 | 63 | CFL_NUMBER= 1 |
89 | 64 | % |
90 | | -% Max Delta time |
91 | 65 | %MAX_DELTA_TIME= 1E10 |
92 | 66 | % |
93 | | -% Adaptive CFL number (NO, YES) |
94 | 67 | CFL_ADAPT= YES |
95 | 68 | % |
96 | | -% Parameters of the adaptive CFL number (factor down, factor up, CFL min value, |
97 | | -% CFL max value ) |
98 | 69 | CFL_ADAPT_PARAM= ( 0.1, 2.0, 40.0, 1e10, 0.001 ) |
99 | 70 | % |
100 | | -% Number of total iterations |
101 | 71 | ITER= 100000 |
102 | 72 |
|
103 | 73 | % ------------------------ LINEAR SOLVER DEFINITION ---------------------------% |
104 | 74 | % |
105 | | -% Linear solver or smoother for implicit formulations (BCGSTAB, FGMRES, SMOOTHER) |
106 | 75 | LINEAR_SOLVER= FGMRES |
107 | 76 | % |
108 | | -% Preconditioner of the Krylov linear solver (ILU, LU_SGS, LINELET, JACOBI) |
109 | 77 | LINEAR_SOLVER_PREC= LU_SGS |
110 | 78 | % |
111 | | -% Minimum error of the linear solver for implicit formulations |
112 | 79 | LINEAR_SOLVER_ERROR= 1E-6 |
113 | 80 | % |
114 | | -% Max number of iterations of the linear solver for the implicit formulation |
115 | 81 | LINEAR_SOLVER_ITER= 5 |
116 | 82 |
|
117 | 83 | % -------------------- FLOW NUMERICAL METHOD DEFINITION -----------------------% |
118 | 84 | % |
119 | | -% Convective numerical method (JST, LAX-FRIEDRICH, CUSP, ROE, AUSM, HLLC, |
120 | | -% TURKEL_PREC, MSW) |
121 | 85 | CONV_NUM_METHOD_FLOW= ROE |
122 | 86 | USE_VECTORIZATION= NO |
123 | 87 | % |
124 | | -% Spatial numerical order integration (1ST_ORDER, 2ND_ORDER, 2ND_ORDER_LIMITER) |
125 | 88 | MUSCL_FLOW= YES |
126 | 89 | % |
127 | | -% Slope limiter (VENKATAKRISHNAN, MINMOD) |
128 | 90 | SLOPE_LIMITER_FLOW= VENKATAKRISHNAN |
129 | 91 | % |
130 | | -% 2nd and 4th order artificial dissipation coefficients |
131 | 92 | JST_SENSOR_COEFF= ( 0.5, 0.02 ) |
132 | 93 | % |
133 | | -% Time discretization (RUNGE-KUTTA_EXPLICIT, EULER_IMPLICIT, EULER_EXPLICIT) |
134 | 94 | TIME_DISCRE_FLOW= EULER_IMPLICIT |
135 | 95 |
|
136 | 96 | % ----------------------- SLOPE LIMITER DEFINITION ----------------------------% |
137 | 97 | % |
138 | | -% Coefficient for the limiter |
139 | 98 | VENKAT_LIMITER_COEFF= 0.05 |
140 | 99 | % |
141 | | -% Freeze the value of the limiter after a number of iterations |
142 | 100 | LIMITER_ITER= 99999 |
143 | 101 |
|
144 | 102 | % -------------------- TURBULENT NUMERICAL METHOD DEFINITION ------------------% |
145 | 103 | % |
146 | | -% Convective numerical method (SCALAR_UPWIND) |
147 | 104 | CONV_NUM_METHOD_TURB= SCALAR_UPWIND |
148 | 105 | % |
149 | | -% Monotonic Upwind Scheme for Conservation Laws (TVD) in the turbulence equations. |
150 | | -% Required for 2nd order upwind schemes (NO, YES) |
151 | 106 | MUSCL_TURB= NO |
152 | 107 | % |
153 | | -% Slope limiter (NONE, VENKATAKRISHNAN, VENKATAKRISHNAN_WANG, |
154 | | -% BARTH_JESPERSEN, VAN_ALBADA_EDGE) |
155 | 108 | SLOPE_LIMITER_TURB= NONE |
156 | 109 | % |
157 | | -% Time discretization (EULER_IMPLICIT) |
158 | 110 | TIME_DISCRE_TURB= EULER_IMPLICIT |
159 | 111 | % |
160 | | -% Reduction factor of the CFL coefficient in the turbulence problem |
161 | 112 | CFL_REDUCTION_TURB= 1.0 |
162 | 113 |
|
163 | 114 | % --------------------------- CONVERGENCE PARAMETERS --------------------------% |
164 | 115 | % |
165 | 116 | CONV_RESIDUAL_MINVAL= -13 |
166 | 117 | % |
167 | | -% Min value of the residual (log10 of the residual) |
168 | 118 | CONV_FIELD= ( RMS_DENSITY ) |
169 | 119 | % |
170 | | -% Start convergence criteria at iteration number |
171 | 120 | CONV_STARTITER= 500 |
172 | 121 |
|
173 | 122 | % ------------------------- INPUT/OUTPUT INFORMATION --------------------------% |
174 | 123 | % |
175 | | -% Mesh input file |
176 | 124 | MESH_FILENAME= ogrid_e387.su2 |
177 | 125 | % |
178 | | -% Mesh input file format (SU2, CGNS, NETCDF_ASCII) |
179 | 126 | MESH_FORMAT= SU2 |
180 | 127 | % |
181 | | -% Mesh output file |
182 | 128 | MESH_OUT_FILENAME= mesh_out.su2 |
183 | | - |
184 | | -% Restart flow input file |
185 | | -SOLUTION_FILENAME= restart_flow.dat |
186 | 129 | % |
187 | | -% Restart adjoint input file |
188 | | -SOLUTION_ADJ_FILENAME= solution_adj.dat |
| 130 | +SOLUTION_FILENAME= restart_flow.dat |
189 | 131 | % |
190 | | -% Output file format (PARAVIEW, TECPLOT, STL) |
191 | | -%TABULAR_FORMAT= CSV |
192 | | -OUTPUT_FILES= (RESTART) |
| 132 | +OUTPUT_FILES= (RESTART, PARAVIEW, SURFACE_PARAVIEW) |
193 | 133 | WRT_FORCES_BREAKDOWN= YES |
194 | 134 | VOLUME_OUTPUT= (COORDINATES, SOLUTION, PRIMITIVE, RESIDUAL) |
195 | 135 | HISTORY_OUTPUT= (ITER, LINSOL, RMS_RES, MAX_RES, AERO_COEFF, CFL_NUMBER) |
196 | 136 | % |
197 | | -% Output file convergence history (w/o extension) |
198 | 137 | CONV_FILENAME= historySecond |
199 | 138 | % |
200 | | -% Output file restart flow |
201 | 139 | RESTART_FILENAME= restart_flow.dat |
202 | 140 | % |
203 | | -% Output file restart adjoint |
204 | | -RESTART_ADJ_FILENAME= restart_adj.dat |
205 | | -% |
206 | | -% Output file flow (w/o extension) variables |
207 | 141 | VOLUME_FILENAME= flow |
208 | 142 | % |
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) |
216 | 143 | SURFACE_FILENAME= surface_flow |
217 | 144 | % |
218 | | -% Output file surface adjoint coefficient (w/o extension) |
219 | | -SURFACE_ADJ_FILENAME= surface_adjoint |
220 | | -% |
221 | | -% Writing solution file frequency |
222 | 145 | OUTPUT_WRT_FREQ= 500 |
223 | 146 | % |
224 | | -% Writing convergence history frequency |
225 | 147 | SCREEN_WRT_FREQ_INNER= 10 |
226 | 148 | % |
227 | | -% Screen output fields |
228 | 149 | 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 | +% |
230 | 151 | WRT_PERFORMANCE = YES |
0 commit comments