Skip to content

Commit 6c40737

Browse files
committed
Forgot the default: break; stuff in NEMOoutput.
1 parent 8f7ccc5 commit 6c40737

1 file changed

Lines changed: 6 additions & 6 deletions

File tree

SU2_CFD/src/output/CNEMOCompOutput.cpp

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ void CNEMOCompOutput::SetHistoryOutputFields(CConfig *config){
142142
/// DESCRIPTION: Root-mean square residual of the dissipation (SST model).
143143
AddHistoryOutput("RMS_DISSIPATION", "rms[w]", ScreenOutputFormat::FIXED, "RMS_RES", "Root-mean square residual of dissipation (SST model).", HistoryFieldType::RESIDUAL);
144144
break;
145-
default: break;
145+
case TURB_MODEL::NONE: break;
146146
}
147147
/// END_GROUP
148148

@@ -169,7 +169,7 @@ void CNEMOCompOutput::SetHistoryOutputFields(CConfig *config){
169169
/// DESCRIPTION: Maximum residual of the dissipation (SST model).
170170
AddHistoryOutput("MAX_DISSIPATION", "max[w]", ScreenOutputFormat::FIXED, "MAX_RES", "Maximum residual of dissipation (SST model).", HistoryFieldType::RESIDUAL);
171171
break;
172-
default: break;
172+
case TURB_MODEL::NONE: break;
173173
}
174174
/// END_GROUP
175175

@@ -196,7 +196,7 @@ void CNEMOCompOutput::SetHistoryOutputFields(CConfig *config){
196196
/// DESCRIPTION: Maximum residual of the dissipation (SST model).
197197
AddHistoryOutput("BGS_DISSIPATION", "bgs[w]", ScreenOutputFormat::FIXED, "BGS_RES", "BGS residual of dissipation (SST model).", HistoryFieldType::RESIDUAL);
198198
break;
199-
default: break;
199+
case TURB_MODEL::NONE: break;
200200
}
201201
/// END_GROUP
202202

@@ -601,7 +601,7 @@ void CNEMOCompOutput::LoadHistoryData(CConfig *config, CGeometry *geometry, CSol
601601
SetHistoryOutputValue("RMS_TKE", log10(turb_solver->GetRes_RMS(0)));
602602
SetHistoryOutputValue("RMS_DISSIPATION", log10(turb_solver->GetRes_RMS(1)));
603603
break;
604-
default: break;
604+
case TURB_MODEL::NONE: break;
605605
}
606606

607607
SetHistoryOutputValue("MAX_DENSITY", log10(NEMO_solver->GetRes_Max(0)));
@@ -622,7 +622,7 @@ void CNEMOCompOutput::LoadHistoryData(CConfig *config, CGeometry *geometry, CSol
622622
SetHistoryOutputValue("MAX_TKE", log10(turb_solver->GetRes_Max(0)));
623623
SetHistoryOutputValue("MAX_DISSIPATION", log10(turb_solver->GetRes_Max(1)));
624624
break;
625-
default: break;
625+
case TURB_MODEL::NONE: break;
626626
}
627627

628628
if (multiZone){
@@ -645,7 +645,7 @@ void CNEMOCompOutput::LoadHistoryData(CConfig *config, CGeometry *geometry, CSol
645645
SetHistoryOutputValue("BGS_TKE", log10(turb_solver->GetRes_BGS(0)));
646646
SetHistoryOutputValue("BGS_DISSIPATION", log10(turb_solver->GetRes_BGS(1)));
647647
break;
648-
default: break;
648+
case TURB_MODEL::NONE: break;
649649
}
650650
}
651651

0 commit comments

Comments
 (0)