Skip to content
Open
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
3 changes: 3 additions & 0 deletions ipsuite/configuration_generation/packmol.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
"""Use packmole to create a periodic box"""

import logging
import os
import random

import ase
Expand Down Expand Up @@ -64,6 +65,7 @@ def run(self):
tolerance=self.tolerance,
density=self.density,
pbc=self.pbc,
verbose=bool(os.environ.get("IPSUITE_PACKMOL_VERBOSE", False)),
)
]

Expand Down Expand Up @@ -120,5 +122,6 @@ def run(self):
tolerance=self.tolerance,
density=self.density,
pbc=self.pbc,
verbose=bool(os.environ.get("IPSUITE_PACKMOL_VERBOSE", False)),
)
)