Skip to content

Commit e8d4bf3

Browse files
author
rois1995
committed
- changed output for debug variables
1 parent e9eb7ad commit e8d4bf3

File tree

2 files changed

+8
-16
lines changed

2 files changed

+8
-16
lines changed

SU2_CFD/include/numerics/turbulent/turb_sources.hpp

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -908,14 +908,6 @@ class CSourcePieceWise_TurbSST final : public CNumerics {
908908
PDTerm = (-alpha2*pk + alpha3*Density_i*epsilon)*Mt*Mt;
909909
}
910910

911-
if (sstParsedOptions.production == SST_OPTIONS::COMP_ShuzHoff) {
912-
const su2double alpha2 = 0.4;
913-
const su2double alpha3 = 0.2;
914-
const su2double epsilon = beta_star * ScalarVar_i[1] * ScalarVar_i[0];
915-
916-
PDTerm = (-alpha2*pk + alpha3*Density_i*epsilon)*Mt*Mt;
917-
}
918-
919911
const su2double eddy_visc_var = sstParsedOptions.version == SST_OPTIONS::V1994 ? VorticityMag : StrainMag_i;
920912
const su2double zeta = max(ScalarVar_i[1], eddy_visc_var * F2_i / a1);
921913

SU2_CFD/src/output/CFlowOutput.cpp

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1256,14 +1256,14 @@ void CFlowOutput::SetVolumeOutputFieldsScalarSolution(const CConfig* config){
12561256
case TURB_FAMILY::KW:
12571257
AddVolumeOutput("TKE", "Turb_Kin_Energy", "SOLUTION", "Turbulent kinetic energy");
12581258
AddVolumeOutput("DISSIPATION", "Omega", "SOLUTION", "Rate of dissipation");
1259-
AddVolumeOutput("PROD_TKE", "Prod_TKE", "SOLUTION", "Production of turbulent kinetic energy");
1260-
AddVolumeOutput("DESTR_TKE", "Destr_TKE", "SOLUTION", "Destruction of turbulent kinetic energy");
1261-
AddVolumeOutput("PROD_TKE_LIM", "Prod_TKE_Lim", "SOLUTION", "Check if production limiter has been used for TKE");
1262-
AddVolumeOutput("PROD_W", "Prod_W", "SOLUTION", "Production of rate of dissipation");
1263-
AddVolumeOutput("DESTR_W", "Destr_W", "SOLUTION", "Destruction of rate of dissipation");
1264-
AddVolumeOutput("CDkw", "CDkw", "SOLUTION", "Cross-Diffusion term");
1265-
AddVolumeOutput("F1", "F1", "SOLUTION", "F1 blending function");
1266-
AddVolumeOutput("F2", "F2", "SOLUTION", "F2 blending function");
1259+
AddVolumeOutput("PROD_TKE", "Prod_TKE", "DEBUG", "Production of turbulent kinetic energy");
1260+
AddVolumeOutput("DESTR_TKE", "Destr_TKE", "DEBUG", "Destruction of turbulent kinetic energy");
1261+
AddVolumeOutput("PROD_TKE_LIM", "Prod_TKE_Lim", "DEBUG", "Check if production limiter has been used for TKE");
1262+
AddVolumeOutput("PROD_W", "Prod_W", "DEBUG", "Production of rate of dissipation");
1263+
AddVolumeOutput("DESTR_W", "Destr_W", "DEBUG", "Destruction of rate of dissipation");
1264+
AddVolumeOutput("CDkw", "CDkw", "DEBUG", "Cross-Diffusion term");
1265+
AddVolumeOutput("F1", "F1", "DEBUG", "F1 blending function");
1266+
AddVolumeOutput("F2", "F2", "DEBUG", "F2 blending function");
12671267
break;
12681268

12691269
case TURB_FAMILY::NONE:

0 commit comments

Comments
 (0)