@@ -1594,8 +1594,6 @@ void CConfig::SetConfig_Options() {
15941594 /* DESCRIPTION: Evaluate a problem with engines */
15951595 addBoolOption (" ENGINE" , Engine, false );
15961596
1597- /* DESCRIPTION: Compute buffet sensor */
1598- addBoolOption (" BUFFET_MONITORING" , Buffet_Monitoring, false );
15991597 /* DESCRIPTION: Sharpness coefficient for the buffet sensor */
16001598 addDoubleOption (" BUFFET_K" , Buffet_k, 10.0 );
16011599 /* DESCRIPTION: Offset parameter for the buffet sensor */
@@ -3502,10 +3500,6 @@ void CConfig::SetPostprocessing(unsigned short val_software, unsigned short val_
35023500 SU2_MPI::Error (" Harmonic Balance not yet implemented for the incompressible solver." , CURRENT_FUNCTION);
35033501 }
35043502
3505- if ((Kind_Solver != NAVIER_STOKES && Kind_Solver != RANS) && (Buffet_Monitoring == true )){
3506- SU2_MPI::Error (" Buffet monitoring incompatible with solvers other than NAVIER_STOKES and RANS" , CURRENT_FUNCTION);
3507- }
3508-
35093503 /* --- Check for Fluid model consistency ---*/
35103504
35113505 if (standard_air) {
@@ -7996,9 +7990,9 @@ string CConfig::GetObjFunc_Extension(string val_filename) const {
79967990 case TORQUE_COEFFICIENT: AdjExt = " _cq" ; break ;
79977991 case TOTAL_HEATFLUX: AdjExt = " _totheat" ; break ;
79987992 case MAXIMUM_HEATFLUX: AdjExt = " _maxheat" ; break ;
7999- case TOTAL_AVG_TEMPERATURE: AdjExt = " _avtp" ; break ;
7993+ case AVG_TEMPERATURE: AdjExt = " _avtp" ; break ;
80007994 case FIGURE_OF_MERIT: AdjExt = " _merit" ; break ;
8001- case BUFFET_SENSOR: AdjExt = " _buffet" ; break ;
7995+ case BUFFET_SENSOR: AdjExt = " _buffet" ; break ;
80027996 case SURFACE_TOTAL_PRESSURE: AdjExt = " _pt" ; break ;
80037997 case SURFACE_STATIC_PRESSURE: AdjExt = " _pe" ; break ;
80047998 case SURFACE_MASSFLOW: AdjExt = " _mfr" ; break ;
@@ -9305,13 +9299,6 @@ short CConfig::FindInterfaceMarker(unsigned short iInterface) const {
93059299 return -1 ;
93069300}
93079301
9308- string CConfig::GetName_ObjFunc (unsigned short val_obj) const {
9309- for (auto item : Objective_Map)
9310- if (item.second == static_cast <ENUM_OBJECTIVE>(Kind_ObjFunc[val_obj]))
9311- return item.first ;
9312- return string ();
9313- }
9314-
93159302void CConfig::Tick (double *val_start_time) {
93169303
93179304#ifdef PROFILE
0 commit comments