1+ % -------------------- BOUNDARY CONDITION DEFINITION --------------------------%
2+ %
3+ % Euler wall boundary marker(s) (NONE = no marker)
4+ % Implementation identical to MARKER_SYM.
5+ MARKER_EULER = ( airfoil )
6+ % Far-field boundary marker(s) (NONE = no marker)
7+ MARKER_FAR = ( farfield )
8+
9+
10+
11+ % ----------------------- GEOMETRY EVALUATION PARAMETERS ----------------------%
12+ %
13+ % Marker(s) of the surface where geometrical based function will be evaluated
14+ GEO_MARKER = ( airfoil )
15+ %
16+ % Description of the geometry to be analyzed (AIRFOIL, WING)
17+ GEO_DESCRIPTION = AIRFOIL
18+ %
19+ % Coordinate of the stations to be analyzed
20+ % GEO_LOCATION_STATIONS = (0.0, 0.5, 1.0)
21+ %
22+ % Geometrical bounds (Y coordinate) for the wing geometry analysis or
23+ % fuselage evaluation (X coordinate)
24+ % GEO_BOUNDS = (1.5, 3.5)
25+ %
26+ % Plot loads and Cp distributions on each airfoil section
27+ GEO_PLOT_STATIONS = NO
28+ %
29+ % Number of section cuts to make when calculating wing geometry
30+ GEO_NUMBER_STATIONS = 25
31+ %
32+ % Geometrical evaluation mode (FUNCTION, GRADIENT)
33+ GEO_MODE = FUNCTION
34+
35+ % ----------------------- DESIGN VARIABLE PARAMETERS --------------------------%
36+ %
37+ % Kind of deformation (NO_DEFORMATION, SCALE_GRID, TRANSLATE_GRID, ROTATE_GRID,
38+ % FFD_SETTING, FFD_NACELLE,
39+ % FFD_CONTROL_POINT, FFD_CAMBER, FFD_THICKNESS, FFD_TWIST
40+ % FFD_CONTROL_POINT_2D, FFD_CAMBER_2D, FFD_THICKNESS_2D,
41+ % HICKS_HENNE, SURFACE_BUMP, SURFACE_FILE)
42+ DV_KIND = CST,CST
43+ %
44+ % Marker of the surface in which we are going apply the shape deformation
45+ DV_MARKER = ( airfoil )
46+ %
47+ % Parameters of the shape deformation
48+ % - NO_DEFORMATION ( 1.0 )
49+ % - TRANSLATE_GRID ( x_Disp, y_Disp, z_Disp ), as a unit vector
50+ % - ROTATE_GRID ( x_Orig, y_Orig, z_Orig, x_End, y_End, z_End ) axis, DV_VALUE in deg.
51+ % - SCALE_GRID ( 1.0 )
52+ % - ANGLE_OF_ATTACK ( 1.0 )
53+ % - FFD_SETTING ( 1.0 )
54+ % - FFD_CONTROL_POINT ( FFD_BoxTag, i_Ind, j_Ind, k_Ind, x_Disp, y_Disp, z_Disp )
55+ % - FFD_NACELLE ( FFD_BoxTag, rho_Ind, theta_Ind, phi_Ind, rho_Disp, phi_Disp )
56+ % - FFD_GULL ( FFD_BoxTag, j_Ind )
57+ % - FFD_ANGLE_OF_ATTACK ( FFD_BoxTag, 1.0 )
58+ % - FFD_CAMBER ( FFD_BoxTag, i_Ind, j_Ind )
59+ % - FFD_THICKNESS ( FFD_BoxTag, i_Ind, j_Ind )
60+ % - FFD_TWIST ( FFD_BoxTag, j_Ind, x_Orig, y_Orig, z_Orig, x_End, y_End, z_End )
61+ % - FFD_CONTROL_POINT_2D ( FFD_BoxTag, i_Ind, j_Ind, x_Disp, y_Disp )
62+ % - FFD_CAMBER_2D ( FFD_BoxTag, i_Ind )
63+ % - FFD_THICKNESS_2D ( FFD_BoxTag, i_Ind )
64+ % - HICKS_HENNE ( Lower Surface (0)/Upper Surface (1)/Only one Surface (2), x_Loc )
65+ % - SURFACE_BUMP ( x_Start, x_End, x_Loc )
66+ DV_PARAM = (0, 5, 7); (1, 5, 10)
67+ %
68+ % Value of the shape deformation
69+ DV_VALUE = -0.5,0.5
70+
71+ % ------------------------- INPUT/OUTPUT FILE INFORMATION --------------------------%
72+ %
73+ DEFORM_CONSOLE_OUTPUT = YES
74+ %
75+ % Mesh input file
76+ MESH_FILENAME = ../naca0012/mesh_NACA0012_inv.su2
77+ %
78+ % Mesh input file format (SU2, CGNS)
79+ MESH_FORMAT = SU2
80+ %
81+ % Mesh output file
82+ MESH_OUT_FILENAME = mesh_out.su2
83+ %
84+ % Restart flow input file
85+ SOLUTION_FILENAME = solution_flow.dat
86+ %
87+ % Restart adjoint input file
88+ SOLUTION_ADJ_FILENAME = solution_adj.dat
89+ %
90+ % Output tabular file format (TECPLOT, CSV)
91+ TABULAR_FORMAT = CSV
92+ %
93+ % Files to output
94+ % Possible formats : (TECPLOT_ASCII, TECPLOT, SURFACE_TECPLOT_ASCII,
95+ % SURFACE_TECPLOT, CSV, SURFACE_CSV, PARAVIEW_ASCII, PARAVIEW_LEGACY, SURFACE_PARAVIEW_ASCII,
96+ % SURFACE_PARAVIEW_LEGACY, PARAVIEW, SURFACE_PARAVIEW, RESTART_ASCII, RESTART, CGNS, SURFACE_CGNS, STL_ASCII, STL_BINARY)
97+ % default : (RESTART, PARAVIEW, SURFACE_PARAVIEW)
98+ OUTPUT_FILES = (RESTART, PARAVIEW_MULTIBLOCK)
99+ %
100+ % Output file convergence history (w/o extension)
101+ CONV_FILENAME = history
102+ %
103+ % Output file with the forces breakdown
104+ BREAKDOWN_FILENAME = forces_breakdown.dat
105+ %
106+ % Output file restart flow
107+ RESTART_FILENAME = restart_flow.dat
108+ %
109+ % Output file restart adjoint
110+ RESTART_ADJ_FILENAME = restart_adj.dat
111+ %
112+ % Output file flow (w/o extension) variables
113+ VOLUME_FILENAME = flow
114+ %
115+ % Output file adjoint (w/o extension) variables
116+ VOLUME_ADJ_FILENAME = adjoint
117+ %
118+ % Output Objective function
119+ VALUE_OBJFUNC_FILENAME = of_eval.dat
120+ %
121+ % Output objective function gradient (using continuous adjoint)
122+ GRAD_OBJFUNC_FILENAME = of_grad.dat
123+ %
124+ % Output file surface flow coefficient (w/o extension)
125+ SURFACE_FILENAME = surface_flow
126+ %
127+ % Output file surface adjoint coefficient (w/o extension)
128+ SURFACE_ADJ_FILENAME = surface_adjoint
129+ %
130+ % Read binary restart files (YES, NO)
131+ READ_BINARY_RESTART = YES
132+ %
133+ % Reorient elements based on potential negative volumes (YES/NO)
134+ REORIENT_ELEMENTS = YES
135+ %
0 commit comments