@@ -3074,6 +3074,14 @@ void CConfig::SetConfig_Parsing(istream& config_buffer){
30743074 newString.append (" SPECIES_USE_STRONG_BC is deprecated. Use MARKER_SPECIES_STRONG_BC= (marker1, ...) instead.\n\n " );
30753075 else if (!option_name.compare (" DEAD_LOAD" ))
30763076 newString.append (" DEAD_LOAD is deprecated. Use GRAVITY_FORCE or BODY_FORCE instead.\n\n " );
3077+ else if (!option_name.compare (" RAMP_OUTLET_PRESSURE" ))
3078+ newString.append (" RAMP_OUTLET_PRESSURE is deprectaed. Use RAMP_OUTLET instead" );
3079+ else if (!option_name.compare (" RAMP_OUTLET_PRESSURE_COEFF" ))
3080+ newString.append (" RAMP_OUTLET_PRESSURE_COEFF is deprectaed. Use RAMP_OUTLET_COEFF instead" );
3081+ else if (!option_name.compare (" RAMP_ROTATION_FRAME" ))
3082+ newString.append (" RAMP_ROTATION_FRAME is deprectaed. Use RAMP_MOTION_FRAME instead" );
3083+ else if (!option_name.compare (" RAMP_ROTATION_FRAME_COEFF" ))
3084+ newString.append (" RAMP_ROTATION_FRAME_COEFF is deprectaed. Use RAMP_MOTION_FRAME_COEFF instead" );
30773085 else {
30783086 /* --- Find the most likely candidate for the unrecognized option, based on the length
30793087 of start and end character sequences shared by candidates and the option. ---*/
@@ -4356,16 +4364,19 @@ void CConfig::SetPostprocessing(SU2_COMPONENT val_software, unsigned short val_i
43564364 }
43574365
43584366 /* --- Interface for handling turbo ramps ---*/
4359- if (GetGrid_Movement () && RampMotionFrame && !DiscreteAdjoint){
4367+ if (GetGrid_Movement () && RampMotionFrame && !DiscreteAdjoint) {
43604368 if (Kind_GridMovement == ENUM_GRIDMOVEMENT::ROTATING_FRAME) RampRotatingFrame = true ;
43614369 else if (Kind_GridMovement == ENUM_GRIDMOVEMENT::STEADY_TRANSLATION) RampTranslationFrame = true ;
43624370 }
43634371
43644372 if (RampOutlet && !DiscreteAdjoint) {
43654373 for (iMarker = 0 ; iMarker < nMarker_Giles; iMarker++){
4366- if (Kind_Data_Giles[iMarker] == STATIC_PRESSURE || Kind_Data_Giles[iMarker] == STATIC_PRESSURE_1D || Kind_Data_Giles[iMarker] == RADIAL_EQUILIBRIUM )
4367- RampOutletPressure = true ;
4368- else if (Kind_Data_Giles[iMarker] == MASS_FLOW_OUTLET) RampOutletMassFlow = true ;
4374+ switch (Kind_Data_Giles[iMarker]) {
4375+ case STATIC_PRESSURE: case STATIC_PRESSURE_1D: case RADIAL_EQUILIBRIUM:
4376+ RampOutletPressure = true ;
4377+ case MASS_FLOW_OUTLET:
4378+ RampOutletMassFlow = true ;
4379+ }
43694380 }
43704381 }
43714382
@@ -5448,7 +5459,9 @@ void CConfig::SetPostprocessing(SU2_COMPONENT val_software, unsigned short val_i
54485459 }
54495460
54505461 RampOutletPressure = false ;
5462+ // RampOutletMassFlow = false;
54515463 RampRotatingFrame = false ;
5464+ // RampTranslationFrame = false;
54525465 }
54535466
54545467 /* 2nd-order MUSCL is not possible for the continuous adjoint
0 commit comments