Skip to content

Commit

Permalink
chore: Refactor StabilityTest class and update temperature calculatio…
Browse files Browse the repository at this point in the history
…n in protocols.py (#29)
  • Loading branch information
wiederm authored Jun 5, 2024
1 parent 40b7065 commit ad23069
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion guardowl/protocols.py
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ def _setup_simulation(
log.info("Running Simulated Annealing MD...")
# every 100 steps raise the temperature by 10 K, ending at simulation temperatue
for temp in np.linspace(
0, parameters.temperature.unit_in_quantity(unit.kelvin), 10
0, parameters.temperature, 10
):
sim.step(100)
temp = unit.Quantity(temp, unit.kelvin)
Expand Down

0 comments on commit ad23069

Please sign in to comment.