Skip to content

Commit 578121c

Browse files
committed
Merge remote-tracking branch 'upstream/develop' into feature_SST-Vm
2 parents e1f6976 + f15fe75 commit 578121c

2 files changed

Lines changed: 6 additions & 6 deletions

File tree

SU2_CFD/src/solvers/CAdjNSSolver.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -773,8 +773,8 @@ void CAdjNSSolver::Viscous_Sensitivity(CGeometry *geometry, CSolver **solver_con
773773
Enthalpy = solver_container[FLOW_SOL]->GetNodes()->GetEnthalpy(iPoint);
774774

775775
/*--- Turbulent kinetic energy ---*/
776-
/* Nijso says: This does not seem to be consistent with the primal treatment. */
777-
if (config->GetKind_Turb_Model() == TURB_MODEL::SST)
776+
/// TODO: This does not seem to be consistent with the primal treatment.
777+
if (config->GetKind_Turb_Model() == TURB_MODEL::SST)
778778
val_turb_ke = solver_container[TURB_SOL]->GetNodes()->GetSolution(iPoint,0);
779779
else
780780
val_turb_ke = 0.0;

TestCases/vandv.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -52,16 +52,16 @@ def main():
5252
flatplate_sst1994m = TestCase('flatplate_sst1994m')
5353
flatplate_sst1994m.cfg_dir = "vandv/rans/flatplate"
5454
flatplate_sst1994m.cfg_file = "turb_flatplate_sst.cfg"
55-
flatplate_sst1994m.test_iter = 20
56-
flatplate_sst1994m.test_vals = [-3.929386, -3.061217, 3.958147, 0.001080, 0.003899]
55+
flatplate_sst1994m.test_iter = 5
56+
flatplate_sst1994m.test_vals = [-13.022890, -10.035602, -5.142343, -0.002535, 0.002809]
5757
test_list.append(flatplate_sst1994m)
5858

5959
# bump in channel - sst-v1994m
6060
bump_sst1994m = TestCase('bump_sst1994m')
6161
bump_sst1994m.cfg_dir = "vandv/rans/bump_in_channel"
6262
bump_sst1994m.cfg_file = "turb_bump_sst.cfg"
63-
bump_sst1994m.test_iter = 20
64-
bump_sst1994m.test_vals = [-4.295705, -1.571766, 2.662294, 0.024496, 0.004525]
63+
bump_sst1994m.test_iter = 5
64+
bump_sst1994m.test_vals = [-13.069139, -10.325333, -5.558903, 0.024576, 0.004967]
6565
test_list.append(bump_sst1994m)
6666

6767
#################

0 commit comments

Comments
 (0)