40 lines
939 B
Plaintext
40 lines
939 B
Plaintext
# 3d Lennard-Jones melt - MDI driver script
|
|
|
|
variable x index 5
|
|
variable y index 5
|
|
variable z index 5
|
|
|
|
variable rho index 0.7 0.8 0.9
|
|
|
|
label LOOP
|
|
|
|
units lj
|
|
atom_style atomic
|
|
atom_modify map array
|
|
|
|
read_data data.series.${rho}
|
|
|
|
displace_atoms all random 0.1 0.1 0.1 48294
|
|
|
|
neighbor 0.3 bin
|
|
neigh_modify delay 0 every 1 check yes
|
|
|
|
fix 1 all mdi/qm add no virial yes
|
|
variable evirial equal (f_1[1]+f_1[2]+f_1[3])/3
|
|
|
|
thermo_style custom step temp f_1 v_evirial f_1[1] f_1[2] f_1[3]
|
|
|
|
mdi plugin lammps mdi "-role ENGINE -name LMP2 -method LINK" &
|
|
infile in.series.engine &
|
|
extra "-log log.series.engine.plugin" &
|
|
command "run 0"
|
|
|
|
write_dump all custom dump.series.driver.plugin &
|
|
id type x y z f_1[1] f_1[2] f_1[3] modify sort id append yes
|
|
|
|
clear
|
|
|
|
next rho
|
|
|
|
jump SELF LOOP
|