From 920f6e3eb3f8803f21a2f9c8c0332bfff3033cae Mon Sep 17 00:00:00 2001 From: Bruce Perry Date: Tue, 8 Oct 2024 16:50:21 -0600 Subject: [PATCH] run RF cases in CI --- Exec/RegTests/CMakeLists.txt | 2 ++ Exec/RegTests/EB-Rotor4Blade/rotor.inp | 6 +++--- Exec/RegTests/EB-TaylorCouette/tc.inp | 6 +++--- Tests/CMakeLists.txt | 2 ++ 4 files changed, 10 insertions(+), 6 deletions(-) diff --git a/Exec/RegTests/CMakeLists.txt b/Exec/RegTests/CMakeLists.txt index 1b83f36d6..291c698c5 100644 --- a/Exec/RegTests/CMakeLists.txt +++ b/Exec/RegTests/CMakeLists.txt @@ -43,6 +43,8 @@ if(PELE_DIM EQUAL 3) add_subdirectory(EB-C7) add_subdirectory(EB-C8) add_subdirectory(EB-BluffBody) + add_subdirectory(EB-TaylorCouette) + add_subdirectory(EB-Rotor4Blade) endif() if(PELE_ENABLE_MASA) add_subdirectory(MMS) diff --git a/Exec/RegTests/EB-Rotor4Blade/rotor.inp b/Exec/RegTests/EB-Rotor4Blade/rotor.inp index f384aa8ba..1e3354fe3 100644 --- a/Exec/RegTests/EB-Rotor4Blade/rotor.inp +++ b/Exec/RegTests/EB-Rotor4Blade/rotor.inp @@ -5,9 +5,9 @@ stop_time = 0.06 # PROBLEM SIZE & GEOMETRY geometry.is_periodic = 1 1 1 geometry.coord_sys = 0 # 0 => cart -geometry.prob_lo = -50.0 -50.0 -6.25 -geometry.prob_hi = 50.0 50.0 6.25 -amr.n_cell = 256 256 32 +geometry.prob_lo = -50.0 -50.0 -1.5625 +geometry.prob_hi = 50.0 50.0 1.5625 +amr.n_cell = 256 256 8 # >>>>>>>>>>>>> BC KEYWORDS <<<<<<<<<<<<<<<<<<<<<< # Interior, UserBC, Symmetry, SlipWall, NoSlipWall diff --git a/Exec/RegTests/EB-TaylorCouette/tc.inp b/Exec/RegTests/EB-TaylorCouette/tc.inp index f89b85f82..fc5464734 100644 --- a/Exec/RegTests/EB-TaylorCouette/tc.inp +++ b/Exec/RegTests/EB-TaylorCouette/tc.inp @@ -5,9 +5,9 @@ stop_time = 0.06 # PROBLEM SIZE & GEOMETRY geometry.is_periodic = 1 1 1 geometry.coord_sys = 0 # 0 => cart -geometry.prob_lo = -50.0 -50.0 -12.5 -geometry.prob_hi = 50.0 50.0 12.5 -amr.n_cell = 128 128 32 +geometry.prob_lo = -50.0 -50.0 -3.125 +geometry.prob_hi = 50.0 50.0 3.125 +amr.n_cell = 128 128 8 # >>>>>>>>>>>>> BC KEYWORDS <<<<<<<<<<<<<<<<<<<<<< # Interior, UserBC, Symmetry, SlipWall, NoSlipWall diff --git a/Tests/CMakeLists.txt b/Tests/CMakeLists.txt index 220b582f1..0106d18e3 100644 --- a/Tests/CMakeLists.txt +++ b/Tests/CMakeLists.txt @@ -249,6 +249,7 @@ add_test_r(eb-c4 EB-C4-5) add_test_r(eb-c5 EB-C4-5) if(PELE_DIM GREATER 2) add_test_r(eb-c8-rere-plm EB-C8) + add_test_rv(tc EB-TaylorCouette) endif() add_test_rv(eb-c9 EB-C9) add_test_r(eb-c10 EB-C10) @@ -309,6 +310,7 @@ add_test_re(eb-bluffbody-1 EB-BluffBody) if(PELE_DIM GREATER 2) add_test_re(eb-c8 EB-C8) add_test_re(eb-c8-rere-mol EB-C8) + add_test_re(rotor EB-Rotor4Blade) add_test_re(tg-3 TG) add_test_re(tg-4 TG) endif()