Skip to content

Commit

Permalink
Update setup_and_run.py
Browse files Browse the repository at this point in the history
Fixed ewaldErrorTolerance typo
  • Loading branch information
brittyscience committed Feb 16, 2024
1 parent dae6379 commit a9cf439
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mdagent/tools/base_tools/simulation_tools/setup_and_run.py
Original file line number Diff line number Diff line change
Expand Up @@ -909,7 +909,7 @@ def unit_to_string(unit):
nonbondedCutoff = unit_to_string(nbCo)
constraints = self.sys_params.get("constraints", "None")
rigidWater = self.sys_params.get("rigidWater", False)
ewaldErrorTolerance = {self.sys_params.get("ewaldErrorTolerance", 0.0005)}
ewaldErrorTolerance = self.sys_params.get("ewaldErrorTolerance", 0.0005)
constraintTolerance = self.sys_params.get("constraintTolerance", None)
hydrogenMass = self.sys_params.get("hydrogenMass", None)
solvate = self.sys_params.get("solvate", False)
Expand Down

0 comments on commit a9cf439

Please sign in to comment.