2016-12-20 13:09:46 +01:00
|
|
|
[![DOI](https://zenodo.org/badge/doi/10.5281/zenodo.20450.svg)](http://dx.doi.org/10.5281/zenodo.20450)
|
|
|
|
|
2016-12-19 23:26:52 +01:00
|
|
|
# DEHam
|
2016-12-20 12:12:48 +01:00
|
|
|
|
|
|
|
Double Exchange Hamiltonian: Complete Version
|
|
|
|
=============================================
|
|
|
|
|
2016-12-20 12:38:03 +01:00
|
|
|
(under GNU GENERAL PUBLIC LICENSE v2)
|
|
|
|
|
2018-01-15 12:47:44 +01:00
|
|
|
_Dependencies_
|
2016-12-20 12:18:03 +01:00
|
|
|
---------------
|
|
|
|
|
2018-01-15 23:30:38 +01:00
|
|
|
1. [PETSc](https://www.mcs.anl.gov/petsc/documentation/installation.html) and [SLEPc](http://slepc.upv.es/documentation/instal.htm)
|
2016-12-20 12:18:03 +01:00
|
|
|
|
2016-12-20 12:23:07 +01:00
|
|
|
2. [IRPF90](https://github.com/scemama/irpf90)
|
2016-12-20 12:18:03 +01:00
|
|
|
|
2018-01-15 12:47:44 +01:00
|
|
|
_Compiling_
|
2016-12-20 12:12:48 +01:00
|
|
|
------------
|
|
|
|
|
2016-12-20 12:23:07 +01:00
|
|
|
1. Export environment variables for PETSc and SLEPc
|
2016-12-20 12:29:39 +01:00
|
|
|
|
2018-01-15 16:43:52 +01:00
|
|
|
```shell
|
|
|
|
export PETSC_DIR=${PATH_TO_PETSC_INSTALLATION}
|
|
|
|
export SLEPC_DIR=${PATH_TO_SLEPC_INSTALLATION}
|
|
|
|
export C_INCLUDE_PATH+=:$PETSC_DIR/include/:$SLEPC_DIR/include:$PETSC_DIR/arch-linux2-c-debug/include/:$SLEPC_DIR/arch-linux2-c-debug/include
|
|
|
|
# The "arch-linux2-c-debug" directory can have different names depending on PETSC and SLEPC installation procedure.
|
|
|
|
```
|
2016-12-20 12:12:48 +01:00
|
|
|
|
|
|
|
|
2016-12-20 12:23:07 +01:00
|
|
|
2. Make the executable
|
2016-12-20 12:29:39 +01:00
|
|
|
|
2018-01-15 12:41:40 +01:00
|
|
|
```shell
|
|
|
|
make ex1
|
|
|
|
```
|
2016-12-20 12:12:48 +01:00
|
|
|
|
2018-01-15 12:47:44 +01:00
|
|
|
_Using DEHam_
|
2016-12-20 12:12:48 +01:00
|
|
|
---------------
|
|
|
|
|
2016-12-20 12:23:07 +01:00
|
|
|
1. The DEHam program requires an input file which
|
2016-12-20 12:12:48 +01:00
|
|
|
has the topology of the Hamiltonian and the various parameters
|
|
|
|
as explained below in a sample inputfile:
|
|
|
|
|
2018-01-15 12:41:40 +01:00
|
|
|
```python
|
2020-03-05 15:30:27 +01:00
|
|
|
8 # The number of orbitals (total)
|
|
|
|
140 # The largest number of non-zero elements per row (Multiple of Ndet)
|
|
|
|
1 # The total number of processors used in parallel (Multiple of Ndet)
|
2018-01-26 13:15:45 +01:00
|
|
|
1 # The number of holes
|
|
|
|
0 # The isz (ms-1/2) value
|
2018-01-27 12:41:48 +01:00
|
|
|
true # Restrict the hole to the 1'st (i.e. half of natom) Family of states. *false* for no restrictions
|
2018-01-15 12:41:40 +01:00
|
|
|
1,2,3,1,2,3,4,5,6,7 # The topology of the system is specified here
|
|
|
|
2,3,4,8,7,6,5,6,7,8 # first and second line contain the two sites linked
|
2020-02-21 14:26:29 +01:00
|
|
|
1,1,1,2,2,2,2,3,3,3 # third line contains the type of link (1 for t or J, 2 for K and 3 for none)
|
2018-01-15 12:41:40 +01:00
|
|
|
.1430,-0.20,0.0000 # The three types of links this line gives J, K
|
|
|
|
.1430,-0.20,0.0000 #
|
|
|
|
-1.00,0.0,0.00 # This line gives t
|
2020-03-12 21:52:28 +01:00
|
|
|
0.,0.,0.,0.,0.,0.,0.,0. # Energy of each orbital
|
|
|
|
2 # The total number of roots
|
|
|
|
1 # I The position of the first
|
|
|
|
1 # I SBox
|
|
|
|
1 # I
|
|
|
|
1 # I
|
|
|
|
1 # II The positions of the second
|
|
|
|
1 # II SBox
|
|
|
|
1 # II
|
|
|
|
1 # II
|
|
|
|
1 # III
|
|
|
|
1 # III The positions of the third
|
|
|
|
1 # III SBox
|
|
|
|
1 # III
|
|
|
|
1 # positio of the hole
|
|
|
|
0 # fix the position of the first hole during the CI
|
|
|
|
0 # fix the position of the second hole during the CI
|
|
|
|
0 # Print the wavefunction. It is stored in the FIL666 file after the run
|
2018-01-15 12:41:40 +01:00
|
|
|
```
|
2016-12-20 12:19:51 +01:00
|
|
|
|
2016-12-20 12:23:07 +01:00
|
|
|
2. running DEHam
|
2016-12-20 12:29:39 +01:00
|
|
|
|
2018-01-15 12:41:40 +01:00
|
|
|
```shell
|
|
|
|
mpiexec -n [nprocs] ./ex1 inpfile
|
|
|
|
```
|
2016-12-20 13:05:02 +01:00
|
|
|
|
2018-01-15 12:47:44 +01:00
|
|
|
_Publications using this code_
|
2016-12-20 13:06:26 +01:00
|
|
|
-------------------------------
|
2016-12-20 13:05:02 +01:00
|
|
|
|
2016-12-20 13:07:46 +01:00
|
|
|
1. High-Spin Chains and Crowns from Double-Exchange Mechanism [doi:10.3390/cryst6040039](http://www.dx.doi.org/10.3390/cryst6040039)
|