abinit/doc/tutorial/base1.md

762 lines
36 KiB
Markdown

---
authors: XG, RC
---
# First tutorial
## The H<sub>2</sub> molecule without convergence studies
This tutorial aims at showing how to get the following physical properties:
* the (pseudo) total energy
* the bond length
* the charge density
* the atomisation energy
You will learn about the two input files, the basic input variables, the
existence of defaults, the actions of the parser, and the use of the multi-dataset feature.
You will also learn about the two output files as well as the density file.
This first tutorial covers the first sections of the [[help:abinit]].
The very first step is a detailed tour of the input and output files: you are
like a tourist, and you discover a town in a coach.
You will have a bit more freedom after that first step.
It is supposed that you have some good knowledge of UNIX/Linux.
Visualisation tools are NOT covered in the basic ABINIT tutorials.
Powerful visualisation procedures have been developed in the Abipy context,
relying on matplotlib. See the README of [Abipy](https://github.com/abinit/abipy)
and the [Abipy tutorials](https://github.com/abinit/abitutorials).
This tutorial should take about 2 hours.
[TUTORIAL_README]
## Computing the (pseudo) total energy and some associated quantities
For this tutorial, one needs a working directory.
So, you should create a *Work* subdirectory inside $ABI_TESTS/tutorial, e.g. with the commands:
cd $ABI_TESTS/tutorial/Input
mkdir Work # ~abinit/tests/tutorial/Input/Work
cd Work
We will do most of the actions of this tutorial in this working directory.
Let us now run the code ...
!!! tip
The [[help:abinit#intro|section 1.1]] of the ABINIT help file explains how to run ABINIT.
You might read it now, then follow the commands hereafter.
Copy *$ABI_TESTS/tutorial/Input/tbase1_1.abi* in *Work*:
cp ../tbase1_1.abi .
Later, we will look at this file, and learn about its content.
For now, you will try to run the code.
In the *Work* directory, type:
abinit tbase1_1.abi >& log &
Wait a few seconds ... it's done!
You can look at the content of the *Work* directory with the **ls** command.
You should get something like:
ls
log tbase1_1o_DDB tbase1_1o_EIG tbase1_1o_OUT.nc
tbase1_1.abi tbase1_1o_DEN tbase1_1o_EIG.nc tbase1_1o_WFK
tbase1_1.abo tbase1_1o_EBANDS.agr tbase1_1o_GSR.nc
Different output files have been created, including a *log* file and the output file *tbase1_1.abo*.
To check that everything is correct, you can make a diff of
*tbase1_1.abo* with the reference file *$ABI_TESTS/tutorial/Refs/tbase1_1.abo*
``` sh
diff tbase1_1.abo ../../Refs/tbase1_1.abo | less
```
That reference file uses slightly different file names.
You should get some difference, but rather inoffensive ones, like differences in the name of input
files, slightly different numerical results, or timing differences, e.g.:
```diff
2,3c2,3
< .Version 9.4.1 of ABINIT
< .(MPI version, prepared for a x86_64_darwin18.7.0_gnu9.3 computer)
---
> .Version 9.3.3 of ABINIT
> .(MPI version, prepared for a x86_64_linux_gnu9.3 computer)
17,18c17,18
< .Starting date : Mon 25 Jan 2021.
< - ( at 21h07 )
---
> .Starting date : Wed 30 Dec 2020.
> - ( at 19h15 )
20,21c20,21
< - input file -> tbase1_1.abi
< - output file -> tbase1_1.abo
---
> - input file -> /home/buildbot/ABINIT/alps_gnu_9.3_serial/trunk_beauty/tests/TestBot_MPI1/tutorial_tbase1_1/tbase1_1.abi
> - output file -> tbase1_1.abo
117,118c117,118
< - pspini: atom type 1 psp file is /Users/gonze/_Research/ABINIT_git/beauty/tests/Pspdir/Pseudodojo_nc_sr_04_pw_standard_psp8/H.psp8
< - pspatm: opening atomic psp file /Users/gonze/_Research/ABINIT_git/beauty/tests/Pspdir/Pseudodojo_nc_sr_04_pw_standard_psp8/H.psp8
---
> - pspini: atom type 1 psp file is /home/buildbot/ABINIT/alps_gnu_9.3_openmpi/trunk_beauty/tests/Pspdir/Pseudodojo_nc_sr_04_pw_standard_psp8/H.psp8
> - pspatm: opening atomic psp file /home/buildbot/ABINIT/alps_gnu_9.3_openmpi/trunk_beauty/tests/Pspdir/Pseudodojo_nc_sr_04_pw_standard_psp8/H.psp8
216,217c216,217
< 1 -1.38336201933863 -0.00000000000000 -0.00000000000000
< 2 1.38336201933863 -0.00000000000000 -0.00000000000000
---
> 1 -1.38336201933879 -0.00000000000000 -0.00000000000000
> 2 1.38336201933879 -0.00000000000000 -0.00000000000000
230,232c230,232
< kinetic : 1.01705426532945E+00
< hartree : 7.26359620833820E-01
< xc : -6.39065298290653E-01
---
> kinetic : 1.01705426532942E+00
> hartree : 7.26359620833802E-01
> xc : -6.39065298290642E-01
239c239
< band_energy : -7.38843481479430E-01
---
> band_energy : -7.38843481479398E-01
314c314
< - Total cpu time (s,m,h): 4.7 0.08 0.001
---
> - Total cpu time (s,m,h): 4.6 0.08 0.001
321,329c321,328
```
If you do not run on a PC under Linux with GNU Fortran compiler, e.g. the
Intel compiler, you might also have small numerical differences, on the order of 1.0d-10 at most.
You might also have other differences in the paths of files.
Finally, it might also be that the default FFT algorithm differs from
the one of the reference machine, in which case the line mentioning [[fftalg]]
will differ (*fftalg* will not be 312). If you get something else, you should ask for help!
You can have a very quick look at the beginning of the output file *tbase1_1.abo*.
In this part of the output file, note the dot `.` or dash `-` that is inserted in the first column.
This is not important for the user: it is used to post-process the output file using some automatic tool.
As a rule, you should ignore symbols placed in the first column of the abinit output file.
Supposing everything went well, we will now detail the different steps that
took place: how to run the code, what is in the *tbase1_1.abi* input file, and,
later, what is in the *tbase1_1.abo* and *log* output files.
!!! tip
If you have not read it, please read [[help:abinit#intro|section 1.1]] of the ABINIT help file.
It is now time to edit the *tbase1_1.abi* input file.
{% dialog tests/tutorial/Input/tbase1_1.abi %}
You can have a first glance at it. It is not very long: about 50 lines, mostly comments.
Do not try to understand everything immediately.
After having gone through it, you should read general explanation about its content, and the format of such
input files in the [[help:abinit#input|section 3.1]] of the abinit help file.
You might now examine in more details some input variables.
An alphabetically ordered [[varset:allvars|index of all variables]] is provided, and their description is
found in different files (non-exhaustive list):
* [[varset:basic|Basic variables]]
* [[varset:files|Files handling variables]]
* [[varset:gstate|Ground-state calculation variables]]
* [[varset:gw|GW variables]]
* [[varset:paral|Parallelisation variables]]
* [[varset:dfpt|Density Functional Perturbation Theory (DFPT) variables]]
However, the number of such variables is rather large!
Note that only a dozen of input variables were needed to run the first test case.
This is possible because there are defaults values for the other input variables.
When it exists, the default value is mentioned at the fourth line of the section
related to each input variable.
Some input variables are also preprocessed, in order to derive convenient
values for other input variables.
Defaults are not existing or were avoided for the few input variables that you find in *tbase1_1.abi*.
These are particularly important input variables.
So, take a few minutes to have a look at the input variables of *tbase1_1.abi*:
* [[acell]]
* [[ntypat]]
* [[znucl]]
* [[pp_dirpath]]
* [[pseudos]]
* [[natom]]
* [[typat]]
* [[xcart]]
* [[ecut]]
* [[nkpt]]
* [[nstep]]
* [[toldfe]]
* [[diemac]]
Have also a look at [[kpt]] and [[iscf]].
It is now time to have a look at the two output files of the run.
First, open the *log* file. You can begin to read it. It is nasty. Jump to its end.
Twenty lines before the end, you will find the number of WARNINGS and COMMENTS that were issued by the code during execution.
You might try to find them in the file (localize the keywords WARNING or COMMENT in this file).
Some of them are for the experienced user. For the present time, we will ignore them.
You can find more information about messages in the log file in
[[help:abinit#logfile|this section]] of the abinit help file.
!!! tip
If |AbiPy| is installed on your machine, you can use the |abiopen| script
to extract the messages from the Abinit log file with the syntax:
abiopen.py log -p
to get:
Events found in /Users/gonze/_Research/ABINIT_git/beauty/tests/tutorial/Input/Work/log
[1] <AbinitComment at m_dtfil.F90:1470>
Output file: tbase1_1.abo already exists.
[2] <AbinitComment at m_dtfil.F90:1494>
Renaming old: tbase1_1.abo to: tbase1_1.abo0001
[3] <AbinitWarning at m_ingeo.F90:887>
The tolerance on symmetries = 1.000E-05 is bigger than 1.0e-8.
In order to avoid spurious effects, the atomic coordinates have been
symmetrized before storing them in the dataset internal variable.
So, do not be surprised by the fact that your input variables (xcart, xred, ...)
do not correspond to the ones echoed by ABINIT, the latter being used to do the calculations.
In order to avoid this symmetrization (e.g. for specific debugging/development), decrease tolsym to 1.0e-8 or lower.
[4] <AbinitComment at m_symfind.F90:999>
The Bravais lattice determined only from the primitive
vectors, bravais(1)= 7, is more symmetric
than the real one, iholohedry= 4, obtained by taking into
account the atomic positions. Start deforming the primitive vector set.
[5] <AbinitComment at m_memeval.F90:2397>
Despite there is only a local part to pseudopotential(s),
lmnmax and lnmax are set to 1.
[6] <AbinitComment at m_xgScalapack.F90:236>
xgScalapack in auto mode
[7] <AbinitComment at m_memeval.F90:2397>
Despite there is only a local part to pseudopotential(s),
lmnmax and lnmax are set to 1.
[8] <AbinitWarning at m_drivexc.F90:711>
Density went too small (lower than xc_denpos) at 38 points
and was set to xc_denpos = 1.00E-14. Lowest was -0.13E-13.
This might be due to (1) too low boxcut or (2) too low ecut for
pseudopotential core charge, or (3) too low ecut for estimated initial density.
Possible workarounds : increase ecut, or define the input variable densty,
with a value larger than the guess for the decay length, or initialize your,
density with a preliminary LDA or GGA-PBE if you are using a more exotic xc functional.
num_errors: 0, num_warnings: 2, num_comments: 6, completed: True
Now open the *tbase1_1.abo* file. Alternatively, you might have a look at the reference file we provide below.
{% dialog tests/tutorial/Refs/tbase1_1.abo %}
You find some general information about the output file [[help:abinit#outputfile|here]] .
You should also:
* examine the header of *tbase1_1.abo*
* examine the report on memory needs (do not read each value of parameters)
* examine the echo of preprocessed input data,
until you reach the message:
chkinp: Checking input parameters for consistency.
If the code does not stop there, the input parameters are consistent.
At this stage, many default values have been provided, and the preprocessing is finished.
It is worth to come back to the echo of preprocessed input data.
You should first examine the *tbase1_1.abi* file in more details, and read the meaning of
each of its variables in the corresponding input variables file, if it has not yet been done.
Then, you should examine some variables that were **not** defined
in the input file, but that appear in the echo written in *tbase1_1.abo*. Search for:
[[nband]]
: Its value is 2.
It is the number of electronic states that will be treated by the code. It has
been computed by counting the number of valence electrons in the unit cell
(summing the valence electrons brought by each pseudopotential) then occupying
the lowest states (look at the [[occ]] variable), and adding some states (at
least one, maybe more, depending on the size of the system).
[[ngfft]]
: Its value is 30 30 30.
It is the number of points of the three-dimensional FFT grid. It has been
derived from [[ecut]] and the dimension of the cell ([[acell]]).
[[mpw]]
:
The maximal number of plane waves ([[mpw]]) is mentioned in the memory evaluation section: it is **752**.
Well, this is not completely right, as the code took advantage of the time-reversal symmetry,
valid for the k-point (0, 0, 0), to decrease the number of planewave by about a factor of two.
The full set of plane waves is **1503** (search for npw in the *tbase1_1.abo* file).
The code indicates the time-reversal symmetry by a value of [[istwfk]] = 2,
instead of the default [[istwfk]] = 1.
[[nsym]]
: It is the number of symmetries of the system. Its value is 16.
The 3x3 matrices [[symrel]]
define the symmetry operations. In this case, none of the symmetries is
accompanied by a translation, that would appear in the variable [[tnons]]. The
code did an automatic analysis of symmetries.
They could alternatively be set by hand, or using the symmetry builder (to be described later).
[[xred]]
: Alternative to [[xcart]] to specify the positions of atoms within the primitive cell.
Now, you can start reading the description of the remaining of the
*tbase1_1.abo* file in [[help:abinit#53-more-on-the-main-output-file|section 5.3]] of the abinit help file.
Look at the *tbase1_1.abo* file at the same time.
You have read completely an output file! Could you answer the following questions?
(There might be numerical differences, from platform to platform, in the quoted results!)
??? note "Q1. How many SCF cycles were needed to have the [[toldfe]] criterion satisfied?"
6 SCF cycles were needed:
iter Etot(hartree) deltaE(h) residm vres2
ETOT 1 -1.1093804698962 -1.109E+00 6.384E-04 1.736E+01
ETOT 2 -1.1170431098364 -7.663E-03 7.449E-08 2.737E-01
ETOT 3 -1.1171736936408 -1.306E-04 5.867E-06 6.992E-02
ETOT 4 -1.1171842773283 -1.058E-05 8.862E-07 5.492E-04
ETOT 5 -1.1171843458762 -6.855E-08 1.683E-09 1.404E-05
ETOT 6 -1.1171843463443 -4.681E-10 2.580E-11 3.672E-07
At SCF step 6, etot is converged :
for the second time, diff in etot= 4.681E-10 < toldfe= 1.000E-06
Note that the number of steps that were allowed, [[nstep]] = 10, is larger than
the number of steps effectively needed to reach the stopping criterion. As a
rule, you should always check that the number of steps that you allowed was
sufficient to reach the target tolerance. You might now play a bit with [[nstep]],
as e.g. set it to 5, to see how abinit reacts.
Side note: in most of the tutorial examples, [[nstep]] will be enough to reach
the target tolerance, defined by one of the **tolXXX** input variables. However,
this is not always the case (e.g. the test case 1 of the [tutorial DFPT1](/tutorial/rf1)
because of some portability problems, that could only be
solved by stopping the SCF cycles before the required tolerance.
??? note "Q2. Is the energy likely more converged than [[toldfe]]?"
The information is contained in the same piece of the output file.
Yes, the energy is more converged than [[toldfe]], since the stopping criterion asked for the difference
between successive evaluations of the energy to be smaller than [[toldfe]] twice in a row,
while the evolution of the energy is nice, and always decreasing by smaller and smaller amounts.
??? note "Q3. What is the value of the force on each atom, in Ha/Bohr?"
These values are:
cartesian_forces: # hartree/bohr
- [ -2.69021104E-02, -0.00000000E+00, -0.00000000E+00, ]
- [ 2.69021104E-02, -0.00000000E+00, -0.00000000E+00, ]
force_length_stats: {min: 2.69021104E-02, max: 2.69021104E-02, mean: 2.69021104E-02, }
On the first atom (located at -0.7 0 0 in cartesian coordinates, in Bohr), the
force vector is pointing in the $-x$ direction, and in the $+x$ direction
for the second atom located at +0.7 0 0 .
The H$_2$ molecule would like to expand...
??? note "Q4. What is the difference of eigenenergies between the two electronic states?"
The eigenvalues (in Hartree) are mentioned at the lines
Eigenvalues (hartree) for nkpt= 1 k points:
kpt# 1, nband= 2, wtk= 1.00000, kpt= 0.0000 0.0000 0.0000 (reduced coord)
-0.36942 -0.01446
As mentioned in the [[help:abinit#averagepot|abinit help file]]
the absolute value of eigenenergies is not meaningful. Only differences of eigenenergies, as well
as differences with the potential. The difference is 0.35496 Hartree, that is 9.6588 eV .
Moreover, remember that Kohn-Sham eigenenergies are formally **not connected** to
experimental excitation energies! (Well, more is to be said later about this in the GW tutorials).
??? note "Q5. Can you set [[prtvol]] to 2 in the input file, run again abinit, and find where is located the maximum of the electronic density, and how much is it, in electrons/Bohr^3 ?"
The maximum electronic density in electron per Bohr cube is reached at the mid-point between the two H atoms:
Total charge density [el/Bohr^3]
Maximum= 2.7281E-01 at reduced coord. 0.0000 0.0000 0.0000
!!! tip
If |AbiPy| is installed on your machine, you can use the |abiopen| script
with the `--expose` option to visualize the SCF cycle from the main output file:
abiopen.py tbase1_1.abo --expose --seaborn
![](base1_assets/abiopen_tbase1_1.png)
For further info, please consult this
[jupyter notebook](https://nbviewer.jupyter.org/github/abinit/abitutorials/blob/master/abitutorials/base1/lesson_base1.ipynb)
that reformulates the present tutorial using AbiPy.
## Computation of the interatomic distance (method 1)
Starting from now, every time a new input variable is mentioned,
you should read the corresponding descriptive section in the [[help:abinit#averagepot|abinit help file]].
We will now complete the description of the meaning of each term: there are
still a few indications that you should be aware of, even if you will not use them in the tutorial.
These might appear in the description of some input variables.
For this, you should read the [[help:abinit#parameters|section 3.3]] of the abinit help file.
There are three methodologies to compute the optimal distance between the two Hydrogen atoms.
One could:
* compute the **total energy** for different values of the interatomic distance, make a fit through the different points,
and determine the minimum of the fitting function;
* compute the **forces** for different values of the interatomic distance, make a fit through the different values,
and determine the zero of the fitting function;
* use an automatic algorithm for minimizing the energy (or finding the zero of forces).
We will begin with the computation of energy and forces for different values of the interatomic distance.
This exercise will allow you to learn how to use multiple datasets.
The interatomic distance in the *tbase1_1.abi* file was 1.4 Bohr.
Suppose you decide to examine the interatomic distances from 1.0 Bohr to 2.0 Bohr, by steps of 0.05 Bohr.
That is, 21 calculations.
If you are a UNIX guru, it will be easy for you to write a script that will
drive these 21 calculations, changing automatically the variable [[xcart]] in
the input file, and then gather all the data, in a convenient form to be plotted.
Well, are you a UNIX guru? If not, there is an easier path, all within abinit!
This is the multi-dataset mode. Detailed explanations about it can be found in sections
[[help:abinit#multidatasets|3.4]],
[[help:abinit#series|3.5]],
[[help:abinit#loop|3.6]] and
[[help:abinit#filenames-multidataset|3.7]] of the abinit help file.
Now, can you write an input file that will do the computation described above
(interatomic distances from 1.0 Bohr to 2.0 Bohr, by steps of 0.05 Bohr)? You might start from *tbase1_1.abi*.
Try to define a series, and to use the [[getwfk]] input variable (the latter will make the computation much faster).
You should likely have a look at the section that describes the [[irdwfk]] and
[[getwfk]] input variables: in particular, look at the meaning of *getwfk -1*
Also, define explicitly the number of states (or supercell "bands") to be one, using the input variable [[nband]].
The input file *\$ABI_TESTS/tutorial/Input/tbase1_2.abi* is an example of file that will do the job,
{% dialog tests/tutorial/Input/tbase1_2.abi %}
while *\$ABI_TESTS/tutorial/Refs/tbase1_2.abo* is the reference output file.
{% dialog tests/tutorial/Refs/tbase1_2.abo %}
Run the code with *tbase1_2.abi* (this might take fifteen seconds or so on a PC at 3 GHz),
```sh
cp ../tbase1_2.abi .
abinit tbase1_2.abi >& log
```
Now examine the output file quickly (there are many
repetition of sections, for the different datasets), and get the output
energies gathered in the **final echo of variables**:
etotal1 -1.0557522713E+00
etotal2 -1.0719698068E+00
etotal3 -1.0847711611E+00
etotal4 -1.0947672022E+00
etotal5 -1.1024550352E+00
etotal6 -1.1082397355E+00
etotal7 -1.1124515924E+00
etotal8 -1.1153599391E+00
etotal9 -1.1171843464E+00
etotal10 -1.1181037489E+00
etotal11 -1.1182639350E+00
etotal12 -1.1177837211E+00
etotal13 -1.1167600633E+00
etotal14 -1.1152722975E+00
etotal15 -1.1133856613E+00
etotal16 -1.1111542144E+00
etotal17 -1.1086232522E+00
etotal18 -1.1058312878E+00
etotal19 -1.1028116615E+00
etotal20 -1.0995938277E+00
etotal21 -1.0962043631E+00
You might try plot to these data:
![EOS plot](base1_assets/Plot1.png)
The minimum of energy in the above list is clearly between dataset 10 and 11, that is:
xcart10 -7.2500000000E-01 0.0000000000E+00 0.0000000000E+00
7.2500000000E-01 0.0000000000E+00 0.0000000000E+00
xcart11 -7.5000000000E-01 0.0000000000E+00 0.0000000000E+00
7.5000000000E-01 0.0000000000E+00 0.0000000000E+00
corresponding to a distance of H atoms between 1.45 Bohr and 1.50 Bohr.
The forces change sign also between datasets 10 and 11:
fcart10 -1.0358194799E-02 -0.0000000000E+00 -0.0000000000E+00
1.0358194799E-02 -0.0000000000E+00 -0.0000000000E+00
fcart11 3.5571726338E-03 -0.0000000000E+00 -0.0000000000E+00
-3.5571726338E-03 -0.0000000000E+00 -0.0000000000E+00
From these two values, using a linear interpolation, one get the optimal value of 1.487 Bohr.
Note that *the number of SCF cycles drops from 6 to 5 when the wavefunctions are read from the previous dataset*.
## Computation of the interatomic distance (method 2)
The other methodology is based on an automatic computation of the minimum.
There are different algorithms to do that. See the input variable [[ionmov]], with values 2, 7, 15, and 22.
In the present case, with only one degree of freedom to be optimized, the best choice is [[ionmov]] 22.
You have also to define the maximal number of time steps for this optimization.
Set the input variable [[ntime]] to 10, it will be largely enough.
For the stopping criterion [[tolmxf]], use the reasonable value of 5.0d-4 Ha/Bohr.
This defines the force threshold to consider that the geometry is converged.
The code will stop if the residual forces are below that value before reaching [[ntime]].
It is also worth to change the stopping criterion for the SCF cycle, in order
to be sure that the forces generated for each trial interatomic distance are
sufficiently converged. Indeed, the value used for [[toldfe]], namely 1.0d-6,
might be sufficient for total energy calculations, but definitely not for the
accurate computation of other properties. So, change [[toldfe]] in [[tolrff]],
and set the latter input variable to 0.02.
The input file *tbase1_3.abi* is an example of file that will do the job
{% dialog tests/tutorial/Input/tbase1_3.abi %}
while *tbase1_3.abo* is an example of output file:
{% dialog tests/tutorial/Refs/tbase1_3.abo %}
So, you run the code with your input file (a few seconds), examine quietly this file (which is much smaller
than the *tbase1_2.abo* file), and get some significant output data gathered in the final echo of variables:
etotal -1.1182883138E+00
fcart -6.6032223725E-05 -0.0000000000E+00 -0.0000000000E+00
6.6032223725E-05 -0.0000000000E+00 -0.0000000000E+00
...
xcart -7.4307198349E-01 0.0000000000E+00 0.0000000000E+00
7.4307198349E-01 0.0000000000E+00 0.0000000000E+00
According to these data (see [[xcart]]), the optimal interatomic distance is
about 1.486 Bohr, in good agreement with the estimation of *tbase1_2.abo*.
If you have time (this is to be done at home), you might try to change the
stopping criteria, and redo the calculation, to see the level of convergence
of the interatomic distance.
Note that the final value of *fcart* in your run might differ slightly from the
one shown above (less than one percent change). Such a fluctuation is quite
often observed for a value converging to zero (remember, we ask the code to
determine the equilibrium geometry, that is, forces should be zero) when the
same computation is done on different platforms.
!!! tip
With |AbiPy|, we can analyze easily the results of the structural relaxation
with the |abiopen| script:
abiopen.py tbase1_3o_HIST.nc --expose --seaborn
![](base1_assets/abiopen_tbase1_3o_HIST.png)
## Computation of the charge density
The charge density has already been computed, for all geometries, in the
above-mentioned runs. Here, we will print this quantity.
We start from the optimized interatomic distance 1.486 Bohr, and make a run at fixed geometry.
The input variable [[prtden]] must be set to 1.
To understand correctly the content of the [[prtden]] description, it is worth to read a much
more detailed description of the file names in ABINIT, in [[help:abinit#32_file_names_in_abinit|section 3.2]] of the abinit_help file.
The input file *tbase1_4.abi* is an example of input file for a run that will print a density.
{% dialog tests/tutorial/Input/tbase1_4.abi %}
The run will take a few seconds.
The density will be output in the *tbase1_4o_DEN* file. Try to edit it...
No luck! This file is unformatted, not written using the ASCII code.
Even if you cannot read it, its description is provided in the abinit help file. It
contains first a header, then the density numbers. The description of the
header is presented in [[help:abinit#header|section 5.4]] of the abinit_help
file, while the body of the _DEN file is presented in [[help:abinit#denfile|section 5.5]].
It is the appropriate time to read also the description of the potential files and
wavefunctions files, as these files contain the same header as the density
file, see sections [[help:abinit#localpotfile|5.6]] and [[help:abinit#wfkfile|5.7]].
Such a density file can be read by abinit, to restart a calculation
(see the input variable [[iscf]], when its value is -2), but more usually, by an utility called *cut3d*.
This utility is available in the ABINIT package.
You might try to use it now, to generate two-dimensional cuts in the density, and visualize the charge density contours.
Read the corresponding [[help:cut3d|Cut3D help file]]
Then, try to run cut3d to analyse *tbase1_4o_DEN*.
You should first try to translate the unformatted
density data to indexed formatted data, by using option 6 in the adequate menu.
Save the indexed formatted data to file *tbase1_xo_DEN_indexed*.
Then, edit this file, to have an idea of the content of the *_DEN* files.
For further treatment, you might choose to select another option than 6.
In particular, if you have access to MATLAB, choose option 5. With minor
modifications (set ngx=ngy=ngz to 30) you will be able to use the file [dim.m](base1_assets/dim.m)
to visualize the 3-Dimensional isosurfaces.
Another option might be to use the |xcrysden| software, for which you need to use option 9.
If you have a density file in netcdf format, it is possible to use |AbiPy| to
export the data in different formats and invoke an external graphical tool.
This is, for example, the density isosurfaces produced with |vesta|
as discussed in this [jupyter notebook](https://nbviewer.jupyter.org/github/abinit/abitutorials/blob/master/abitutorials/base1/lesson_base1.ipynb#Analysis-of-the-charge-density)
![](https://github.com/abinit/abipy_assets/blob/master/h2_density.png?raw=true)
## Computation of the atomisation energy
The atomisation energy is the energy needed to separate a molecule in its constituent atoms, each being neutral.
In the present case, one must compute first the total energy of an isolated hydrogen atom.
The atomisation energy will be the difference between the total
energy of H$_2$ and twice the total energy of H.
There are some subtleties in the calculation of an isolated atom.
* In many cases, the ground state of an isolated atom is spin-polarized, see the variables [[nsppol]] and [[spinat]];
* The highest occupied level might be degenerate with the lowest unoccupied level of the same spin,
in which case the techniques usually appropriate for metals are to be used (see [tutorial 4](/tutorial/base4))
* also often, the symmetry of the ground-state charge density **will not be spherical**, so that the automatic
determination of symmetries by the code, based on the atomic coordinates, should be disabled,
see the input variable [[nsym]], to be set to 1 in this case.
For Hydrogen, we are lucky that the ground state is spherical (1s orbital),
and that the highest occupied level and lowest unoccupied level, although
degenerate, have a different spin. We will define by hand the occupation of
each spin, see the input variables [[occopt]] (to be set to 0), and [[occ]].
Finally, in order to make numerical errors cancel, it is important to compute
the above-mentioned difference in the same box, for the same energy cut-off, and even
for a location in the box that is similar to the molecule case (although the
latter might not be so important).
The input file *tbase1_5.abi* is an example of file that will do the job,
{% dialog tests/tutorial/Input/tbase1_5.abi %}
while *tbase1_5.abo* is an example of output file.
{% dialog tests/tutorial/Refs/tbase1_5.abo %}
The run lasts a few seconds.
You should read the output file, and note several differences related with
the spin-polarisation:
The electronic eigenvalues are now given for both spin up and spin down cases:
```
Eigenvalues (hartree) for nkpt= 1 k points, SPIN UP:
kpt# 1, nband= 1, wtk= 1.00000, kpt= 0.0000 0.0000 0.0000 (reduced coord)
-0.26661
Eigenvalues (hartree) for nkpt= 1 k points, SPIN DOWN:
kpt# 1, nband= 1, wtk= 1.00000, kpt= 0.0000 0.0000 0.0000 (reduced coord)
-0.11113
```
As [[prtvol]]=2, The charge density at several points (maximum, minimum) is echoed, but also
the spin polarisation, because of the value of [[nspden]] and [[occopt]]:
```
Total charge density [el/Bohr^3]
Maximum= 1.4353E-01 at reduced coord. 0.0000 0.0000 0.0000
Next maximum= 1.2266E-01 at reduced coord. 0.0000 0.0000 0.9667
Minimum= 3.2349E-06 at reduced coord. 0.4667 0.4333 0.4333
Next minimum= 3.2349E-06 at reduced coord. 0.5333 0.4333 0.4333
Integrated= 1.0000E+00
Spin up density [el/Bohr^3]
Maximum= 1.4353E-01 at reduced coord. 0.0000 0.0000 0.0000
Next maximum= 1.2266E-01 at reduced coord. 0.0000 0.0000 0.9667
Minimum= 3.2349E-06 at reduced coord. 0.4667 0.4333 0.4333
Next minimum= 3.2349E-06 at reduced coord. 0.5333 0.4333 0.4333
Integrated= 1.0000E+00
Spin down density [el/Bohr^3]
Maximum= 0.0000E+00 at reduced coord. 0.9667 0.9667 0.9667
Next maximum= 0.0000E+00 at reduced coord. 0.9333 0.9667 0.9667
Minimum= 0.0000E+00 at reduced coord. 0.0000 0.0000 0.0000
Next minimum= 0.0000E+00 at reduced coord. 0.0333 0.0000 0.0000
Integrated= 0.0000E+00
Magnetization (spin up - spin down) [el/Bohr^3]
Maximum= 1.4353E-01 at reduced coord. 0.0000 0.0000 0.0000
Next maximum= 1.2266E-01 at reduced coord. 0.0000 0.0000 0.9667
Minimum= 3.2349E-06 at reduced coord. 0.4667 0.4333 0.4333
Next minimum= 3.2349E-06 at reduced coord. 0.5333 0.4333 0.4333
Integrated= 1.0000E+00
Relative magnetization (=zeta, between -1 and 1)
Maximum= 1.0000E+00 at reduced coord. 0.9667 0.9667 0.9667
Next maximum= 1.0000E+00 at reduced coord. 0.9333 0.9667 0.9667
Minimum= 1.0000E+00 at reduced coord. 0.0000 0.0000 0.0000
Next minimum= 1.0000E+00 at reduced coord. 0.0333 0.0000 0.0000
```
The **zeta** variable is the ratio between the spin-density difference and the
charge density. It varies between +1 and -1. In the present case of Hydrogen,
there is no spin down density, so the zeta variable is +1.
The total energy is
etotal -4.7393103688E-01
while the total energy of the H$_2$ molecule is (see tbase1_3.abo):
etotal -1.1182883138E+00
The atomisation energy is thus 0.1704 Ha (The difference between the total
energy of the H$_2$ molecule and twice the energy of an isolated Hydrogen atom).
At this stage, we can compare our results:
* bond length: 1.486 Bohr
* atomisation energy at that bond length: 0.1704 Ha = 4.637 eV
with the experimental data as well as theoretical data using a much more
accurate technique (see [[cite:Kolos1960]], especially p.225)
* bond length: 1.401 Bohr
* atomisation energy: 4.747 eV
| | Our results | Experiment
| :-- | :-- | :--
bond length [Bohr] | 1.486 | 1.401
atomisation energy [eV] | 4.637 | 4.747
The bond length is rather bad (about 6% off), and the atomisation energy is a bit too low, 2.5% off.
What is wrong??
Well, are you sure that the input parameters that we did not discuss are correct?
These are:
* [[ecut]] (the plane-wave kinetic energy cut-off)
* [[acell]] (the supercell size)
* the pseudopotential
* [[ixc]] (not even mentioned until now, this input variable specifies what kind of
exchange-correlation functional is to be used, and is by default deduced from the pseudopotential - a choice
of exchange-correlation functional is mandatory to produce a pseudopotential, and mixing different exchange-correlation
functionals for pseudopotentials generation and ABINIT calculations is bad practice)
We used 10 Ha as cut-off energy, a 10x10x10 Bohr^3 supercell,
the LDA (=local-density approximation, as well as the local-spin-density approximation in the spin-polarized case) in the
Perdew-Wang parametrization ([[ixc]]=-1012), and a LDA pseudopotential from the pseudodojo <http://www.pseudo-dojo.org/>,
copied in the ABINIT directory $ABI_PSPDIR/Pseudodojo_nc_sr_04_pw_standard_psp8 . You might have a look at
the file $ABI_PSPDIR/Pseudodojo_nc_sr_04_pw_standard_psp8/README.md to learn more about pseudopotentials.
We will see in the [next tutorial](/tutorial/base2) how to address the choice
of these parameters (except the pseudopotential).