Skip to content

Commit

Permalink
fix update of dualtime solver for species transport (#2260)
Browse files Browse the repository at this point in the history
  • Loading branch information
bigfooted authored Apr 14, 2024
1 parent e33871a commit 4974020
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions SU2_CFD/src/iteration/CFluidIteration.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -200,6 +200,15 @@ void CFluidIteration::Update(COutput* output, CIntegration**** integration, CGeo
solver[val_iZone][val_iInst][MESH_0][HEAT_SOL],
config[val_iZone], MESH_0);
}

/*--- Update dual time solver for species transport equations (including flamelet) ---*/

if (config[val_iZone]->GetKind_Species_Model() != SPECIES_MODEL::NONE) {
integration[val_iZone][val_iInst][SPECIES_SOL]->SetDualTime_Solver(geometry[val_iZone][val_iInst][MESH_0],
solver[val_iZone][val_iInst][MESH_0][SPECIES_SOL],
config[val_iZone], MESH_0);
}

}
}

Expand Down

0 comments on commit 4974020

Please sign in to comment.