Skip to content

Commit 8531ae8

Browse files
committed
remove dcm_dih
1 parent 1f4dca2 commit 8531ae8

3 files changed

Lines changed: 0 additions & 18 deletions

File tree

Common/include/CConfig.hpp

Lines changed: 0 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -655,7 +655,6 @@ class CConfig {
655655
su2double Total_CM; /*!< \brief Specify a Total CM instead of AoA (external flow only). */
656656
su2double Total_CD; /*!< \brief Specify a target CD instead of AoA (external flow only). */
657657
su2double dCL_dAlpha; /*!< \brief value of dCl/dAlpha. */
658-
su2double dCM_diH; /*!< \brief value of dCM/dHi. */
659658
unsigned long Iter_Fixed_CM; /*!< \brief Iterations to re-evaluate the angle of attack (external flow only). */
660659
unsigned long Iter_Fixed_NetThrust; /*!< \brief Iterations to re-evaluate the angle of attack (external flow only). */
661660
unsigned long Iter_dCL_dAlpha; /*!< \brief Number of iterations to evaluate dCL_dAlpha. */
@@ -6508,12 +6507,6 @@ class CConfig {
65086507
*/
65096508
void SetdCL_dAlpha(su2double val_dcl_dalpha) { dCL_dAlpha = val_dcl_dalpha; }
65106509

6511-
/*!
6512-
* \brief Value of the weight of the CD, CL, CM optimization.
6513-
* \return Value of the weight of the CD, CL, CM optimization.
6514-
*/
6515-
void SetdCM_diH(su2double val_dcm_dhi) { dCM_diH = val_dcm_dhi; }
6516-
65176510
/*!
65186511
* \brief Value of the weight of the CD, CL, CM optimization.
65196512
* \return Value of the weight of the CD, CL, CM optimization.
@@ -8547,12 +8540,6 @@ class CConfig {
85478540
*/
85488541
unsigned long GetIter_dCL_dAlpha(void) const { return Iter_dCL_dAlpha; }
85498542

8550-
/*!
8551-
* \brief Get the value of the damping coefficient for fixed CL mode.
8552-
* \return Damping coefficient for fixed CL mode.
8553-
*/
8554-
su2double GetdCM_diH(void) const { return dCM_diH; }
8555-
85568543
/*!
85578544
* \brief Get the value of iterations to re-evaluate the angle of attack.
85588545
* \return Number of iterations.

Common/src/CConfig.cpp

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1415,8 +1415,6 @@ void CConfig::SetConfig_Options() {
14151415
addDoubleOption("TARGET_CL", Target_CL, 0.0);
14161416
/* DESCRIPTION: Damping factor for fixed CL mode. */
14171417
addDoubleOption("DCL_DALPHA", dCL_dAlpha, 0.2);
1418-
/* DESCRIPTION: dCM/dHi */
1419-
addDoubleOption("DCM_DIH", dCM_diH, 0.05);
14201418
/* DESCRIPTION: Maximum number of iterations between AoA updates for fixed CL problem. */
14211419
addUnsignedLongOption("UPDATE_AOA_ITER_LIMIT", Update_AoA_Iter_Limit, 200);
14221420
/* DESCRIPTION: Number of times Alpha is updated in a fix CL problem. */

config_template.cfg

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -310,9 +310,6 @@ TARGET_CL= 0.80
310310
% Estimation of dCL/dAlpha (0.2 per degree by default)
311311
DCL_DALPHA= 0.2
312312
%
313-
% Value of dCm/dHi (0.05 by default)
314-
DCM_DIH= 0.05
315-
%
316313
% Maximum number of iterations between AoA updates
317314
UPDATE_AOA_ITER_LIMIT= 100
318315
%

0 commit comments

Comments
 (0)