@@ -1640,18 +1640,18 @@ void CConfig::SetConfig_Options() {
16401640 addDoubleArrayOption (" MIXEDOUT_COEFF" , 3 , mixedout_coeff);
16411641 /* !\brief RAMP_MOTION_FRAME\n DESCRIPTION: option to ramp up or down the frame of motion velocity value*/
16421642 addBoolOption (" RAMP_MOTION_FRAME" , RampMotionFrame, false );
1643- rampMotionFrame_coeff [0 ] = 100.0 ; rampMotionFrame_coeff [1 ] = 1.0 ; rampMotionFrame_coeff [2 ] = 1000.0 ;
1643+ rampMotionFrameCoeff [0 ] = 100.0 ; rampMotionFrameCoeff [1 ] = 1.0 ; rampMotionFrameCoeff [2 ] = 1000.0 ;
16441644 /* !\brief RAMP_MOTION_FRAME_COEFF \n DESCRIPTION: the 1st coeff is the staring outlet value,
16451645 * the 2nd coeff is the number of iterations for the update, 3rd is the number of total iteration till reaching the final outlet pressure value */
1646- addDoubleArrayOption (" RAMP_MOTION_FRAME_COEFF" , 3 , rampMotionFrame_coeff );
1646+ addDoubleArrayOption (" RAMP_MOTION_FRAME_COEFF" , 3 , rampMotionFrameCoeff );
16471647 /* DESCRIPTION: AVERAGE_MACH_LIMIT is a limit value for average procedure based on the mass flux. */
16481648 addDoubleOption (" AVERAGE_MACH_LIMIT" , AverageMachLimit, 0.03 );
16491649 /* !\brief RAMP_OUTLET\n DESCRIPTION: option to ramp up or down the Giles outlet value*/
16501650 addBoolOption (" RAMP_OUTLET" , RampOutlet, false );
1651- rampOutlet_coeff [0 ] = 100000.0 ; rampOutlet_coeff [1 ] = 1.0 ; rampOutlet_coeff [2 ] = 1000.0 ;
1651+ rampOutletCoeff [0 ] = 100000.0 ; rampOutletCoeff [1 ] = 1.0 ; rampOutletCoeff [2 ] = 1000.0 ;
16521652 /* !\brief RAMP_OUTLET_COEFF \n DESCRIPTION: the 1st coeff is the staring outlet value,
16531653 * the 2nd coeff is the number of iterations for the update, 3rd is the number of total iteration till reaching the final outlet pressure value */
1654- addDoubleArrayOption (" RAMP_OUTLET_COEFF" , 3 , rampOutlet_coeff );
1654+ addDoubleArrayOption (" RAMP_OUTLET_COEFF" , 3 , rampOutletCoeff );
16551655 /* !\brief MARKER_MIXINGPLANE \n DESCRIPTION: Identify the boundaries in which the mixing plane is applied. \ingroup Config*/
16561656 addStringListOption (" MARKER_MIXINGPLANE_INTERFACE" , nMarker_MixingPlaneInterface, Marker_MixingPlaneInterface);
16571657 /* !\brief TURBULENT_MIXINGPLANE \n DESCRIPTION: Activate mixing plane also for turbulent quantities \ingroup Config*/
@@ -4435,28 +4435,28 @@ void CConfig::SetPostprocessing(SU2_COMPONENT val_software, unsigned short val_i
44354435 if (GetGrid_Movement () && RampRotatingFrame && !DiscreteAdjoint){
44364436 FinalRotation_Rate_Z = Rotation_Rate[2 ];
44374437 if (abs (FinalRotation_Rate_Z) > 0.0 ){
4438- Rotation_Rate[2 ] = rampMotionFrame_coeff [RAMP_COEFF::INITIAL_VALUE];
4438+ Rotation_Rate[2 ] = rampMotionFrameCoeff [RAMP_COEFF::INITIAL_VALUE];
44394439 }
44404440 }
44414441
44424442 if (GetGrid_Movement () && RampTranslationFrame && !DiscreteAdjoint){
44434443 FinalTranslation_Rate_Y = Translation_Rate[1 ];
44444444 if (abs (FinalTranslation_Rate_Y) > 0.0 ){
4445- Translation_Rate[1 ] = rampMotionFrame_coeff [RAMP_COEFF::INITIAL_VALUE];
4445+ Translation_Rate[1 ] = rampMotionFrameCoeff [RAMP_COEFF::INITIAL_VALUE];
44464446 }
44474447 }
44484448
44494449 if (RampOutletPressure && !DiscreteAdjoint){
44504450 for (iMarker = 0 ; iMarker < nMarker_Giles; iMarker++){
44514451 if (Kind_Data_Giles[iMarker] == STATIC_PRESSURE || Kind_Data_Giles[iMarker] == STATIC_PRESSURE_1D || Kind_Data_Giles[iMarker] == RADIAL_EQUILIBRIUM ){
44524452 FinalOutletPressure = Giles_Var1[iMarker];
4453- Giles_Var1[iMarker] = rampOutlet_coeff [RAMP_COEFF::INITIAL_VALUE];
4453+ Giles_Var1[iMarker] = rampOutletCoeff [RAMP_COEFF::INITIAL_VALUE];
44544454 }
44554455 }
44564456 for (iMarker = 0 ; iMarker < nMarker_Riemann; iMarker++){
44574457 if (Kind_Data_Riemann[iMarker] == STATIC_PRESSURE || Kind_Data_Riemann[iMarker] == RADIAL_EQUILIBRIUM){
44584458 FinalOutletPressure = Riemann_Var1[iMarker];
4459- Riemann_Var1[iMarker] = rampOutlet_coeff [RAMP_COEFF::INITIAL_VALUE];
4459+ Riemann_Var1[iMarker] = rampOutletCoeff [RAMP_COEFF::INITIAL_VALUE];
44604460 }
44614461 }
44624462 }
@@ -4465,7 +4465,7 @@ void CConfig::SetPostprocessing(SU2_COMPONENT val_software, unsigned short val_i
44654465 for (iMarker = 0 ; iMarker < nMarker_Giles; iMarker++){
44664466 if (Kind_Data_Giles[iMarker] == MASS_FLOW_OUTLET){
44674467 FinalOutletMassFlow = Giles_Var1[iMarker];
4468- Giles_Var1[iMarker] = rampOutlet_coeff [RAMP_COEFF::INITIAL_VALUE];
4468+ Giles_Var1[iMarker] = rampOutletCoeff [RAMP_COEFF::INITIAL_VALUE];
44694469 }
44704470 }
44714471 }
0 commit comments