Skip to content

Commit f00eabb

Browse files
committed
Merge remote-tracking branch 'upstream/develop' into feature_Sobolev_smoothing_solver
2 parents 608cfb2 + 7cfe302 commit f00eabb

4 files changed

Lines changed: 5 additions & 7 deletions

File tree

Common/src/CConfig.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2835,7 +2835,7 @@ void CConfig::SetConfig_Options() {
28352835
addUnsignedLongOption("OUTPUT_WRT_FREQ", VolumeWrtFreq, 250);
28362836
/* DESCRIPTION: Volume solution files */
28372837
addEnumListOption("OUTPUT_FILES", nVolumeOutputFiles, VolumeOutputFiles, Output_Map);
2838-
2838+
28392839
/* DESCRIPTION: Using Uncertainty Quantification with SST Turbulence Model */
28402840
addBoolOption("USING_UQ", using_uq, false);
28412841

@@ -8159,7 +8159,7 @@ string CConfig::GetFilename(string filename, string ext, int timeIter) const {
81598159
if (GetTime_Domain()){
81608160
filename = GetUnsteady_FileName(filename, timeIter, ext);
81618161
}
8162-
8162+
81638163
return filename;
81648164
}
81658165

SU2_CFD/src/output/filewriter/CParallelFileWriter.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -200,8 +200,8 @@ bool CFileWriter::WriteMPIString(const string &str, unsigned short processor){
200200

201201
bool CFileWriter::OpenMPIFile(string val_filename){
202202

203-
/*--- We append the pre-defined suffix (extension) to the filename (prefix) ---*/
204-
val_filename.append(fileExt);
203+
/*--- We append the pre-defined suffix (extension) to the filename (prefix) ---*/
204+
val_filename.append(fileExt);
205205

206206
#ifdef HAVE_MPI
207207
int ierr;

SU2_CFD/src/output/filewriter/CParaviewVTMFileWriter.cpp

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -92,13 +92,11 @@ void CParaviewVTMFileWriter::AddDataset(string foldername, string name, string f
9292
/*--- Construct the full file name incl. folder ---*/
9393
/*--- Note that the folder name is simply the filename ---*/
9494

95-
//string fullFilename = folderName + "/zone_" + to_string(iZone) + "/" + file;
9695
string fullFilename = foldername + "/zone_" + to_string(iZone) + "/" + file;
9796

9897
/*--- Create an XML writer and dump data into file ---*/
9998

10099
CParaviewXMLFileWriter XMLWriter(dataSorter);
101-
cout << "writing to XML file "<<fullFilename << endl;
102100
XMLWriter.Write_Data(fullFilename);
103101

104102
/*--- Add the dataset to the vtm file ---*/

config_template.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1693,7 +1693,7 @@ TABULAR_FORMAT= CSV
16931693
% Files to output
16941694
% Possible formats : (TECPLOT_ASCII, TECPLOT, SURFACE_TECPLOT_ASCII,
16951695
% SURFACE_TECPLOT, CSV, SURFACE_CSV, PARAVIEW_ASCII, PARAVIEW_LEGACY, SURFACE_PARAVIEW_ASCII,
1696-
% SURFACE_PARAVIEW_LEGACY, PARAVIEW, SURFACE_PARAVIEW, RESTART_ASCII, RESTART, CGNS, SURFACE_CGNS, STL_ASCII, STL)
1696+
% SURFACE_PARAVIEW_LEGACY, PARAVIEW, SURFACE_PARAVIEW, RESTART_ASCII, RESTART, CGNS, SURFACE_CGNS, STL_ASCII, STL_BINARY)
16971697
% default : (RESTART, PARAVIEW, SURFACE_PARAVIEW)
16981698
OUTPUT_FILES= (RESTART, PARAVIEW, SURFACE_PARAVIEW)
16991699
%

0 commit comments

Comments
 (0)