Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove strang nse #1549

Merged
merged 8 commits into from
Jul 11, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 0 additions & 20 deletions .github/workflows/nse_table.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,26 +26,6 @@ jobs:
sudo apt-get update -y -qq
sudo apt-get -qq -y install curl cmake jq clang g++>=9.3.0

- name: Compile, burn_cell (NSE, aprox19)
run: |
cd unit_test/burn_cell
make realclean
make NETWORK_DIR=aprox19 USE_NSE_TABLE=TRUE INTEGRATOR_DIR=VODE -j 4

- name: Run burn_cell (NSE, aprox19)
run: |
cd unit_test/burn_cell
./main3d.gnu.ex inputs_aprox19.nse amrex.fpe_trap_{invalid,zero,overflow}=1 > test.out

- name: Print backtrace
if: ${{ failure() && hashFiles('unit_test/burn_cell/Backtrace.0') != '' }}
run: cat unit_test/burn_cell/Backtrace.0

- name: Compare to stored output (NSE, aprox19)
run: |
cd unit_test/burn_cell
diff -I "^Initializing AMReX" -I "^AMReX" -I "^reading in reaclib rates" test.out ci-benchmarks/aprox19_nse_unit_test.out

- name: Compile, burn_cell_sdc (NSE, aprox19)
run: |
cd unit_test/burn_cell_sdc
Expand Down
9 changes: 9 additions & 0 deletions Make.Microphysics_extern
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,15 @@ endif
table:
@if [ ! -f helm_table.dat ]; then echo Linking helm_table.dat; ln -s $(EOS_PATH)/helm_table.dat .; fi

# USE_ALL_NSE will be used if any of the NSE techniques is applied
ifeq ($(USE_NSE_TABLE),TRUE)
USE_ALL_NSE := TRUE
endif

ifeq ($(USE_NSE_NET),TRUE)
USE_ALL_NSE := TRUE
endif

# NSE networks need the table
ifeq ($(USE_NSE_TABLE),TRUE)
NSE_TABULAR_HOME ?= $(MICROPHYSICS_HOME)/nse_tabular
Expand Down
5 changes: 3 additions & 2 deletions integration/Make.package
Original file line number Diff line number Diff line change
Expand Up @@ -26,11 +26,12 @@ else
CEXE_headers += integrator_setup_strang.H
endif

ifeq ($(USE_NSE_TABLE), TRUE)

ifeq ($(USE_ALL_NSE), TRUE)
ifeq ($(USE_ALL_SDC), TRUE)
CEXE_headers += nse_update_sdc.H
else
CEXE_headers += nse_update_strang.H
$(error NSE with Strang integration is not supported)
endif
endif

Expand Down
128 changes: 0 additions & 128 deletions integration/nse_update_strang.H

This file was deleted.

1 change: 1 addition & 0 deletions unit_test/test_nse_interp/GNUmakefile
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ USE_MPI = FALSE
USE_OMP = FALSE

USE_REACT = TRUE
USE_SIMPLIFIED_SDC = TRUE

EBASE = main

Expand Down
Loading