@@ -146,11 +146,7 @@ class CConfig {
146146 su2double dCMx_dCL; /* !< \brief Fixed Cl mode derivate. */
147147 su2double dCMy_dCL; /* !< \brief Fixed Cl mode derivate. */
148148 su2double dCMz_dCL; /* !< \brief Fixed Cl mode derivate. */
149- su2double dCD_dCMy; /* !< \brief Fixed Cl mode derivate. */
150149 su2double CL_Target; /* !< \brief Fixed Cl mode Target Cl. */
151- su2double CM_Target; /* !< \brief Fixed Cl mode Target CM. */
152- su2double *HTP_Min_XCoord,
153- *HTP_Min_YCoord; /* !< \brief Identification of the HTP. */
154150 TIME_MARCHING TimeMarching; /* !< \brief Steady or unsteady (time stepping or dual time stepping) computation. */
155151 unsigned short Dynamic_Analysis; /* !< \brief Static or dynamic structural analysis. */
156152 unsigned short nStartUpIter; /* !< \brief Start up iterations using the fine grid. */
@@ -640,11 +636,9 @@ class CConfig {
640636 iH, AoS, AoA_Offset,
641637 AoS_Offset, AoA_Sens; /* !< \brief Angle of sideSlip (just external flow). */
642638 bool Fixed_CL_Mode; /* !< \brief Activate fixed CL mode (external flow only). */
643- bool Fixed_CM_Mode; /* !< \brief Activate fixed CL mode (external flow only). */
644639 bool Eval_dOF_dCX; /* !< \brief Activate fixed CL mode (external flow only). */
645640 bool Discard_InFiles; /* !< \brief Discard angle of attack in solution and geometry files. */
646641 su2double Target_CL; /* !< \brief Specify a target CL instead of AoA (external flow only). */
647- su2double Target_CM; /* !< \brief Specify a target CM instead of AoA (external flow only). */
648642 su2double Total_CM; /* !< \brief Specify a Total CM instead of AoA (external flow only). */
649643 su2double Total_CD; /* !< \brief Specify a target CD instead of AoA (external flow only). */
650644 su2double dCL_dAlpha; /* !< \brief value of dCl/dAlpha. */
@@ -660,7 +654,6 @@ class CConfig {
660654 bool Update_AoA; /* !< \brief Boolean flag for whether to update the AoA for fixed lift mode on a given iteration. */
661655 unsigned long Update_AoA_Iter_Limit; /* !< \brief Limit on number of iterations between AoA updates for fixed lift mode. */
662656 bool Finite_Difference_Mode; /* !< \brief Flag to run the finite difference mode in fixed Cl mode. */
663- bool Update_HTPIncidence; /* !< \brief Boolean flag for whether to update the AoA for fixed lift mode on a given iteration. */
664657 su2double ChargeCoeff; /* !< \brief Charge coefficient (just for poisson problems). */
665658 unsigned short Cauchy_Func_Flow, /* !< \brief Function where to apply the convergence criteria in the flow problem. */
666659 Cauchy_Func_AdjFlow, /* !< \brief Function where to apply the convergence criteria in the adjoint problem. */
@@ -1069,7 +1062,6 @@ class CConfig {
10691062 rampOutPres_coeff[3 ], /* !< \brief ramp outlet pressure coefficients for the COption class. */
10701063 jst_adj_coeff[2 ], /* !< \brief artificial dissipation (adjoint) array for the COption class. */
10711064 ad_coeff_heat[2 ], /* !< \brief artificial dissipation (heat) array for the COption class. */
1072- obj_coeff[5 ], /* !< \brief objective array for the COption class. */
10731065 mesh_box_length[3 ], /* !< \brief mesh box length for the COption class. */
10741066 mesh_box_offset[3 ], /* !< \brief mesh box offset for the COption class. */
10751067 geo_loc[2 ], /* !< \brief SU2_GEO section locations array for the COption class. */
@@ -1151,7 +1143,7 @@ class CConfig {
11511143 POD_KIND POD_Basis_Gen; /* !< \brief Type of POD basis generation (static or incremental). */
11521144 unsigned short maxBasisDim, /* !< \brief Maximum number of POD basis dimensions. */
11531145 rom_save_freq; /* !< \brief Frequency of unsteady time steps to save. */
1154-
1146+
11551147 /* other NEMO configure options*/
11561148 unsigned short nSpecies, /* !< \brief No of species present in flow */
11571149 iWall_Catalytic,
@@ -1554,12 +1546,6 @@ class CConfig {
15541546 */
15551547 bool GetCFL_Adapt (void ) const { return CFL_Adapt; }
15561548
1557- /* !
1558- * \brief Get the values of the CFL adapation.
1559- * \return Value of CFL adapation
1560- */
1561- su2double GetHTP_Axis (unsigned short val_index) const { return htp_axis[val_index]; }
1562-
15631549 /* !
15641550 * \brief Get the value of the limits for the sections.
15651551 * \return Value of the limits for the sections.
@@ -5191,15 +5177,6 @@ class CConfig {
51915177 */
51925178 void SetWeight_ObjFunc (unsigned short val_obj, su2double val) { Weight_ObjFunc[val_obj] = val; }
51935179
5194- /* !
5195- * \author H. Kline
5196- * \brief Get the coefficients of the objective defined by the chain rule with primitive variables.
5197- * \note This objective is only applicable to gradient calculations. Objective value must be
5198- * calculated using the area averaged outlet values of density, velocity, and pressure.
5199- * Gradients are w.r.t density, velocity[3], and pressure. when 2D gradient w.r.t. 3rd component of velocity set to 0.
5200- */
5201- su2double GetCoeff_ObjChainRule (unsigned short iVar) const { return obj_coeff[iVar]; }
5202-
52035180 /* !
52045181 * \brief Get the kind of sensitivity smoothing technique.
52055182 * \return Kind of sensitivity smoothing technique.
@@ -6253,18 +6230,6 @@ class CConfig {
62536230 */
62546231 su2double GetFixAzimuthalLine (void ) const { return FixAzimuthalLine; }
62556232
6256- /* !
6257- * \brief Value of the weight of the CD, CL, CM optimization.
6258- * \return Value of the weight of the CD, CL, CM optimization.
6259- */
6260- su2double GetdCD_dCMy (void ) const { return dCD_dCMy; }
6261-
6262- /* !
6263- * \brief Value of the weight of the CD, CL, CM optimization.
6264- * \return Value of the weight of the CD, CL, CM optimization.
6265- */
6266- su2double GetCM_Target (void ) const { return CM_Target; }
6267-
62686233 /* !
62696234 * \brief Value of the weight of the CD, CL, CM optimization.
62706235 * \return Value of the weight of the CD, CL, CM optimization.
@@ -6325,12 +6290,6 @@ class CConfig {
63256290 */
63266291 void SetdCM_diH (su2double val_dcm_dhi) { dCM_diH = val_dcm_dhi; }
63276292
6328- /* !
6329- * \brief Value of the weight of the CD, CL, CM optimization.
6330- * \return Value of the weight of the CD, CL, CM optimization.
6331- */
6332- void SetdCD_dCMy (su2double val_dcd_dcmy) { dCD_dCMy = val_dcd_dcmy; }
6333-
63346293 /* !
63356294 * \brief Value of the weight of the CD, CL, CM optimization.
63366295 * \return Value of the weight of the CD, CL, CM optimization.
@@ -8347,12 +8306,6 @@ class CConfig {
83478306 */
83488307 bool GetFixed_CL_Mode (void ) const { return Fixed_CL_Mode; }
83498308
8350- /* !
8351- * \brief Get information about whether to use fixed CL mode.
8352- * \return <code>TRUE</code> if fixed CL mode is active; otherwise <code>FALSE</code>.
8353- */
8354- bool GetFixed_CM_Mode (void ) const { return Fixed_CM_Mode; }
8355-
83568309 /* !
83578310 * \brief Get information about whether to use fixed CL mode.
83588311 * \return <code>TRUE</code> if fixed CL mode is active; otherwise <code>FALSE</code>.
@@ -9500,25 +9453,25 @@ class CConfig {
95009453 * \return True if specified in config file.
95019454 */
95029455 bool GetSave_libROM (void ) const {return libROM; }
9503-
9456+
95049457 /* !
95059458 * \brief Get the name of the file for libROM to save.
95069459 * \return Filename prefix for libROM to save to (default: "su2").
95079460 */
95089461 string GetlibROMbase_FileName (void ) const { return libROMbase_FileName; }
9509-
9462+
95109463 /* !
95119464 * \brief Static or incremental toggle for POD basis generation type.
95129465 * \return Type of POD generation type
95139466 */
95149467 POD_KIND GetKind_PODBasis (void ) const { return POD_Basis_Gen; }
9515-
9468+
95169469 /* !
95179470 * \brief Get maximum number of POD basis dimensions (default: 100).
95189471 * \return Maximum number of POD basis vectors.
95199472 */
95209473 unsigned short GetMax_BasisDim (void ) const { return maxBasisDim; }
9521-
9474+
95229475 /* !
95239476 * \brief Get frequency of unsteady time steps to save (default: 1).
95249477 * \return Save frequency for unsteady time steps.
0 commit comments