From 485e5843cb25799f71817a3b63f4b2562f53b5fe Mon Sep 17 00:00:00 2001 From: Khanak Bhargava Date: Fri, 10 Jan 2025 15:01:47 -0500 Subject: [PATCH] Removing do_acc which is no longer used --- Docs/source/design.rst | 2 +- unit_test/test_jac/_parameters | 1 - unit_test/test_react/_parameters | 1 - unit_test/test_react/old/inputs_3alpha.BS.ACC | 22 ------------- unit_test/test_react/old/inputs_aprox13.1 | 19 ----------- unit_test/test_react/old/inputs_aprox13.128 | 18 ----------- unit_test/test_react/old/inputs_aprox13.2 | 19 ----------- unit_test/test_react/old/inputs_aprox13.256 | 16 ---------- unit_test/test_react/old/inputs_aprox13.32 | 18 ----------- unit_test/test_react/old/inputs_aprox13.64 | 18 ----------- .../test_react/old/inputs_aprox13.BS.ACC | 26 --------------- unit_test/test_react/old/inputs_aprox13.VBDF | 17 ---------- .../test_react/old/inputs_aprox13_tinystep | 18 ----------- unit_test/test_react/old/inputs_aprox19.BS | 30 ----------------- unit_test/test_react/old/inputs_ignition.128 | 15 --------- unit_test/test_react/old/inputs_ignition.32 | 15 --------- unit_test/test_react/old/inputs_ignition.64 | 15 --------- .../test_react/old/inputs_reaclib_cburn.128 | 32 ------------------- .../test_react/old/inputs_reaclib_cburn.32 | 32 ------------------- .../test_react/old/inputs_reaclib_cburn.64 | 32 ------------------- .../test_react/old/inputs_reaclib_urca.32 | 30 ----------------- .../test_react/old/inputs_reaclib_urca.64 | 30 ----------------- unit_test/test_sdc/_parameters | 2 +- 23 files changed, 2 insertions(+), 426 deletions(-) delete mode 100644 unit_test/test_react/old/inputs_3alpha.BS.ACC delete mode 100644 unit_test/test_react/old/inputs_aprox13.1 delete mode 100644 unit_test/test_react/old/inputs_aprox13.128 delete mode 100644 unit_test/test_react/old/inputs_aprox13.2 delete mode 100644 unit_test/test_react/old/inputs_aprox13.256 delete mode 100644 unit_test/test_react/old/inputs_aprox13.32 delete mode 100644 unit_test/test_react/old/inputs_aprox13.64 delete mode 100644 unit_test/test_react/old/inputs_aprox13.BS.ACC delete mode 100644 unit_test/test_react/old/inputs_aprox13.VBDF delete mode 100644 unit_test/test_react/old/inputs_aprox13_tinystep delete mode 100644 unit_test/test_react/old/inputs_aprox19.BS delete mode 100644 unit_test/test_react/old/inputs_ignition.128 delete mode 100644 unit_test/test_react/old/inputs_ignition.32 delete mode 100644 unit_test/test_react/old/inputs_ignition.64 delete mode 100644 unit_test/test_react/old/inputs_reaclib_cburn.128 delete mode 100644 unit_test/test_react/old/inputs_reaclib_cburn.32 delete mode 100644 unit_test/test_react/old/inputs_reaclib_cburn.64 delete mode 100644 unit_test/test_react/old/inputs_reaclib_urca.32 delete mode 100644 unit_test/test_react/old/inputs_reaclib_urca.64 diff --git a/Docs/source/design.rst b/Docs/source/design.rst index d1f9a1df9e..6de76547e1 100644 --- a/Docs/source/design.rst +++ b/Docs/source/design.rst @@ -26,7 +26,7 @@ and the generic solvers: righthand side of the network, as the actual integrators are decoupled from the network. -* ``neutrinos/``: neutino loss source terms for the network energy equation. +* ``neutrinos/``: neutrino loss source terms for the network energy equation. * ``opacity/``: opacity routines for radiation transport diff --git a/unit_test/test_jac/_parameters b/unit_test/test_jac/_parameters index 059fa54752..918582dd7b 100644 --- a/unit_test/test_jac/_parameters +++ b/unit_test/test_jac/_parameters @@ -12,4 +12,3 @@ tmax real 0.1e0 small_temp real 1.e5 small_dens real 1.e5 -do_acc int 1 diff --git a/unit_test/test_react/_parameters b/unit_test/test_react/_parameters index 059fa54752..918582dd7b 100644 --- a/unit_test/test_react/_parameters +++ b/unit_test/test_react/_parameters @@ -12,4 +12,3 @@ tmax real 0.1e0 small_temp real 1.e5 small_dens real 1.e5 -do_acc int 1 diff --git a/unit_test/test_react/old/inputs_3alpha.BS.ACC b/unit_test/test_react/old/inputs_3alpha.BS.ACC deleted file mode 100644 index 02c551804e..0000000000 --- a/unit_test/test_react/old/inputs_3alpha.BS.ACC +++ /dev/null @@ -1,22 +0,0 @@ -&PROBIN - test_set = "gr0_3d.small" - - dens_min = 1.d4 - dens_max = 1.d7 - temp_min = 5.d7 - temp_max = 5.d8 - - tmax = 1.d-3 - - xin_file = "xin.3alpha_plus_o" - run_prefix = "react_3alpha_" - - scaling_method = 2 - - use_timestep_estimator = T - - ode_method = 1 - ode_max_steps = 40000 - - safety_factor = 10.0 -/ diff --git a/unit_test/test_react/old/inputs_aprox13.1 b/unit_test/test_react/old/inputs_aprox13.1 deleted file mode 100644 index 62eefc3498..0000000000 --- a/unit_test/test_react/old/inputs_aprox13.1 +++ /dev/null @@ -1,19 +0,0 @@ -&PROBIN - test_set = "gr0_3d.1" - - small_dens = 1.0d0 - - dens_min = 1.d4 - dens_max = 1.d8 - temp_min = 5.d7 - temp_max = 5.d9 - - tmax = 1.d-3 - - call_eos_in_rhs = T - - xin_file = "xin.aprox13.1" - run_prefix = "react_aprox13_1_" - - use_tables = T -/ diff --git a/unit_test/test_react/old/inputs_aprox13.128 b/unit_test/test_react/old/inputs_aprox13.128 deleted file mode 100644 index 4c9089905c..0000000000 --- a/unit_test/test_react/old/inputs_aprox13.128 +++ /dev/null @@ -1,18 +0,0 @@ -&PROBIN - test_set = "gr0_3d.128" - - small_dens = 1.0d0 - - dens_min = 1.d4 - dens_max = 1.d8 - temp_min = 5.d7 - temp_max = 5.d9 - - tmax = 1.d-3 - - call_eos_in_rhs = T - - xin_file = "xin.aprox13.128" - run_prefix = "react_aprox13_128_" - -/ diff --git a/unit_test/test_react/old/inputs_aprox13.2 b/unit_test/test_react/old/inputs_aprox13.2 deleted file mode 100644 index 0a96f07560..0000000000 --- a/unit_test/test_react/old/inputs_aprox13.2 +++ /dev/null @@ -1,19 +0,0 @@ -&PROBIN - test_set = "gr0_3d.2" - - small_dens = 1.0d0 - - dens_min = 1.d4 - dens_max = 1.d8 - temp_min = 5.d7 - temp_max = 5.d9 - - tmax = 1.d-3 - - call_eos_in_rhs = T - - xin_file = "xin.aprox13.2" - run_prefix = "react_aprox13_2_" - - use_tables = T -/ diff --git a/unit_test/test_react/old/inputs_aprox13.256 b/unit_test/test_react/old/inputs_aprox13.256 deleted file mode 100644 index 063fd6f09b..0000000000 --- a/unit_test/test_react/old/inputs_aprox13.256 +++ /dev/null @@ -1,16 +0,0 @@ -&PROBIN - test_set = "gr0_3d.256" - - small_dens = 1.0d0 - - dens_min = 1.d4 - dens_max = 1.d8 - temp_min = 5.d7 - temp_max = 5.d9 - - tmax = 1.d-3 - - xin_file = "xin.aprox13.256" - run_prefix = "react_aprox13_256_" - -/ diff --git a/unit_test/test_react/old/inputs_aprox13.32 b/unit_test/test_react/old/inputs_aprox13.32 deleted file mode 100644 index 8bce957450..0000000000 --- a/unit_test/test_react/old/inputs_aprox13.32 +++ /dev/null @@ -1,18 +0,0 @@ -&PROBIN - test_set = "gr0_3d.medium" - - small_dens = 1.0d0 - - dens_min = 1.d4 - dens_max = 1.d8 - temp_min = 5.d7 - temp_max = 5.d9 - - tmax = 1.d-3 - - call_eos_in_rhs = T - - xin_file = "xin.aprox13.32" - run_prefix = "react_aprox13_32_" - -/ diff --git a/unit_test/test_react/old/inputs_aprox13.64 b/unit_test/test_react/old/inputs_aprox13.64 deleted file mode 100644 index 07f8446cf8..0000000000 --- a/unit_test/test_react/old/inputs_aprox13.64 +++ /dev/null @@ -1,18 +0,0 @@ -&PROBIN - test_set = "gr0_3d.64" - - small_dens = 1.0d0 - - dens_min = 1.d4 - dens_max = 1.d8 - temp_min = 5.d7 - temp_max = 5.d9 - - tmax = 1.d-3 - - call_eos_in_rhs = T - - xin_file = "xin.aprox13.64" - run_prefix = "react_aprox13_64_" - -/ diff --git a/unit_test/test_react/old/inputs_aprox13.BS.ACC b/unit_test/test_react/old/inputs_aprox13.BS.ACC deleted file mode 100644 index a0ed55df6d..0000000000 --- a/unit_test/test_react/old/inputs_aprox13.BS.ACC +++ /dev/null @@ -1,26 +0,0 @@ -&PROBIN - test_set = "gr0_3d.small" - - dens_min = 1.d6 - dens_max = 1.d8 - temp_min = 5.d7 - temp_max = 5.d9 - - tmax = 1.d-3 - - xin_file = "xin.aprox13" - run_prefix = "react_aprox13_" - - do_acc = 1 - - scaling_method = 2 - - use_tables = T - - call_eos_in_rhs = T - do_constant_volume_burn = T - - ode_method = 2 - - ode_max_steps=100000 -/ diff --git a/unit_test/test_react/old/inputs_aprox13.VBDF b/unit_test/test_react/old/inputs_aprox13.VBDF deleted file mode 100644 index 67d309a696..0000000000 --- a/unit_test/test_react/old/inputs_aprox13.VBDF +++ /dev/null @@ -1,17 +0,0 @@ -&PROBIN - test_set = "gr0_3d.small" - - small_dens = 1.0d0 - - dens_min = 1.d6 - dens_max = 1.d8 - temp_min = 2.d7 - temp_max = 2.d8 - - tmax = 1.d-3 - - xin_file = "xin.aprox13" - run_prefix = "react_aprox13_" - - -/ diff --git a/unit_test/test_react/old/inputs_aprox13_tinystep b/unit_test/test_react/old/inputs_aprox13_tinystep deleted file mode 100644 index af04573ca8..0000000000 --- a/unit_test/test_react/old/inputs_aprox13_tinystep +++ /dev/null @@ -1,18 +0,0 @@ -&PROBIN - test_set = "gr0_3d.small" - - small_dens = 1.0d0 - - dens_min = 1.d4 - dens_max = 1.d8 - temp_min = 5.d7 - temp_max = 5.d9 - - tmax = 1.d-10 - - call_eos_in_rhs = T - - xin_file = "xin.aprox13.small" - run_prefix = "react_aprox13_" - -/ diff --git a/unit_test/test_react/old/inputs_aprox19.BS b/unit_test/test_react/old/inputs_aprox19.BS deleted file mode 100644 index 14a5b41ac2..0000000000 --- a/unit_test/test_react/old/inputs_aprox19.BS +++ /dev/null @@ -1,30 +0,0 @@ -&PROBIN - test_set = "gr0_3d.small" - - dens_min = 1.d5 - dens_max = 5.d8 - temp_min = 5.d7 - temp_max = 5.d8 - - - tmax = 1.d-9 - - xin_file = "xin.aprox19" - run_prefix = "react_aprox19_" - - scaling_method = 2 - - jacobian = 2 - - rtol_spec = 1.d-5 - atol_spec = 1.d-5 - - call_eos_in_rhs = T - - use_timestep_estimator = T - - ode_max_steps = 25000 - - small_x_safe = 1.e-15 - -/ diff --git a/unit_test/test_react/old/inputs_ignition.128 b/unit_test/test_react/old/inputs_ignition.128 deleted file mode 100644 index 16a40858e1..0000000000 --- a/unit_test/test_react/old/inputs_ignition.128 +++ /dev/null @@ -1,15 +0,0 @@ -&PROBIN - test_set = "gr0_3d.128" - - dens_min = 1.d8 - dens_max = 2.d9 - temp_min = 5.d7 - temp_max = 7.d8 - - tmax = 1.0d-1 - - call_eos_in_rhs = T - - xin_file = "xin.ignition.128" - run_prefix = "react_ignition_128_" -/ diff --git a/unit_test/test_react/old/inputs_ignition.32 b/unit_test/test_react/old/inputs_ignition.32 deleted file mode 100644 index d3f430275b..0000000000 --- a/unit_test/test_react/old/inputs_ignition.32 +++ /dev/null @@ -1,15 +0,0 @@ -&PROBIN - test_set = "gr0_3d.32" - - dens_min = 1.d8 - dens_max = 2.d9 - temp_min = 5.d7 - temp_max = 7.d8 - - tmax = 1.0d-1 - - call_eos_in_rhs = T - - xin_file = "xin.ignition.32" - run_prefix = "react_ignition_32_" -/ diff --git a/unit_test/test_react/old/inputs_ignition.64 b/unit_test/test_react/old/inputs_ignition.64 deleted file mode 100644 index 4a9ee0a662..0000000000 --- a/unit_test/test_react/old/inputs_ignition.64 +++ /dev/null @@ -1,15 +0,0 @@ -&PROBIN - test_set = "gr0_3d.64" - - dens_min = 1.d8 - dens_max = 2.d9 - temp_min = 5.d7 - temp_max = 7.d8 - - tmax = 1.0d-1 - - call_eos_in_rhs = T - - xin_file = "xin.ignition.64" - run_prefix = "react_ignition_64_" -/ diff --git a/unit_test/test_react/old/inputs_reaclib_cburn.128 b/unit_test/test_react/old/inputs_reaclib_cburn.128 deleted file mode 100644 index 747629c72e..0000000000 --- a/unit_test/test_react/old/inputs_reaclib_cburn.128 +++ /dev/null @@ -1,32 +0,0 @@ -&PROBIN - test_set = "gr0_3d.128" - - dens_min = 1.d-3 - dens_max = 5.d9 - temp_min = 1.d7 - temp_max = 6.d8 - - tmax = 1.0d-1 - - xin_file = "xin.reaclib_cburn.128" - run_prefix = "react_reaclib_cburn_128_" - - burner_verbose = .false. - - ! Set which jacobian to use - ! 1 = analytic jacobian - ! 2 = numerical jacobian - jacobian = 1 - - renormalize_abundances = .false. - - call_eos_in_rhs = T - - small_x = 1.d-16 - - rtol_spec = 1.0d-12 - rtol_enuc = 1.0d-9 - atol_spec = 1.0d-12 - atol_enuc = 1.0d-9 - -/ diff --git a/unit_test/test_react/old/inputs_reaclib_cburn.32 b/unit_test/test_react/old/inputs_reaclib_cburn.32 deleted file mode 100644 index d423f7671c..0000000000 --- a/unit_test/test_react/old/inputs_reaclib_cburn.32 +++ /dev/null @@ -1,32 +0,0 @@ -&PROBIN - test_set = "gr0_3d.32" - - dens_min = 1.d-3 - dens_max = 5.d9 - temp_min = 1.d7 - temp_max = 6.d8 - - tmax = 1.0d-1 - - xin_file = "xin.reaclib_cburn.32" - run_prefix = "react_reaclib_cburn_32_" - - burner_verbose = .false. - - ! Set which jacobian to use - ! 1 = analytic jacobian - ! 2 = numerical jacobian - jacobian = 1 - - renormalize_abundances = .false. - - call_eos_in_rhs = T - - small_x = 1.d-16 - - rtol_spec = 1.0d-12 - rtol_enuc = 1.0d-9 - atol_spec = 1.0d-12 - atol_enuc = 1.0d-9 - -/ diff --git a/unit_test/test_react/old/inputs_reaclib_cburn.64 b/unit_test/test_react/old/inputs_reaclib_cburn.64 deleted file mode 100644 index 53adb92d25..0000000000 --- a/unit_test/test_react/old/inputs_reaclib_cburn.64 +++ /dev/null @@ -1,32 +0,0 @@ -&PROBIN - test_set = "gr0_3d.64" - - dens_min = 1.d-3 - dens_max = 5.d9 - temp_min = 1.d7 - temp_max = 6.d8 - - tmax = 1.0d-1 - - xin_file = "xin.reaclib_cburn.64" - run_prefix = "react_reaclib_cburn_64_" - - burner_verbose = .false. - - ! Set which jacobian to use - ! 1 = analytic jacobian - ! 2 = numerical jacobian - jacobian = 1 - - renormalize_abundances = .false. - - call_eos_in_rhs = T - - small_x = 1.d-16 - - rtol_spec = 1.0d-12 - rtol_enuc = 1.0d-9 - atol_spec = 1.0d-12 - atol_enuc = 1.0d-9 - -/ diff --git a/unit_test/test_react/old/inputs_reaclib_urca.32 b/unit_test/test_react/old/inputs_reaclib_urca.32 deleted file mode 100644 index a0d4ea273e..0000000000 --- a/unit_test/test_react/old/inputs_reaclib_urca.32 +++ /dev/null @@ -1,30 +0,0 @@ -&PROBIN - test_set = "gr0_3d.32" - - dens_min = 1.d-3 - dens_max = 5.d9 - temp_min = 1.d7 - temp_max = 6.d8 - - tmax = 1.0d-1 - - xin_file = "xin.reaclib_urca.32" - run_prefix = "react_reaclib_urca_32_" - - burner_verbose = .false. - - ! Set which jacobian to use - ! 1 = analytic jacobian - ! 2 = numerical jacobian - jacobian = 1 - - renormalize_abundances = .false. - - call_eos_in_rhs = T - - rtol_spec = 1.0d-12 - rtol_enuc = 1.0d-9 - atol_spec = 1.0d-12 - atol_enuc = 1.0d-9 - -/ diff --git a/unit_test/test_react/old/inputs_reaclib_urca.64 b/unit_test/test_react/old/inputs_reaclib_urca.64 deleted file mode 100644 index 795660e9df..0000000000 --- a/unit_test/test_react/old/inputs_reaclib_urca.64 +++ /dev/null @@ -1,30 +0,0 @@ -&PROBIN - test_set = "gr0_3d.64" - - dens_min = 1.d-3 - dens_max = 5.d9 - temp_min = 1.d7 - temp_max = 6.d8 - - tmax = 1.0d-1 - - xin_file = "xin.reaclib_urca.64" - run_prefix = "react_reaclib_urca_64_" - - burner_verbose = .false. - - ! Set which jacobian to use - ! 1 = analytic jacobian - ! 2 = numerical jacobian - jacobian = 1 - - renormalize_abundances = .false. - - call_eos_in_rhs = T - - rtol_spec = 1.0d-12 - rtol_enuc = 1.0d-9 - atol_spec = 1.0d-12 - atol_enuc = 1.0d-9 - -/ diff --git a/unit_test/test_sdc/_parameters b/unit_test/test_sdc/_parameters index 49ed14bf92..1b0bb5980f 100644 --- a/unit_test/test_sdc/_parameters +++ b/unit_test/test_sdc/_parameters @@ -5,6 +5,7 @@ dens_max real 1.e9 temp_min real 1.e6 temp_max real 1.e15 +# uniform composition uniform_xn int 0 tmax real 0.1e0 @@ -12,4 +13,3 @@ tmax real 0.1e0 small_temp real 1.e5 small_dens real 1.e3 -do_acc int 1