-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
LAMMPS: Move commands to separate file
- Loading branch information
1 parent
1e3f16a
commit 9ecaf8d
Showing
2 changed files
with
65 additions
and
31 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
LAMMPS_THERMO_STYLE = """\ | ||
thermo_style custom step temp pe etotal pxx pxy pxz pyy pyz pzz vol | ||
thermo_modify format float %20.15g""" | ||
|
||
|
||
LAMMPS_THERMO = "thermo {{thermo}}" | ||
|
||
|
||
LAMMPS_RUN = "run {{run}}" | ||
|
||
|
||
LAMMPS_MINIMIZE = """\ | ||
min_style {{min_style}} | ||
minimize {{etol}} {{ftol}} {{maxiter}} {{maxeval}}""" | ||
|
||
|
||
LAMMPS_MINIMIZE_VOLUME = "fix ensemble all box/relax iso 0.0" |