From 4ff0fac0c8be2ce7c3c72ecba1ce3c3b107367cc Mon Sep 17 00:00:00 2001 From: Luke Shingles Date: Fri, 28 Jun 2024 10:14:35 +0100 Subject: [PATCH] Update test_sfsolve.py --- pynonthermal/tests/test_sfsolve.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pynonthermal/tests/test_sfsolve.py b/pynonthermal/tests/test_sfsolve.py index f57bae4..414e625 100644 --- a/pynonthermal/tests/test_sfsolve.py +++ b/pynonthermal/tests/test_sfsolve.py @@ -45,7 +45,7 @@ def test_iron(): (26, 3, 0.7), ] - with pynonthermal.SpencerFanoSolver(emin_ev=1, emax_ev=16000, npts=4096, verbose=True) as sf: + with pynonthermal.SpencerFanoSolver(emin_ev=1, emax_ev=16000, npts=2048, verbose=True) as sf: for Z, ion_stage, n_ion in ions: sf.add_ionisation(Z, ion_stage, n_ion=n_ion) sf.add_ion_ltepopexcitation(Z, ion_stage, n_ion=n_ion)