Skip to content

Commit

Permalink
remove print statement
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisjonesBSU committed Mar 26, 2024
1 parent 1cb8091 commit 3f761ed
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions flowermd/modules/welding/welding.py
Original file line number Diff line number Diff line change
Expand Up @@ -81,10 +81,8 @@ def _build(self):
interface.dihedrals.N = snap_L.dihedrals.N + snap_R.dihedrals.N
interface.dihedrals.M = 4
interface.pairs.N = snap_L.pairs.N + snap_R.pairs.N
# Set up box. Box edge is doubled along the interface axis direction,
# plus the gap
# Box edge is doubled along the interface axis plus the gap
axis_index = np.where(self.interface_axis != 0)[0]
print("Axis index:", axis_index)
interface.configuration.box = np.copy(snap_L.configuration.box)
interface.configuration.box[axis_index] *= 2
interface.configuration.box[axis_index] += self.gap - self.wall_sigma
Expand Down

0 comments on commit 3f761ed

Please sign in to comment.