@@ -207,7 +207,6 @@ void COutput::SetHistoryOutput(CGeometry *geometry,
207207 unsigned long OuterIter,
208208 unsigned long InnerIter) {
209209
210- curTimeIter = TimeIter;
211210 curAbsTimeIter = max (TimeIter, config->GetStartWindowIteration ()) - config->GetStartWindowIteration ();
212211 curOuterIter = OuterIter;
213212 curInnerIter = InnerIter;
@@ -273,7 +272,6 @@ void COutput::SetHistoryOutput(CGeometry ****geometry, CSolver *****solver, CCon
273272
274273void COutput::SetMultizoneHistoryOutput (COutput **output, CConfig **config, CConfig *driver_config, unsigned long TimeIter, unsigned long OuterIter){
275274
276- curTimeIter = TimeIter;
277275 curAbsTimeIter = max (TimeIter, driver_config->GetStartWindowIteration ()) - driver_config->GetStartWindowIteration ();
278276 curOuterIter = OuterIter;
279277
@@ -389,9 +387,6 @@ void COutput::WriteToFile(CConfig *config, CGeometry *geometry, OUTPUT_TYPE form
389387 /* --- File writer that will later be used to write the file to disk. Created below in the "switch" ---*/
390388 CFileWriter *fileWriter = nullptr ;
391389
392- /* --- Set current time iter even if history file is not written ---*/
393- curTimeIter = config->GetTimeIter ();
394-
395390 /* --- If it is still present, strip the extension (suffix) from the filename ---*/
396391 const auto lastindex = fileName.find_last_of (' .' );
397392 fileName = fileName.substr (0 , lastindex);
0 commit comments