I am attempting to write a simple lammps script in which I simulate the melting of iron, however when I run the script below, the potential energies of the atoms in my system does not change, telling me that my atoms are not moving at all I have tried many fixes, including changing the integration time, changing which command I use to ramp the temperature, changing the bounds of my simulation box, decreasing and increasing the number of atoms in my system, and more. I am sure that there is something basic I am missing as I am a beginner to this program please help.
Thanks,
Here is my script
Initialize simulation parameters
units metal
dimension 3
boundary p p p
atom_style atomic
Define the simulation box
lattice fcc 3.55
region box block 0 5 0 5 0 5 units lattice
create_box 1 box
create_atoms 1 box
Set the interatomic potential
pair_style eam/alloy
pair_coeff * * Fe_mm.eam.fs Fe
Define the initial temperature
velocity all create 300.0 87287 dist gaussian
Set simulation parameters
timestep 1.0e-12
thermo 100
thermo_style custom step temp pe etotal vol atoms press
Begin equilibration
reset_timestep 0
fix 1 all nve
run 1000
unfix 1
Begin temperature ramp
reset_timestep 0
fix 1 all langevin 1 10000 1e-12 79283
fix 2 all nve
run 10000
unfix 1
Output final configuration
dump 1 all atom 1000 final.dump
run 1