Vacancy formation Energy in URANIUM using the EAM Potential.

Hey,
I wanted to find the vacancy formation energy in Uranium using the EAM potential, but I am getting the same energy before and after the vacancy creation… Can you please check this let me know the error. Thank you…

---------- INITIALIZATION ----------

clear
units metal
dimension 3
boundary p p p
atom_style atomic

---------- LATTICE & REGION ----------

variable a equal 2.84
variable b equal 5.87
variable c equal 4.92

lattice custom 1.0 &
a1 {a} 0.0 0.0 & a2 0.0 {b} 0.0 &
a3 0.0 0.0 ${c} &
basis 0.0 0.0 0.0 &
basis 0.5 0.5 0.5

region simbox block 0 4 0 4 0 4
create_box 1 simbox
create_atoms 1 box

---------- FORCE FIELD ----------

pair_style meam
pair_coeff * * library-U.meam U U.meam U

---------- COMPUTES ----------

compute eng all pe/atom
compute eatoms all reduce sum c_eng

---------- OUTPUT SETTINGS ----------

reset_timestep 0
thermo 100
thermo_style custom step atoms pe press c_eatoms

---------- MINIMIZE PERFECT STRUCTURE ----------

dump 1 all custom 500 dump.perfect.* id type xs ys zs c_eng
min_style cg
minimize 1e-10 1e-10 5000 5000
undump 1

---------- STORE INITIAL ENERGY ----------

variable N equal count(all)
variable Ei equal c_eatoms
variable No equal v_N

---------- DELETE CENTRAL ATOM ----------

region center sphere 0.5 0.5 0.5 0.01 units lattice
group vacatom region center
delete_atoms group vacatom compress yes

---------- MINIMIZE DEFECTED STRUCTURE ----------

reset_timestep 0
dump 2 all custom 500 dump.vacancy.* id type xs ys zs c_eng
min_style cg
minimize 1e-10 1e-10 5000 5000
undump 2

---------------------- CALCULATE VACANCY ENERGY ------------------

variable Ef equal c_eatoms
variable Ev equal {Ef} - (({No}-1)/{No})*{Ei}

---------------------- PRINT RESULTS -----------------------------

print “-----------------------------------------------------”
print “Total atoms before deletion (N) = {No}" print "Initial energy (perfect) Ei = {Ei} eV”
print "Final energy (defected) Ef = {Ef} eV" print "Vacancy formation energy Ev = {Ev} eV

First off, your input is badly formatted and in parts unreadable. Can you read all of it??

Why not simply use?

compute eatoms all pe

Here is the problem. An equal style variable will always evaluate the expression new.
So when you refer to the variable Ei later it will use the current value of c_eatoms and that will be that of the system with the deleted atoms. To make this work the way you want, you need to enforce that c_eatoms will be evaluated and expanded when you define the variable. This can be done with:

variable Ei equals $(c_eatoms)

Re-read the documentation and carefully check the log file to see how this is different.