You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: SU2_CFD/src/drivers/CDriver.cpp
+2-3Lines changed: 2 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -1362,16 +1362,15 @@ void CDriver::InstantiateSpeciesNumerics(unsigned short nVar_Species, int offset
1362
1362
/*--- Definition of the viscous scheme for each equation and mesh level ---*/
1363
1363
1364
1364
for (auto iMGlevel = 0u; iMGlevel <= config->GetnMGLevels(); iMGlevel++) {
1365
-
/// NOTE TK:: understand the "true" input. Correction of the gradient when to apply and when not. True for now as Turb does that as well. Maybe no correction available on boundaries.
1366
1365
numerics[iMGlevel][SPECIES_SOL][visc_term] = new CAvgGrad_Species<Indices>(nDim, nVar_Species, true, config);
1367
1366
numerics[iMGlevel][SPECIES_SOL][visc_bound_term] = new CAvgGrad_Species<Indices>(nDim, nVar_Species, false, config);
1368
1367
}
1369
1368
1370
1369
/*--- Definition of the source term integration scheme for each equation and mesh level ---*/
1371
1370
1372
1371
for (auto iMGlevel = 0u; iMGlevel <= config->GetnMGLevels(); iMGlevel++) {
1373
-
if (config->GetAxisymmetric() == YES) {//TK:: not implemented yet
1374
-
numerics[iMGlevel][SPECIES_SOL][source_first_term] = new CSourceAxisymmetric_Species<Indices>(nDim, nVar_Species, config);//TK::how to get nVarFLow
1372
+
if (config->GetAxisymmetric() == YES) {
1373
+
numerics[iMGlevel][SPECIES_SOL][source_first_term] = new CSourceAxisymmetric_Species<Indices>(nDim, nVar_Species, config);
0 commit comments