Skip to content

Commit

Permalink
Merge pull request #330 from hannesbrandt/feature-demo
Browse files Browse the repository at this point in the history
Move swirl_rays and filament_swirl to demos
  • Loading branch information
scottaiton authored Apr 17, 2024
2 parents 92bc141 + c2e6dd3 commit a8a56a4
Show file tree
Hide file tree
Showing 65 changed files with 156 additions and 414 deletions.
92 changes: 0 additions & 92 deletions applications/clawpack/advection/2d/filament_swirl/Makefile.am

This file was deleted.

48 changes: 0 additions & 48 deletions applications/clawpack/advection/2d/swirl_rays/Makefile.am

This file was deleted.

112 changes: 0 additions & 112 deletions applications/clawpack/advection/2d/swirl_rays/regression.ini

This file was deleted.

10 changes: 0 additions & 10 deletions applications/clawpack/advection/2d/swirl_rays/regressions.sh

This file was deleted.

6 changes: 0 additions & 6 deletions applications/clawpack/clawpack.apps
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,6 @@ include applications/clawpack/advection/2d/disk/Makefile.am
## filament (square, multi-block disk)
include applications/clawpack/advection/2d/filament/Makefile.am

## filament_swirl
include applications/clawpack/advection/2d/filament_swirl/Makefile.am

## hemisphere (manifold, multi-block)
include applications/clawpack/advection/2d/hemisphere/Makefile.am

Expand All @@ -49,9 +46,6 @@ include applications/clawpack/advection/2d/sphere/Makefile.am
## swirl (single block, square)
include applications/clawpack/advection/2d/swirl/Makefile.am

## swirl_rays (single block, square)
include applications/clawpack/advection/2d/swirl_rays/Makefile.am

## torus (manifold, periodic in both directions)
include applications/clawpack/advection/2d/torus/Makefile.am

Expand Down
9 changes: 0 additions & 9 deletions applications/clawpack/clawpack.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,6 @@ add_subdirectory(clawpack/advection/2d/swirl)
## filament (square, multi-block disk)
add_subdirectory(clawpack/advection/2d/filament)

## filament_swirl
add_subdirectory(clawpack/advection/2d/filament_swirl)

## annulus (manifold, periodic in one direction)
add_subdirectory(clawpack/advection/2d/annulus)

Expand Down Expand Up @@ -80,12 +77,6 @@ add_subdirectory(clawpack/transport/2d/sphere)
add_subdirectory(clawpack/transport/2d/torus)
add_subdirectory(clawpack/transport/2d/square)

## -------------------------------- Rays ---------------------------------
## Test example including rays
## -------------------------------------------------------------------------

add_subdirectory(clawpack/advection/2d/swirl_rays)

## ----------------------------------------------------------
## Other hyperbolic problems (acoustics, Euler, burgers, SWE)
## ----------------------------------------------------------
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
set(all ${PROJECT_SOURCE_DIR}/clawpack/advection/2d/all)
set(all ${PROJECT_SOURCE_DIR}/demo/2d/all)

add_library(filament_swirl_f OBJECT
psi.f
Expand Down Expand Up @@ -84,5 +84,5 @@ target_link_libraries(filament_swirl_split PRIVATE
FORESTCLAW::CLAWPACK5
)

add_test(NAME clawpack_advection_2d_filament_swirl COMMAND ${CMAKE_CURRENT_SOURCE_DIR}/regressions.sh WORKING_DIRECTORY ${CMAKE_BINARY_DIR})
set_tests_properties(clawpack_advection_2d_filament_swirl PROPERTIES ENVIRONMENT "${FCLAW_TEST_ENVIRONMENT}")
add_test(NAME demo_2d_filament_swirl COMMAND ${CMAKE_CURRENT_SOURCE_DIR}/regressions.sh WORKING_DIRECTORY ${CMAKE_BINARY_DIR})
set_tests_properties(demo_2d_filament_swirl PROPERTIES ENVIRONMENT "${FCLAW_TEST_ENVIRONMENT}")
Loading

0 comments on commit a8a56a4

Please sign in to comment.