@@ -735,7 +735,8 @@ class CConfig {
735735 unsigned short Tab_FileFormat; /* !< \brief Format of the output files. */
736736 unsigned short ActDisk_Jump; /* !< \brief Format of the output files. */
737737 unsigned long StartWindowIteration; /* !< \brief Starting Iteration for long time Windowing apporach . */
738- bool CFL_Adapt; /* !< \brief Adaptive CFL number. */
738+ unsigned short nCFL_AdaptParam; /* !< \brief Number of CFL parameters provided in config. */
739+ bool CFL_Adapt; /* !< \brief Use adaptive CFL number. */
739740 bool HB_Precondition; /* !< \brief Flag to turn on harmonic balance source term preconditioning */
740741 su2double RefArea, /* !< \brief Reference area for coefficient computation. */
741742 RefElemLength, /* !< \brief Reference element length for computing the slope limiting epsilon. */
@@ -758,12 +759,10 @@ class CConfig {
758759 su2double* Mesh_Box_Length; /* !< \brief Array containing the length in the x-, y-, and z-directions for the analytic RECTANGLE and BOX grid formats. */
759760 su2double* Mesh_Box_Offset; /* !< \brief Array containing the offset from 0.0 in the x-, y-, and z-directions for the analytic RECTANGLE and BOX grid formats. */
760761 string Mesh_FileName, /* !< \brief Mesh input file. */
761- Target_Mesh_FileName, /* !< \brief Mesh name to be adapted. */
762762 Mesh_Out_FileName, /* !< \brief Mesh output file. */
763763 Solution_FileName, /* !< \brief Flow solution input file. */
764764 Solution_AdjFileName, /* !< \brief Adjoint solution input file for drag functional. */
765765 Volume_FileName, /* !< \brief Flow variables output file. */
766- Residual_FileName, /* !< \brief Residual variables output file. */
767766 Conv_FileName, /* !< \brief Convergence history output file. */
768767 Breakdown_FileName, /* !< \brief Breakdown output file. */
769768 Restart_FileName, /* !< \brief Restart file for flow variables. */
@@ -1057,10 +1056,10 @@ class CConfig {
10571056 bool Radiation; /* !< \brief Determines if a radiation model is incorporated. */
10581057 su2double CFL_Rad; /* !< \brief CFL Number for the radiation solver. */
10591058
1059+ array<su2double,5 > default_cfl_adapt; /* !< \brief Default CFL adapt param array for the COption class. */
10601060 su2double default_vel_inf[3 ], /* !< \brief Default freestream velocity array for the COption class. */
10611061 default_eng_cyl[7 ], /* !< \brief Default engine box array for the COption class. */
10621062 default_eng_val[5 ], /* !< \brief Default engine box array values for the COption class. */
1063- default_cfl_adapt[4 ], /* !< \brief Default CFL adapt param array for the COption class. */
10641063 default_jst_coeff[2 ], /* !< \brief Default artificial dissipation (flow) array for the COption class. */
10651064 default_ffd_coeff[3 ], /* !< \brief Default artificial dissipation (flow) array for the COption class. */
10661065 default_mixedout_coeff[3 ], /* !< \brief Default default mixedout algorithm coefficients for the COption class. */
@@ -1157,7 +1156,7 @@ class CConfig {
11571156 monoatomic; /* !< \brief Flag for monoatomic mixture. */
11581157 string GasModel, /* !< \brief Gas Model. */
11591158 *Wall_Catalytic; /* !< \brief Pointer to catalytic walls. */
1160-
1159+
11611160 /* !
11621161 * \brief Set the default values of config options not set in the config file using another config object.
11631162 * \param config - Config object to use the default values from.
@@ -1539,13 +1538,6 @@ class CConfig {
15391538 */
15401539 su2double GetCFL_AdaptParam (unsigned short val_index) const { return CFL_AdaptParam[val_index]; }
15411540
1542- /* !
1543- * \brief Set the values of the CFL adaption parameters.
1544- * \param[in] val_index - Index of the particular CFL adaption parameter
1545- * \param[in] val_cfl_param - Value of the CFL adaption parameter
1546- */
1547- void SetCFL_AdaptParam (unsigned short val_index, su2double val_cfl_param) { CFL_AdaptParam[val_index] = val_cfl_param; }
1548-
15491541 /* !
15501542 * \brief Get the value of the CFL adaption flag.
15511543 * \return <code>TRUE</code> if CFL adaption is active; otherwise <code>FALSE</code>.
@@ -5112,11 +5104,6 @@ class CConfig {
51125104 */
51135105 bool GetRestart (void ) const { return Restart; }
51145106
5115- /* !
5116- * \brief Sets the restart information.
5117- */
5118- void SetRestart (bool val_restart) { Restart = val_restart; }
5119-
51205107 /* !
51215108 * \brief Flag for whether binary SU2 native restart files are read.
51225109 * \return Flag for whether binary SU2 native restart files are read, if <code>TRUE</code> then the code will load binary restart files.
@@ -5214,12 +5201,6 @@ class CConfig {
52145201 */
52155202 string GetSolution_AdjFileName (void ) const { return Solution_AdjFileName; }
52165203
5217- /* !
5218- * \brief Get the name of the file with the residual of the problem.
5219- * \return Name of the file with the residual of the problem.
5220- */
5221- string GetResidual_FileName (void );
5222-
52235204 /* !
52245205 * \brief Get the format of the input/output grid.
52255206 * \return Format of the input/output grid.
0 commit comments