Skip to content

Commit

Permalink
switched to booleans
Browse files Browse the repository at this point in the history
  • Loading branch information
jrudz committed Feb 28, 2024
1 parent 6e55ae6 commit 92c1dea
Showing 1 changed file with 13 additions and 13 deletions.
26 changes: 13 additions & 13 deletions simulationworkflowschema/molecular_dynamics.py
Original file line number Diff line number Diff line change
Expand Up @@ -392,7 +392,7 @@ class BarostatParameters(ArchiveSection):
)


class Lambdas(MSection):
class Lambdas(ArchiveSection):
"""
Section for storing all lambda parameters for free energy perturbation
"""
Expand Down Expand Up @@ -494,50 +494,50 @@ class FreeEnergyCalculationParameters(ArchiveSection):
)

initial_state_vdw = Quantity(
type=MEnum("on", "off"),
type=bool,
shape=[],
description="""
Specifies whether vdw interactions are on or off in the initial state (i.e., lambda = 0).
Specifies whether vdw interactions are on (True) or off (False) in the initial state (i.e., lambda = 0).
""",
)

final_state_vdw = Quantity(
type=MEnum("on", "off"),
type=bool,
shape=[],
description="""
Specifies whether vdw interactions are on or off in the final state (i.e., lambda = 0).
Specifies whether vdw interactions are on (True) or off (False) in the final state (i.e., lambda = 0).
""",
)

initial_state_coloumb = Quantity(
type=MEnum("on", "off"),
type=bool,
shape=[],
description="""
Specifies whether vdw interactions are on or off in the initial state (i.e., lambda = 0).
Specifies whether vdw interactions are on (True) or off (False) in the initial state (i.e., lambda = 0).
""",
)

final_state_coloumb = Quantity(
type=MEnum("on", "off"),
type=bool,
shape=[],
description="""
Specifies whether vdw interactions are on or off in the final state (i.e., lambda = 0).
Specifies whether vdw interactions are on (True) or off (False) in the final state (i.e., lambda = 0).
""",
)

initial_state_bonded = Quantity(
type=MEnum("on", "off"),
type=bool,
shape=[],
description="""
Specifies whether bonded interactions are on or off in the initial state (i.e., lambda = 0).
Specifies whether bonded interactions are on (True) or off (False) in the initial state (i.e., lambda = 0).
""",
)

final_state_bonded = Quantity(
type=MEnum("on", "off"),
type=bool,
shape=[],
description="""
Specifies whether bonded interactions are on or off in the final state (i.e., lambda = 0).
Specifies whether bonded interactions are on (True) or off (False) in the final state (i.e., lambda = 0).
""",
)

Expand Down

0 comments on commit 92c1dea

Please sign in to comment.