I am struggling to get ECIs for Ti-Al system. For now, I am considering only the configurational entropy.
I am using quantum espresso as my DFT engine. I have checked that kinetic-energy cutoff of 80Ry and KPPRA=1000, for both hcp and fcc lattices of Ti and Al, give me accuracy of 5 significant digits in the calculation of system’s energies (I hope this is enough for the full concentration range 0-100% of Ti in Al).
For fcc lattice I have generated 64 structures, but 11 of them I marked as errors (touch */error) as checkrelax was showing the amount of relaxation to be greater than 0.1 for those.
For hcp lattice I have 52 structures and 6 of them show the amount of relaxation to be greater than 0.1.
In the maps.log file I still see "New ground states predicted" and the crossvalidation score is greater than 0.025.
Should I keep waiting for the problem to resolve it selve? I was expecting that 30-50 structures should be enough as the manual says.
PS.
To use checkrelax I had to add these lines to the runstruct_qe that came with ATAT
# Abstract the final atomic coordinates to "str_relax.out" file
cat pwscf.out | getlines -jbt "Begin final coordinates" "End final coordinates" > pw.tmp
echo "1 0 0" > str_relax.tmp
echo "0 1 0" >> str_relax.tmp
echo "0 0 1" >> str_relax.tmp
cat pw.tmp | getlines -jaf "CELL_PARAMETERS" | head -n 3 | awk '{print $1,$2,$3}' >> str_relax.tmp
cat pw.tmp | getlines -jaf "ATOMIC_POSITIONS" | awk '{print $2,$3,$4,$1}' >> str_relax.tmp
cat str_relax.tmp | cellcvrt -f -sig=9 > str_relax.out
rm pw.tmp str_relax.tmp