forked from lijiext/lammps
37 lines
863 B
Plaintext
37 lines
863 B
Plaintext
|
# 3d Lennard-Jones melt
|
||
|
#
|
||
|
# This example requires that the KIM Portable Model (PM)
|
||
|
# SW_StillingerWeber_1985_Si__MO_405512056662_005
|
||
|
# is installed. This can be done with the command
|
||
|
# kim-api-collections-management install user SW_StillingerWeber_1985_Si__MO_405512056662_005
|
||
|
# Or, see https://openkim.org/doc/obtaining-models for alternative options.
|
||
|
#
|
||
|
|
||
|
variable x index 1
|
||
|
variable y index 1
|
||
|
variable z index 1
|
||
|
|
||
|
variable xx equal 20*$x
|
||
|
variable yy equal 20*$y
|
||
|
variable zz equal 20*$z
|
||
|
|
||
|
kim_init SW_StillingerWeber_1985_Si__MO_405512056662_005 real
|
||
|
|
||
|
lattice fcc 4.4300
|
||
|
region box block 0 ${xx} 0 ${yy} 0 ${zz}
|
||
|
create_box 1 box
|
||
|
create_atoms 1 box
|
||
|
|
||
|
kim_interactions Si
|
||
|
|
||
|
mass 1 39.95
|
||
|
velocity all create 200.0 232345 loop geom
|
||
|
|
||
|
neighbor 0.3 bin
|
||
|
neigh_modify delay 0 every 1 check yes
|
||
|
|
||
|
fix 1 all nve
|
||
|
#fix 1 all npt temp 1.0 1.0 1.0 iso 1.0 1.0 3.0
|
||
|
|
||
|
run 100
|