update source_flag to work with spherical and allow geometric source terms for 1d spherical #1655
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: detonation-sdc | |
on: [pull_request] | |
concurrency: | |
group: ${{ github.ref }}-${{ github.head_ref }}-${{ github.workflow }} | |
cancel-in-progress: true | |
jobs: | |
detonation-sdc: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Get submodules | |
run: | | |
git submodule update --init | |
cd external/Microphysics | |
git fetch; git checkout development | |
cd ../amrex | |
git fetch; git checkout development | |
cd ../.. | |
- name: Install dependencies | |
run: | | |
sudo apt-get update -y -qq | |
sudo apt-get -qq -y install curl g++>=9.3.0 | |
- name: Compile Detonation | |
run: | | |
cd Exec/science/Detonation | |
make DIM=1 USE_MPI=FALSE -j 4 USE_SIMPLIFIED_SDC=TRUE | |
- name: Run Detonation | |
run: | | |
cd Exec/science/Detonation | |
./Castro1d.gnu.SMPLSDC.ex inputs-det-x.nse max_step=40 castro.time_integration_method=3 | |
- name: Build the fextrema tool | |
run: | | |
cd external/amrex/Tools/Plotfile | |
make programs=fextrema -j 4 | |
- name: Check the extrema | |
run: | | |
cd Exec/science/Detonation | |
../../../external/amrex/Tools/Plotfile/fextrema.gnu.ex det_x_plt00040 > fextrema.out | |
diff fextrema.out ci-benchmarks/sdc_det_plt00040_extrema.out | |