|
4 | 4 | % Case description: Caradonna & Tung rotor in hover (still air) % |
5 | 5 | % Author: Thomas D. Economon % |
6 | 6 | % Institution: Stanford University % |
7 | | -% Date: 2013.09.29 % |
| 7 | +% Date: 2020.05.24 % |
8 | 8 | % File Version 7.0.4 "Blackbird" % |
9 | 9 | % % |
10 | 10 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
@@ -91,39 +91,39 @@ MARKER_MONITORING= ( blade_1, blade_2 ) |
91 | 91 | NUM_METHOD_GRAD= GREEN_GAUSS |
92 | 92 | % |
93 | 93 | % Courant-Friedrichs-Lewy condition of the finest grid |
94 | | -CFL_NUMBER= 6.0 |
| 94 | +CFL_NUMBER= 1e3 |
95 | 95 | % |
96 | 96 | % Adaptive CFL number (NO, YES) |
97 | 97 | CFL_ADAPT= NO |
98 | 98 | % |
99 | 99 | % Parameters of the adaptive CFL number (factor down, factor up, CFL min value, |
100 | 100 | % CFL max value ) |
101 | | -CFL_ADAPT_PARAM= ( 1.5, 0.5, 1.0, 100.0 ) |
| 101 | +CFL_ADAPT_PARAM= ( 0.1, 2.0, 15, 1e6 ) |
102 | 102 | % |
103 | 103 | % Runge-Kutta alpha coefficients |
104 | 104 | RK_ALPHA_COEFF= ( 0.66667, 0.66667, 1.000000 ) |
105 | 105 | % |
106 | 106 | % Number of total iterations |
107 | | -EXT_ITER= 99999 |
| 107 | +ITER= 99999 |
108 | 108 |
|
109 | 109 | % ------------------------ LINEAR SOLVER DEFINITION ---------------------------% |
110 | 110 | % |
111 | 111 | % Linear solver for implicit formulations (BCGSTAB, FGMRES) |
112 | 112 | LINEAR_SOLVER= FGMRES |
113 | 113 | % |
114 | 114 | % Preconditioner of the Krylov linear solver (JACOBI, LINELET, LU_SGS) |
115 | | -LINEAR_SOLVER_PREC= LU_SGS |
| 115 | +LINEAR_SOLVER_PREC= ILU |
116 | 116 | % |
117 | 117 | % Minimum error of the linear solver for implicit formulations |
118 | | -LINEAR_SOLVER_ERROR= 1E-4 |
| 118 | +LINEAR_SOLVER_ERROR= 1E-10 |
119 | 119 | % |
120 | 120 | % Max number of iterations of the linear solver for the implicit formulation |
121 | | -LINEAR_SOLVER_ITER= 4 |
| 121 | +LINEAR_SOLVER_ITER= 10 |
122 | 122 |
|
123 | 123 | % -------------------------- MULTIGRID PARAMETERS -----------------------------% |
124 | 124 | % |
125 | 125 | % Multi-Grid Levels (0 = no multi-grid) |
126 | | -MGLEVEL= 2 |
| 126 | +MGLEVEL= 3 |
127 | 127 | % |
128 | 128 | % Multi-grid cycle (V_CYCLE, W_CYCLE, FULLMG_CYCLE) |
129 | 129 | MGCYCLE= W_CYCLE |
@@ -168,7 +168,6 @@ TIME_DISCRE_FLOW= EULER_IMPLICIT |
168 | 168 | % |
169 | 169 | CONV_CRITERIA= RESIDUAL |
170 | 170 | % |
171 | | -% |
172 | 171 | % Min value of the residual (log10 of the residual) |
173 | 172 | CONV_RESIDUAL_MINVAL= -12 |
174 | 173 | % |
@@ -231,3 +230,5 @@ WRT_SOL_FREQ= 100 |
231 | 230 | % |
232 | 231 | % Writing convergence history frequency |
233 | 232 | WRT_CON_FREQ= 1 |
| 233 | + |
| 234 | +SCREEN_OUTPUT=(INNER_ITER, WALL_TIME, RMS_DENSITY, LIFT, DRAG, AVG_CFL) |
0 commit comments