Skip to content
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
1 change: 1 addition & 0 deletions a3fe/run/lambda_window.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions a3fe/tests/test_calc_set.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Loading