Skip to content

Commit 8f7ccc5

Browse files
committed
One more TURB_MODEL switch
1 parent acce0ac commit 8f7ccc5

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Common/src/CConfig.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5620,14 +5620,14 @@ void CConfig::SetOutput(SU2_COMPONENT val_software, unsigned short val_izone) {
56205620
if (Kind_Regime == ENUM_REGIME::INCOMPRESSIBLE) cout << "Incompressible RANS equations." << endl;
56215621
cout << "Turbulence model: ";
56225622
switch (Kind_Turb_Model) {
5623+
case TURB_MODEL::NONE: break;
56235624
case TURB_MODEL::SA: cout << "Spalart Allmaras" << endl; break;
56245625
case TURB_MODEL::SA_NEG: cout << "Negative Spalart Allmaras" << endl; break;
56255626
case TURB_MODEL::SA_E: cout << "Edwards Spalart Allmaras" << endl; break;
56265627
case TURB_MODEL::SA_COMP: cout << "Compressibility Correction Spalart Allmaras" << endl; break;
56275628
case TURB_MODEL::SA_E_COMP: cout << "Compressibility Correction Edwards Spalart Allmaras" << endl; break;
56285629
case TURB_MODEL::SST: cout << "Menter's SST" << endl; break;
56295630
case TURB_MODEL::SST_SUST: cout << "Menter's SST with sustaining terms" << endl; break;
5630-
default: break;
56315631
}
56325632
if (QCR) cout << "Using Quadratic Constitutive Relation, 2000 version (QCR2000)" << endl;
56335633
if (Kind_Trans_Model == BC) cout << "Using the revised BC transition model (2020)" << endl;

0 commit comments

Comments
 (0)