@@ -2433,8 +2433,8 @@ void CConfig::SetConfig_Options() {
24332433 /* !\par CONFIG_CATEGORY: FEA solver \ingroup Config*/
24342434 /* --- Options related to the FEA solver ---*/
24352435
2436- /* !\brief FEA_FILENAME \n DESCRIPTION: Filename to input for element-based properties \n Default: default_element_properties.dat \ingroup Config */
2437- addStringOption (" FEA_FILENAME" , FEA_FileName, string (" default_element_properties.dat " ));
2436+ /* !\brief FEA_FILENAME \n DESCRIPTION: Filename to input for element-based properties \n Default: default_element_properties \ingroup Config */
2437+ addStringOption (" FEA_FILENAME" , FEA_FileName, string (" default_element_properties" ));
24382438 /* DESCRIPTION: Determine if advanced features are used from the element-based FEA analysis (NO, YES = experimental) */
24392439 addBoolOption (" FEA_ADVANCED_MODE" , FEAAdvancedMode, false );
24402440
@@ -8403,11 +8403,6 @@ string CConfig::GetUnsteady_FileName(string val_filename, int val_iter, const st
84038403 string UnstExt, UnstFilename = std::move (val_filename);
84048404 char buffer[50 ];
84058405
8406- /* --- Note that we always call this routine with the extension already attached, so
8407- we remove it. ---*/
8408- // unsigned short lastindex = UnstFilename.find_last_of('.');
8409- // UnstFilename = UnstFilename.substr(0, lastindex);
8410-
84118406 /* --- Check that a positive value iteration is requested (for now). ---*/
84128407
84138408 if (val_iter < 0 ) {
@@ -8436,11 +8431,6 @@ string CConfig::GetMultizone_FileName(string val_filename, int val_iZone, const
84368431 string multizone_filename = std::move (val_filename);
84378432 char buffer[50 ];
84388433
8439- /* --- Note that we always call this routine wit the extension already attached, so
8440- we remove it. ---*/
8441- // unsigned short lastindex = multizone_filename.find_last_of('.');
8442- // multizone_filename = multizone_filename.substr(0, lastindex);
8443-
84448434 if (Multizone_Problem) {
84458435 SPRINTF (buffer, " _%d" , SU2_TYPE::Int (val_iZone));
84468436 multizone_filename.append (string (buffer));
0 commit comments