@@ -330,7 +330,7 @@ def main():
330330 turb_naca0012_sa .cfg_dir = "rans/naca0012"
331331 turb_naca0012_sa .cfg_file = "turb_NACA0012_sa.cfg"
332332 turb_naca0012_sa .test_iter = 10
333- turb_naca0012_sa .test_vals = [- 11.147929 , - 14.466781 , 1.064330 , 0.0197560 , 20 , - 1.741326 , 20 , - 4.864272 ]
333+ turb_naca0012_sa .test_vals = [- 8.621456 , - 10.378269 , 1.064502 , 0.019710 , 20.000000 , - 1.811700 , 20.000000 , - 5.171326 ]
334334 turb_naca0012_sa .su2_exec = "parallel_computation.py -f"
335335 turb_naca0012_sa .timeout = 3200
336336 turb_naca0012_sa .tol = 0.00001
@@ -389,7 +389,7 @@ def main():
389389 axi_rans_air_nozzle .cfg_dir = "axisymmetric_rans/air_nozzle"
390390 axi_rans_air_nozzle .cfg_file = "air_nozzle.cfg"
391391 axi_rans_air_nozzle .test_iter = 10
392- axi_rans_air_nozzle .test_vals = [- 12.098340 , - 6.651791 , - 8.877009 , - 2.393286 ]
392+ axi_rans_air_nozzle .test_vals = [- 12.096377 , - 6.636625 , - 8.786639 , - 2.399099 ]
393393 axi_rans_air_nozzle .su2_exec = "mpirun -n 2 SU2_CFD"
394394 axi_rans_air_nozzle .timeout = 1600
395395 axi_rans_air_nozzle .tol = 0.0001
@@ -620,6 +620,82 @@ def main():
620620 fem_ns_unsteady_cylinder_ader .tol = 0.00001
621621 test_list .append (fem_ns_unsteady_cylinder_ader )
622622
623+ ###########################
624+ ### Turbulence modeling ###
625+ ###########################
626+
627+ # SA Baseline (Identical to RANS SA RAE2822)
628+ turbmod_sa_bsl_rae2822 = TestCase ('turbmod_sa_bsl_rae2822' )
629+ turbmod_sa_bsl_rae2822 .cfg_dir = "turbulence_models/sa/rae2822"
630+ turbmod_sa_bsl_rae2822 .cfg_file = "turb_SA_BSL_RAE2822.cfg"
631+ turbmod_sa_bsl_rae2822 .test_iter = 20
632+ turbmod_sa_bsl_rae2822 .test_vals = [- 2.004689 , 0.742306 , 0.497308 , - 5.265793 , 0.809463 , 0.062016 ]
633+ turbmod_sa_bsl_rae2822 .su2_exec = "mpirun -n 2 SU2_CFD"
634+ turbmod_sa_bsl_rae2822 .timeout = 1600
635+ turbmod_sa_bsl_rae2822 .new_output = True
636+ turbmod_sa_bsl_rae2822 .tol = 0.00001
637+ test_list .append (turbmod_sa_bsl_rae2822 )
638+
639+ # SA Negative
640+ turbmod_sa_neg_rae2822 = TestCase ('turbmod_sa_neg_rae2822' )
641+ turbmod_sa_neg_rae2822 .cfg_dir = "turbulence_models/sa/rae2822"
642+ turbmod_sa_neg_rae2822 .cfg_file = "turb_SA_NEG_RAE2822.cfg"
643+ turbmod_sa_neg_rae2822 .test_iter = 20
644+ turbmod_sa_neg_rae2822 .test_vals = [- 2.004689 , 0.742306 , 0.497308 , - 5.265793 , 0.809463 , 0.062016 ]
645+ turbmod_sa_neg_rae2822 .su2_exec = "mpirun -n 2 SU2_CFD"
646+ turbmod_sa_neg_rae2822 .timeout = 1600
647+ turbmod_sa_neg_rae2822 .new_output = True
648+ turbmod_sa_neg_rae2822 .tol = 0.00001
649+ test_list .append (turbmod_sa_neg_rae2822 )
650+
651+ # SA Compressibility Correction
652+ turbmod_sa_comp_rae2822 = TestCase ('turbmod_sa_comp_rae2822' )
653+ turbmod_sa_comp_rae2822 .cfg_dir = "turbulence_models/sa/rae2822"
654+ turbmod_sa_comp_rae2822 .cfg_file = "turb_SA_COMP_RAE2822.cfg"
655+ turbmod_sa_comp_rae2822 .test_iter = 20
656+ turbmod_sa_comp_rae2822 .test_vals = [- 2.004687 , 0.742304 , 0.497309 , - 5.266081 , 0.809467 , 0.062029 ]
657+ turbmod_sa_comp_rae2822 .su2_exec = "mpirun -n 2 SU2_CFD"
658+ turbmod_sa_comp_rae2822 .timeout = 1600
659+ turbmod_sa_comp_rae2822 .new_output = True
660+ turbmod_sa_comp_rae2822 .tol = 0.00001
661+ test_list .append (turbmod_sa_comp_rae2822 )
662+
663+ # SA Edwards
664+ turbmod_sa_edw_rae2822 = TestCase ('turbmod_sa_edw_rae2822' )
665+ turbmod_sa_edw_rae2822 .cfg_dir = "turbulence_models/sa/rae2822"
666+ turbmod_sa_edw_rae2822 .cfg_file = "turb_SA_EDW_RAE2822.cfg"
667+ turbmod_sa_edw_rae2822 .test_iter = 20
668+ turbmod_sa_edw_rae2822 .test_vals = [- 2.004687 , 0.742306 , 0.497310 , - 5.290769 , 0.809485 , 0.062036 ]
669+ turbmod_sa_edw_rae2822 .su2_exec = "mpirun -n 2 SU2_CFD"
670+ turbmod_sa_edw_rae2822 .timeout = 1600
671+ turbmod_sa_edw_rae2822 .new_output = True
672+ turbmod_sa_edw_rae2822 .tol = 0.00001
673+ test_list .append (turbmod_sa_edw_rae2822 )
674+
675+ # SA Compressibility and Edwards
676+ turbmod_sa_comp_edw_rae2822 = TestCase ('turbmod_sa_comp_edw_rae2822' )
677+ turbmod_sa_comp_edw_rae2822 .cfg_dir = "turbulence_models/sa/rae2822"
678+ turbmod_sa_comp_edw_rae2822 .cfg_file = "turb_SA_COMP_EDW_RAE2822.cfg"
679+ turbmod_sa_comp_edw_rae2822 .test_iter = 20
680+ turbmod_sa_comp_edw_rae2822 .test_vals = [- 2.004687 , 0.742306 , 0.497310 , - 5.290769 , 0.809485 , 0.062036 ]
681+ turbmod_sa_comp_edw_rae2822 .su2_exec = "mpirun -n 2 SU2_CFD"
682+ turbmod_sa_comp_edw_rae2822 .timeout = 1600
683+ turbmod_sa_comp_edw_rae2822 .new_output = True
684+ turbmod_sa_comp_edw_rae2822 .tol = 0.00001
685+ test_list .append (turbmod_sa_comp_edw_rae2822 )
686+
687+ # SA QCR
688+ turbmod_sa_qcr_rae2822 = TestCase ('turbmod_sa_qcr_rae2822' )
689+ turbmod_sa_qcr_rae2822 .cfg_dir = "turbulence_models/sa/rae2822"
690+ turbmod_sa_qcr_rae2822 .cfg_file = "turb_SA_QCR_RAE2822.cfg"
691+ turbmod_sa_qcr_rae2822 .test_iter = 20
692+ turbmod_sa_qcr_rae2822 .test_vals = [- 2.004793 , 0.742353 , 0.497315 , - 5.265974 , 0.807841 , 0.062027 ]
693+ turbmod_sa_qcr_rae2822 .su2_exec = "mpirun -n 2 SU2_CFD"
694+ turbmod_sa_qcr_rae2822 .timeout = 1600
695+ turbmod_sa_qcr_rae2822 .new_output = True
696+ turbmod_sa_qcr_rae2822 .tol = 0.00001
697+ test_list .append (turbmod_sa_qcr_rae2822 )
698+
623699 ############################
624700 ### Transition ###
625701 ############################
0 commit comments