Total energy convergence
In this tutorial we will show how to converge a quantity of interest (the total energy) with respect to the parameters that define the real-space grid. For this we will use two examples, the Nitrogen atom from the Basic input options tutorial, and a methane molecule.
Nitrogen atom: finding a good spacing
The key parameter of a real-space calculation is the spacing between the points of the mesh. The default option in Octopus is to use a Cartesian grid. This is a regular grid where the spacing along each Cartesian direction is the same. The first step in any calculation should then be making sure that this spacing is good enough for our purposes. This should be done through a convergence study, very similar to the ones performed in plane-wave calculations.
The needed spacing essentially depends on the pseudopotentials that are being used. The idea is to repeat a series of ground-state calculations, with identical input files except for the grid spacing. There are many different ways of doing it, the simplest one being to change the input file by hand and run Octopus each time. Another option is to use a little bash script like the one bellow.
As a first example, we will use the Nitrogen atom from the previous tutorial, so make sure you have the corresponding inp
and N.xyz
files in your working directory. Next, create a file called spacing.sh
with the following content:
#!/bin/bash
echo "#Sp Energy s_eigen p_eigen" > spacing.log
list="0.26 0.24 0.22 0.20 0.18 0.16 0.14"
export OCT_PARSE_ENV=1
for Spacing in $list
do
export OCT_Spacing=$(echo $Spacing*1.8897261328856432 | bc)
$OCTOPUS >& out-$Spacing
energy=`grep Total static/info | head -1 | cut -d "=" -f 2`
seigen=`grep "1 --" static/info | head -1 | awk '{print $3}'`
peigen=`grep "2 --" static/info | head -1 | awk '{print $3}'`
echo $Spacing $energy $seigen $peigen >> spacing.log
rm -rf restart
done
unset OCT_Spacing
What this script does is quite simple: it runs Octopus for a list of spacings (0.26, 0.24, …, 0.14) and after each calculation it collects the values of the total energy and of the eigenvalues, and prints them to a file called spacing.log . In order to change the value of the spacing between each calculation, it uses the feature that one can override variables in the inp file by defining them as environment variables in the shell. Note that we unset the variable OCT_Spacing at the end of the script, to avoid it to remaining defined in case you run the script directly in the shell.
Now, to run the script type
source spacing.sh
(NOT
sh spacing.sh
or
bash spacing.sh
!).
Note that for this to work, the octopus executable must be found in the shell path. If that is not the case, you can replace
octopus >& out-$Spacing
with the actual path to the executable
/path/to/octopus >& out-$Spacing
Once the script finishes running, the spacing.log file should look something like this:
#Sp Energy s_eigen p_eigen
0.26 -256.59213179 -19.851724 -6.757584
0.24 -260.25614052 -18.814241 -7.081600
0.22 -262.57033689 -18.192766 -7.311321
0.20 -262.91105590 -18.098579 -7.357661
0.18 -262.19593061 -18.286207 -7.290490
0.16 -261.78224630 -18.392571 -7.247292
0.14 -261.78536939 -18.389733 -7.248998
You can also plot the results from the file in your favorite plotting program, e.g. gnuplot .
The results, for this particular example, are shown in the figure. In this figure we are actually plotting the error with respect to the most accurate results (smallest spacing). That means that we are plotting the ‘‘‘difference’’’ between the values for a given spacing and the values for a spacing of 0.14 Å. So, in reading it, note that the most accurate results are at the left (smallest spacing). A rather good spacing for this nitrogen pseudopotential seems to be 0.18 Å. However, as we are usually not interested in total energies, but in energy differences, probably a larger one may also be used without compromising the results.
Methane molecule
We will now move on to a slightly more complex system, the methane molecule CH4, and add a convergence study with respect to the box size.
Input
As usual, the first thing to do is create an input file for this system. From our basic chemistry class we know that methane has a tetrahedral structure. The only other thing required to define the geometry is the bond length between the carbon and the hydrogen atoms. If we put the carbon atom at the origin, the hydrogen atoms have the coordinates given in the following input file:
CalculationMode = gs
UnitsOutput = eV_Angstrom
Radius = 3.5*angstrom
Spacing = 0.22*angstrom
CH = 1.2*angstrom
%Coordinates
"C" | 0 | 0 | 0
"H" | CH/sqrt(3) | CH/sqrt(3) | CH/sqrt(3)
"H" | -CH/sqrt(3) |-CH/sqrt(3) | CH/sqrt(3)
"H" | CH/sqrt(3) |-CH/sqrt(3) | -CH/sqrt(3)
"H" | -CH/sqrt(3) | CH/sqrt(3) | -CH/sqrt(3)
%
Here we define a variable CH that represents the bond length between the carbon and the hydrogen atoms, which simplifies the writing of the coordinates. We start with a bond length of 1.2 Å but that’s not so important at the moment, since we can optimize it later (for more information see the [Geometry optimization](../Geometry optimization) tutorial). (You should not use 5 Å or so, but something slightly bigger than 1 Å is fine.)
Some notes concerning the input file:
- We do not tell Octopus explicitly which BoxShape to use. The default is a union of spheres centered around each atom. This turns out to be the most economical choice in almost all cases.
- We also do not specify the %Species block. In this way, Octopus will use default pseudopotentials for both Carbon and Hydrogen. This should be OK in many cases, but, as a rule of thumb, you should do careful testing before using any pseudopotential for serious calculations.
If you use the given input file you should find the following values in the resulting static/info file.
Eigenvalues [eV]
#st Spin Eigenvalue Occupation
1 -- -15.988934 2.000000
2 -- -9.064039 2.000000
3 -- -9.064039 2.000000
4 -- -9.064039 2.000000
Energy [eV]:
Total = -219.01537542
Free = -219.01537542
-----------
Ion-ion = 236.08498119
Eigenvalues = -86.36210292
Hartree = 393.44961913
Int[n*v_xc] = -105.38115372
Exchange = -69.66918783
Correlation = -11.00060043
vanderWaals = 0.00000000
Delta XC = 0.00000000
Entropy = 0.00000000
-TS = -0.00000000
Kinetic = 163.96741296
External = -931.84569058
Non-local = -49.74424172
Now the question is whether these values are converged or not. This will depend on two things: the Spacing, as seen above, and the Radius. Just like for the Nitrogen atom, the only way to answer this question is to try other values for these variables.
Convergence with the spacing
As before, we will keep all entries in the input file fixed except for the spacing that we will make smaller by 0.02 Å all the way down to 0.1 Å. So you have to run Octopus several times. You can use a similar script as the one from the Nitrogen atom example:
#!/bin/bash
echo "#Sp Energy" > spacing.log
list="0.22 0.20 0.18 0.16 0.14 0.12 0.10"
export OCT_PARSE_ENV=1
for Spacing in $list
do
export OCT_Spacing=$(echo $Spacing*1.8897261328856432 | bc)
$OCTOPUS >& out-$Spacing
energy=`grep Total static/info | head -1 | cut -d "=" -f 2`
echo $Spacing $energy >> spacing.log
rm -rf restart
done
unset OCT_Spacing
For this example we changed the list of spacings to try and, to keep things simple, we are only writing the total energy to the spacing.log file.
Now run the script to get the following results:
#Sp Energy
0.22 -219.01537351
0.20 -218.58291295
0.18 -218.20448388
0.16 -218.14599180
0.14 -218.14037189
0.12 -218.13666585
0.10 -218.13059765
If you give these numbers to ‘‘gnuplot’’ (or other software to plot) you will get a curve like the one shown on the right.
As you can see from this picture, the total energy is converged to within 0.1 eV for a spacing of 0.18 Å. So we will use this spacing for the next calculations.
Convergence with the radius
Now we will see how the total energy changes with the Radius of the box. We will change the radius in steps of 0.5 Å. You can change the input file by hand and run Octopus each time, or again use a small script:
#!/bin/bash
echo "#Rad Energy" > radius.log
list="2.5 3.0 3.5 4.0 4.5 5.0"
export OCT_PARSE_ENV=1
for Radius in $list
do
export OCT_Radius=$(echo $Radius*1.8897261328856432 | bc)
$OCTOPUS >& out-$Radius
energy=`grep Total static/info | head -1 | cut -d "=" -f 2`
echo $Radius $energy >> radius.log
rm -rf restart
done
unset OCT_Radius
Before running the script, make sure that the spacing is set to 0.18 Å in the input file. You should then get a file radius.log that looks like this:
#Rad Energy
2.5 -217.99419600
3.0 -218.16990473
3.5 -218.20448384
4.0 -218.21155936
4.5 -218.21258666
5.0 -218.21322714
On the right you can see how this looks like when plotted. Note that in this case, the most accurate results are on the right (larger radius).
If we again ask for a convergence up to 0.1 eV we should use a radius of 3.5 Å. How does this compare to the size of the molecule? Can you explain why the energy increases (becomes less negative) when one decreases the size of the box?