@@ -108,51 +108,51 @@ class CDriver : public CDriverBase {
108108 /* !
109109 * \brief Initialize containers.
110110 */
111- void SetContainersNull ();
111+ void InitializeContainers ();
112112
113113 /* !
114114 * \brief Read in the config and mesh files.
115115 * \param[in] config - Definition of the particular problem.
116116 * \param[in] driver_config - Definition of the driver configuration.
117117 */
118- void InputPreprocessing (CConfig**& config, CConfig*& driver_config);
118+ void PreprocessInput (CConfig**& config, CConfig*& driver_config);
119119
120120 /* !
121121 * \brief Construction of the edge-based data structure and the multi-grid structure.
122122 * \param[in] config - Definition of the particular problem.
123123 * \param[in] geometry - Geometrical definition of the problem.
124124 * \param[in] dummy - Definition of the dummy driver.
125125 */
126- void GeometricalPreprocessing (CConfig* config, CGeometry**& geometry, bool dummy);
126+ void InitializeGeometry (CConfig* config, CGeometry**& geometry, bool dummy);
127127
128128 /* !
129129 * \brief Do the geometrical preprocessing for the DG FEM solver.
130130 * \param[in] config - Definition of the particular problem.
131131 * \param[in] geometry - Geometrical definition of the problem.
132132 */
133- void Geometrical_Preprocessing_DGFEM (CConfig* config, CGeometry**& geometry);
133+ void InitializeGeometryDGFEM (CConfig* config, CGeometry**& geometry);
134134
135135 /* !
136- * \brief Geometrical_Preprocessing_FVM
136+ * \brief InitializeGeometryFVM
137137 * \param[in] config - Definition of the particular problem.
138138 * \param[in] geometry - Geometrical definition of the problem.
139139 */
140- void Geometrical_Preprocessing_FVM (CConfig* config, CGeometry**& geometry);
140+ void InitializeGeometryFVM (CConfig* config, CGeometry**& geometry);
141141
142142 /* !
143143 * \brief Definition of the physics iteration class or within a single zone.
144144 * \param[in] config - Definition of the particular problem.
145145 * \param[in] iteration - Pointer to the iteration container to be instantiated.
146146 */
147- void IterationPreprocessing (CConfig* config, CIteration*& iteration) const ;
147+ void PreprocessIteration (CConfig* config, CIteration*& iteration) const ;
148148
149149 /* !
150150 * \brief Definition and allocation of all solution classes.
151151 * \param[in] config - Definition of the particular problem.
152152 * \param[in] geometry - Geometrical definition of the problem.
153153 * \param[in] solver - Container vector with all the solutions.
154154 */
155- void SolverPreprocessing (CConfig* config, CGeometry** geometry, CSolver***& solver);
155+ void InitializeSolver (CConfig* config, CGeometry** geometry, CSolver***& solver);
156156
157157 /* !
158158 * \brief Restart of the solvers from the restart files.
@@ -161,7 +161,7 @@ class CDriver : public CDriverBase {
161161 * \param[in] config - Definition of the particular problem.
162162 * \param[in] update_geo - Boolean to indicate if geometry should be updated.
163163 */
164- void SolverRestart (CSolver*** solver, CGeometry** geometry, CConfig* config, bool update_geo);
164+ void RestartSolver (CSolver*** solver, CGeometry** geometry, CConfig* config, bool update_geo);
165165
166166 /* !
167167 * \brief Definition and allocation of all solution classes.
@@ -170,15 +170,15 @@ class CDriver : public CDriverBase {
170170 * \param[in] config - Definition of the particular problem.
171171 * \param[in] val_iInst - Current solver instance.
172172 */
173- void SolverPostprocessing (CSolver**** solver, CGeometry** geometry, CConfig* config, unsigned short val_iInst);
173+ void FinalizeSolver (CSolver**** solver, CGeometry** geometry, CConfig* config, unsigned short val_iInst);
174174
175175 /* !
176176 * \brief Definition and allocation of all integration classes.
177177 * \param[in] config - Definition of the particular problem.
178178 * \param[in] solver - Container vector with all the solutions.
179179 * \param[in] integration - Container vector with all the integration methods.
180180 */
181- void IntegrationPreprocessing (CConfig* config, CSolver** solver, CIntegration**& integration) const ;
181+ void InitializeIntegration (CConfig* config, CSolver** solver, CIntegration**& integration) const ;
182182
183183 /* !
184184 * \brief Definition and allocation of all integration classes.
@@ -187,7 +187,7 @@ class CDriver : public CDriverBase {
187187 * \param[in] config - Definition of the particular problem.
188188 * \param[in] val_iInst - Current solver instance.
189189 */
190- void IntegrationPostprocessing (CIntegration*** integration, CGeometry** geometry, CConfig* config,
190+ void FinalizeIntegration (CIntegration*** integration, CGeometry** geometry, CConfig* config,
191191 unsigned short val_iInst);
192192
193193 /* !
@@ -199,7 +199,7 @@ class CDriver : public CDriverBase {
199199 * \param[in] interface - Class defining the physical transfer of information.
200200 * \param[in] interpolation - Object defining the interpolation.
201201 */
202- void InterfacePreprocessing (CConfig** config, CSolver***** solver, CGeometry**** geometry,
202+ void InitializeInterface (CConfig** config, CSolver***** solver, CGeometry**** geometry,
203203 unsigned short ** interface_types, CInterface*** interface,
204204 vector<vector<unique_ptr<CInterpolator>>>& interpolation);
205205
@@ -210,7 +210,7 @@ class CDriver : public CDriverBase {
210210 * \param[in] solver - Container vector with all the solutions.
211211 * \param[in] numerics - Description of the numerical method (the way in which the equations are solved).
212212 */
213- void NumericsPreprocessing (CConfig* config, CGeometry** geometry, CSolver*** solver, CNumerics****& numerics) const ;
213+ void InitializeNumerics (CConfig* config, CGeometry** geometry, CSolver*** solver, CNumerics****& numerics) const ;
214214
215215 /* !
216216 * \brief Helper to instantiate turbulence numerics specialized for different flow solvers.
@@ -240,7 +240,7 @@ class CDriver : public CDriverBase {
240240 * \param[in] config - Definition of the particular problem.
241241 * \param[in] val_iInst - Current solver instance.
242242 */
243- void NumericsPostprocessing (CNumerics***** numerics, CSolver*** solver, CGeometry** geometry, CConfig* config,
243+ void FinalizeNumerics (CNumerics***** numerics, CSolver*** solver, CGeometry** geometry, CConfig* config,
244244 unsigned short val_iInst);
245245
246246 /* !
@@ -252,7 +252,7 @@ class CDriver : public CDriverBase {
252252 * \param[in] grid_movement - Volume grid movement classes of the problem.
253253 * \param[in] surface_movement - Surface movement classes of the problem.
254254 */
255- void DynamicMeshPreprocessing (CConfig* config, CGeometry** geometry, CSolver*** solver, CIteration* iteration,
255+ void PreprocessDynamicMesh (CConfig* config, CGeometry** geometry, CSolver*** solver, CIteration* iteration,
256256 CVolumetricMovement*& grid_movement, CSurfaceMovement*& surface_movement) const ;
257257
258258 /* !
@@ -262,7 +262,7 @@ class CDriver : public CDriverBase {
262262 * \param[in] geometry - Geometrical definition of the problem.
263263 * \param[in] solver - Container vector with all the solutions.
264264 */
265- void PythonInterfacePreprocessing (CConfig** config, CGeometry**** geometry, CSolver***** solver);
265+ void PreprocessPythonInterface (CConfig** config, CGeometry**** geometry, CSolver***** solver);
266266
267267 /* !
268268 * \brief Preprocess the output container.
@@ -271,15 +271,15 @@ class CDriver : public CDriverBase {
271271 * \param[in] output_container - Container vector with all the outputs.
272272 * \param[in] driver_output - Definition of the driver output.
273273 */
274- void OutputPreprocessing (CConfig** config, CConfig* driver_config, COutput**& output_container,
274+ void PreprocessOutput (CConfig** config, CConfig* driver_config, COutput**& output_container,
275275 COutput*& driver_output);
276276
277277 /* !
278278 * \brief Initiate value for static mesh movement such as the gridVel for the ROTATING frame.
279279 * \param[in] config - Definition of the particular problem.
280280 * \param[in] geometry - Geometrical definition of the problem.
281281 */
282- void StaticMeshPreprocessing (const CConfig* config, CGeometry** geometry);
282+ void PreprocessStaticMesh (const CConfig* config, CGeometry** geometry);
283283
284284 /* !
285285 * \brief Initiate value for static mesh movement such as the gridVel for the ROTATING frame.
@@ -288,7 +288,7 @@ class CDriver : public CDriverBase {
288288 * \param[in] solver - Container vector with all the solutions.
289289 * \param[in] interface - Class defining the physical transfer of information.
290290 */
291- void TurbomachineryPreprocessing (CConfig** config, CGeometry**** geometry, CSolver***** solver,
291+ void PreprocessTurbomachinery (CConfig** config, CGeometry**** geometry, CSolver***** solver,
292292 CInterface*** interface);
293293
294294 /* !
@@ -494,7 +494,7 @@ class CDriver : public CDriverBase {
494494 * \param[in] geometry - Geometrical definition of the problem.
495495 * \param[in] config - Definition of the particular problem.
496496 */
497- void InletPreprocessing (CSolver*** solver, CGeometry** geometry, CConfig* config) const ;
497+ void PreprocessInlet (CSolver*** solver, CGeometry** geometry, CConfig* config) const ;
498498
499499 /* !
500500 * \brief Set the position of the heat source.
@@ -691,7 +691,7 @@ class CHBDriver : public CFluidDriver {
691691 * \brief Computation of the Harmonic Balance operator matrix for harmonic balance.
692692 * \author A. Rubino, S. Nimmagadda
693693 */
694- void ComputeHB_Operator ();
694+ void ComputeHBOperator ();
695695
696696 /* !
697697 * \brief Update the solution for the Harmonic Balance.
0 commit comments