From 7856c8ec1c04810d6ef824335a971d58c3c1176b Mon Sep 17 00:00:00 2001 From: Michael Zingale Date: Mon, 19 Jun 2023 13:50:11 -0400 Subject: [PATCH] remove references to EXTRA_THERMO this is now handled automatically via a struct --- Docs/source/FlowChart.rst | 3 +-- Exec/Make.Castro | 12 ------------ 2 files changed, 1 insertion(+), 14 deletions(-) diff --git a/Docs/source/FlowChart.rst b/Docs/source/FlowChart.rst index 419c58b877..e9c69ebf70 100644 --- a/Docs/source/FlowChart.rst +++ b/Docs/source/FlowChart.rst @@ -56,8 +56,7 @@ The time-integration method used is controlled by order integration implemented. At the moment, this does not support multilevel domains. Note: because of differences in the interfaces with the default Strang method, you must compile with ``USE_TRUE_SDC = TRUE`` for this - method to work (in particular, this defines ``EXTRA_THERMO`` which enables some - additional EOS derivatives). + method to work. * ``time_integration_method = 3``: this is the simplified SDC method described above that uses the CTU hydro advection and an ODE diff --git a/Exec/Make.Castro b/Exec/Make.Castro index 3b0b5cb2ec..4a645154ef 100644 --- a/Exec/Make.Castro +++ b/Exec/Make.Castro @@ -186,18 +186,6 @@ endif ifeq ($(USE_REACT), TRUE) Bdirs += Source/reactions DEFINES += -DREACTIONS - - ifeq ($(USE_TRUE_SDC), TRUE) - # we need the compositional derivatives for SDC - DEFINES += -DEXTRA_THERMO - endif - - ifeq ($(USE_SIMPLIFIED_SDC), TRUE) - # we need the compositional derivatives for SDC - DEFINES += -DEXTRA_THERMO - # we only implement this for C++ reactions - endif - endif ifeq ($(USE_REACT_SPARSE_JACOBIAN), TRUE)