Tutorial:1D Helium
Introduction
The next example will be the helium atom in one dimension which also has two electrons just as we used for the harmonic oscillator. Instead of describing two electrons in one dimension we will describe one electron in two dimensions. The calculation in this case is not a DFT one, but an exact solution of the Schrödinger equation -- not an exact solution of the helium atom, however, since it is a one-dimensional model. Calling and
the coordinates of the two electrons, the Hamiltonian would be (note that the usual Coulomb interaction between particles is usually substituted, in 1D models, by the soft Coulomb potential,
):
Instead of describing two electrons in one dimension, however, we may very well think of one electron in two dimensions, subject to a external potential with precisely the shape given by:
Since the Hamiltonian is identical, we will get the same result. Whether we regard and
as the coordinates of two different particles in one dimension or as the coordinates of the same particle along the two axes in two dimensions is entirely up to us. (This idea can actually be generalized to treat two 2D particles via a 4D simulation in Octopus too!) Since it is usually easier to treat only one particle, we will solve the one-dimensional helium atom in two dimensions. We will also therefore get a "two-dimensional wave-function". In order to plot this wave-function we specify an output plane instead of an axis.
Input
With the different potential and one more dimension the new input file looks like the following
CalculationMode
= gsDimensions
= 2TheoryLevel
= independent_particlesBoxShape
= parallelepipedLsize
= 8Spacing
= 0.1Output
= wfsOutputFormat
= plane_z #OutputWfsNumber
= "1-2,4,6" %Species
"helium" | species_user_defined | potential_formula | "-2/(1+x^2)^(1/2)-2/(1+y^2)^(1/2)+1/(1+(x-y)^2)^(1/2)" | valence | 1 % %Coordinates
"helium"| 0 | 0 %
We have also commented out the line that chooses the wave-functions for the output. (Octopus will always ignore anything that comes after a #.) Since we went back to CalculationMode = gs only the ground-state is calculated. For more information on how to write a potential formula expression, see Manual:Input file.
We named the species "helium" instead of "He" because "He" is already the name of a pseudopotential for the actual 3D helium atom.
Running
The calculation should converge within 7 iterations. If it happens that you want to stop the calculation and then restart it, there is good news: Octopus allows you to do this. If you now just rerun Octopus the calculation will converge with just one iteration, because you use the already converged data from restart/gs. Results are summarized in the file static/info, where you can find
... **************************** Theory Level **************************** Input: [TheoryLevel = independent_particles] ********************************************************************** SCF converged in 7 iterations Eigenvalues [H] #st Spin Eigenvalue Occupation 1 -- -2.238257 1.000000 Energy [H]: Total = -2.23825730 Free = -2.23825730 ----------- Ion-ion = 0.00000000 Eigenvalues = -2.23825730 Hartree = 0.00000000 Int[n*v_xc] = 0.00000000 Exchange = 0.00000000 Correlation = 0.00000000 vanderWaals = 0.00000000 Delta XC = 0.00000000 Entropy = 1.38629436 -TS = -0.00000000 Kinetic = 0.28972532 External = -2.52798261 Non-local = 0.00000000 Dipole: [b] [Debye] <x> = -4.29228E-07 -1.09099E-06 <y> = 2.98523E-07 7.58770E-07 Convergence: abs_dens = 4.09050650E-06 ( 0.00000000E+00) rel_dens = 4.09050650E-06 ( 1.00000000E-05) abs_ev = 5.36015676E-12 ( 0.00000000E+00) [H] rel_ev = 2.39479026E-12 ( 0.00000000E+00)
As we are running with non-interacting electrons, the Hartree, exchange and correlation components of the energy are zero. Also the ion-ion term is zero, as we only have one "ion".
Unoccupied States
Now you can do just the same thing we did for the harmonic oscillator and change the CalculationMode
to unocc and add ExtraStates
= 5 to calculate five unoccupied states. Also uncomment the line OutputWfsNumber = "1-2,4,6".
The results of this calculation can be found in the file static/eigenvalues. In this case it looks like
All states converged. Criterion = 0.100000E-05 Eigenvalues [H] #st Spin Eigenvalue Occupation Error 1 -- -2.238257 1.000000 (7.8E-07) 2 -- -1.815718 0.000000 (6.5E-07) 3 -- -1.701549 0.000000 (4.6E-07) 4 -- -1.629240 0.000000 (9.5E-07) 5 -- -1.608656 0.000000 (6.6E-07) 6 -- -1.509599 0.000000 (8.6E-07)
Apart from the eigenvalues and occupation numbers we asked Octopus to output the wave-functions. To plot them, we will use gnuplot. You start it and type
set hidden3d set pm3d set contour set ticslevel 0 unset key unset surface splot 'static/wf-st0001.z=0' using 1:2:3 set term x11 1 splot 'static/wf-st0002.z=0' using 1:2:3 set term x11 2 splot 'static/wf-st0003.z=0' using 1:2:3
The first 6 lines are for eye-candy purposes. Then we plot the ground-state, 1st and 2nd excited-state wave-functions. (If you get this, ignore it: warning: Cannot contour non grid data. Please use "set dgrid3d".) Which correspond to singlet and which to triplet states?
Exercises
- Calculate the helium atom in 1D, assuming that the 2 electrons of helium do not interact (using
Dimensions
= 1). Can you justify the differences?
- See how the results change when you change the interaction. Often one models the Coulomb interaction by
, and fits the parameter
to reproduce some required property.