Skip to content

Commit

Permalink
Small changes
Browse files Browse the repository at this point in the history
  • Loading branch information
hannahbaumann committed Jan 23, 2025
1 parent 3fa964f commit 46465fb
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 1 deletion openfe/protocols/openmm_septop/equil_septop_settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,9 @@ class ComplexRestraintsSettings(RestraintsSettings):
class Config:
arbitrary_types_allowed = True

k_theta: FloatQuantity['kJ/(mol*rad**2)'] = 83.68 * unit.kilojoule_per_mole / unit.radians ** 2
# k_theta: FloatQuantity['kJ/(mol*rad**2)'] = 83.68 * unit.kilojoule_per_mole / unit.radians ** 2
k_theta: FloatQuantity[
'kJ/(mol*rad**2)'] = 836.8 * unit.kilojoule_per_mole / unit.radians ** 2


class LambdaSettings(SettingsBaseModel):
Expand Down
2 changes: 1 addition & 1 deletion openfe/protocols/openmm_septop/femto_restraints.py
Original file line number Diff line number Diff line change
Expand Up @@ -714,7 +714,7 @@ def create_boresch_restraint(

for key, value in [
("k_dist_a", k_distance),
("k_theta_a", k_theta * 2 * 10),
("k_theta_a", k_theta * 2),
("k_theta_b", k_theta),
("k_phi_a", k_theta),
("k_phi_b", k_theta),
Expand Down

0 comments on commit 46465fb

Please sign in to comment.