Skip to content

Commit

Permalink
run RF cases in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
baperry2 committed Oct 8, 2024
1 parent 089eaca commit 83a6f4a
Show file tree
Hide file tree
Showing 6 changed files with 24 additions and 6 deletions.
2 changes: 2 additions & 0 deletions Exec/RegTests/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
7 changes: 7 additions & 0 deletions Exec/RegTests/EB-Rotor4Blade/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
set(PELE_PHYSICS_EOS_MODEL GammaLaw)
set(PELE_PHYSICS_CHEMISTRY_MODEL Null)
set(PELE_PHYSICS_TRANSPORT_MODEL Constant)
set(PELE_PHYSICS_ENABLE_SPRAY OFF)
set(PELE_PHYSICS_SPRAY_FUEL_NUM 0)
set(PELE_PHYSICS_ENABLE_SOOT OFF)
include(BuildExeAndLib)
6 changes: 3 additions & 3 deletions Exec/RegTests/EB-Rotor4Blade/rotor.inp
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
7 changes: 7 additions & 0 deletions Exec/RegTests/EB-TaylorCouette/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
set(PELE_PHYSICS_EOS_MODEL GammaLaw)
set(PELE_PHYSICS_CHEMISTRY_MODEL Null)
set(PELE_PHYSICS_TRANSPORT_MODEL Constant)
set(PELE_PHYSICS_ENABLE_SPRAY OFF)
set(PELE_PHYSICS_SPRAY_FUEL_NUM 0)
set(PELE_PHYSICS_ENABLE_SOOT OFF)
include(BuildExeAndLib)
6 changes: 3 additions & 3 deletions Exec/RegTests/EB-TaylorCouette/tc.inp
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 2 additions & 0 deletions Tests/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down Expand Up @@ -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()
Expand Down

0 comments on commit 83a6f4a

Please sign in to comment.