Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions Common/src/CConfig.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -3340,13 +3340,13 @@ void CConfig::SetConfig_Parsing(istream& config_buffer){
else if (!option_name.compare("DEAD_LOAD"))
newString.append("DEAD_LOAD is deprecated. Use GRAVITY_FORCE or BODY_FORCE instead.\n\n");
else if (!option_name.compare("RAMP_OUTLET_PRESSURE"))
newString.append("RAMP_OUTLET_PRESSURE is deprectaed. Use RAMP_OUTLET instead");
newString.append("RAMP_OUTLET_PRESSURE is deprecated. Use RAMP_OUTLET instead.\n\n");
else if (!option_name.compare("RAMP_OUTLET_PRESSURE_COEFF"))
newString.append("RAMP_OUTLET_PRESSURE_COEFF is deprectaed. Use RAMP_OUTLET_COEFF instead");
newString.append("RAMP_OUTLET_PRESSURE_COEFF is deprecated. Use RAMP_OUTLET_COEFF instead.\n\n");
else if (!option_name.compare("RAMP_ROTATION_FRAME"))
newString.append("RAMP_ROTATION_FRAME is deprectaed. Use RAMP_MOTION_FRAME instead");
newString.append("RAMP_ROTATION_FRAME is deprecated. Use RAMP_MOTION_FRAME instead.\n\n");
else if (!option_name.compare("RAMP_ROTATION_FRAME_COEFF"))
newString.append("RAMP_ROTATION_FRAME_COEFF is deprectaed. Use RAMP_MOTION_FRAME_COEFF instead");
newString.append("RAMP_ROTATION_FRAME_COEFF is deprecated. Use RAMP_MOTION_FRAME_COEFF instead.\n\n");
else if (!option_name.compare("INC_INLET_USENORMAL"))
newString.append("INC_INLET_USENORMAL is deprecated. Use INLET_USE_NORMAL instead (compatible with all solvers).\n\n");
else if (!option_name.compare("DATADRIVEN_INITIAL_ENERGY") || !option_name.compare("DATADRIVEN_INITIAL_DENSITY"))
Expand Down
Loading