From 6e0d7a1465e63f36ee9f1a139ede9abfe0feb543 Mon Sep 17 00:00:00 2001 From: rois1995 Date: Tue, 21 Jan 2025 18:00:02 +0100 Subject: [PATCH] - Fixed multizone history output --- SU2_CFD/src/drivers/CMultizoneDriver.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/SU2_CFD/src/drivers/CMultizoneDriver.cpp b/SU2_CFD/src/drivers/CMultizoneDriver.cpp index d5e2fbbafbb..4a726812e7b 100644 --- a/SU2_CFD/src/drivers/CMultizoneDriver.cpp +++ b/SU2_CFD/src/drivers/CMultizoneDriver.cpp @@ -397,6 +397,10 @@ void CMultizoneDriver::Corrector(unsigned short val_iZone) { bool CMultizoneDriver::OuterConvergence(unsigned long OuterIter) { + // Set the current time iter for the multizone problem + bool unsteady = config_container[ZONE_0]->GetTime_Domain(); + if (unsteady) driver_output->SetCurTimeIter(config_container[ZONE_0]->GetTimeIter()); + /*--- Update the residual for the all the zones. ---*/ for (iZone = 0; iZone < nZone; iZone++) {