Nice to meet you.
I want to do do a NEB calculation with one intermediate replica specified in Lammps (i.e. I want to specify one replica at reaction coordinate 0.5), but the calculation diverges. Also, I want to do the calculation with 31 replicas.
I am using the file-style of “each” in the neb command, am I using it incorrectly?
The working directory has relaxed_initial.pos, relaxed_final.pos.15, relaxed_final.pos.30, FeP_mm.eam.fs.
The execution commands and input file are as follows.
-----------------------------input file start----------------------------------
units metal
atom_style atomic
atom_modify map array
boundary p p p
neighbor 2.0 bin
neigh_modify delay 1 every 1
read_data relaxed_initial.pos
mass 1 55.845
pair_style eam/fs
pair_coeff * * FeP_mm.eam.fs Fe
compute ene all pe/atom pair
variable u uloop 1000
dump 1 all custom 500 NEB.dump.$u id type x y z c_ene
dump_modify 1 format line “%d %d %g %g %g %20.15g”
fix 1 all neb 0.1 parallel ideal
thermo 1
thermo_style custom step temp etotal ke pe press
timestep 0.002
min_style quickmin
variable i index 15 30
neb 0.0 0.001 10000 10000 10 each relaxed_final.pos.$i
------------------------------------input file end------------------------------------------
execution command :
OMPI_MCA_rmaps_base_oversubscribe=1 mpirun -np 31 /home/lammps-29Oct20/src/lmp_mpi -partition 31x1 -in in.neb