Skip to content

Commit

Permalink
Merge branch 'develop' into feature_symmetry
Browse files Browse the repository at this point in the history
  • Loading branch information
bigfooted authored Apr 15, 2024
2 parents 3666bcf + 4974020 commit 5bdd5fb
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 5bdd5fb

Please sign in to comment.