diff --git a/a3fe/run/lambda_window.py b/a3fe/run/lambda_window.py index 4e1c765..931117f 100644 --- a/a3fe/run/lambda_window.py +++ b/a3fe/run/lambda_window.py @@ -354,6 +354,7 @@ def _write_equilibrated_simfiles(self) -> None: equil_index = ( int( self._equil_time + * 1_000_000 / ( self.sims[0].engine_config.timestep * self.sims[0].engine_config.energy_frequency diff --git a/a3fe/tests/test_calc_set.py b/a3fe/tests/test_calc_set.py index 8a78abd..e07d9c9 100644 --- a/a3fe/tests/test_calc_set.py +++ b/a3fe/tests/test_calc_set.py @@ -43,7 +43,7 @@ def test_calc_set_analysis(calc_set): ) # Regression test for the results - assert results_exp.loc["t4l", "calc_dg"] == pytest.approx(5.2622, abs=1e-2) - assert results_exp.loc["t4l", "calc_er"] == pytest.approx(0.1138, abs=1e-2) + assert results_exp.loc["t4l", "calc_dg"] == pytest.approx(5.2850, abs=1e-2) + assert results_exp.loc["t4l", "calc_er"] == pytest.approx(0.0808, abs=1e-2) assert results_exp.loc["mdm2_short", "calc_dg"] == pytest.approx(7.9391, abs=1e-2) assert results_exp.loc["mdm2_short", "calc_er"] == pytest.approx(0.1679, abs=1e-2)