mirror of
https://github.com/TREX-CoE/trexio.git
synced 2025-01-03 18:16:22 +01:00
Added documentation
This commit is contained in:
parent
1514f6eb83
commit
0837da9bbe
@ -136,7 +136,7 @@ clean-local:
|
|||||||
# =============== DOCUMENTATION =============== #
|
# =============== DOCUMENTATION =============== #
|
||||||
|
|
||||||
HTML_TANGLED = docs/index.html \
|
HTML_TANGLED = docs/index.html \
|
||||||
docs/Sparse.html \
|
docs/examples.html \
|
||||||
docs/templator_hdf5.html \
|
docs/templator_hdf5.html \
|
||||||
docs/trex.html \
|
docs/trex.html \
|
||||||
docs/README.html \
|
docs/README.html \
|
||||||
|
22
Sparse.org
22
Sparse.org
@ -1,22 +0,0 @@
|
|||||||
See templator_front.org
|
|
||||||
|
|
||||||
* Text back end
|
|
||||||
As the size of the dataset should be extensible, the simplest
|
|
||||||
solution is to use one file for each sparse data set, and store a
|
|
||||||
the name of this file in the group.
|
|
||||||
Each integral can be a line in the file:
|
|
||||||
i j k l x
|
|
||||||
which can be read with "%10ld %10ld %10ld %10ld %24.16e".
|
|
||||||
The offset can be used with ~fseek(69L*offset, SEEK_SET)~
|
|
||||||
|
|
||||||
* HDF5 Back end
|
|
||||||
|
|
||||||
We need to declare the number of rows of the dataset as
|
|
||||||
~UNLIMITED~. This requires to use the ~Chunked~ storage, and the
|
|
||||||
chunks should absolutely not be larger than 1MB.
|
|
||||||
|
|
||||||
To extend the storage, see :
|
|
||||||
https://support.hdfgroup.org/HDF5/doc1.6/UG/10_Datasets.html
|
|
||||||
(figure 17)
|
|
||||||
|
|
||||||
If the offset+num > nmax, we need to extend the dataset.
|
|
215
examples.org
Normal file
215
examples.org
Normal file
@ -0,0 +1,215 @@
|
|||||||
|
#+TITLE: Examples
|
||||||
|
#+STARTUP: latexpreview
|
||||||
|
#+SETUPFILE: docs/theme.setup
|
||||||
|
|
||||||
|
|
||||||
|
* Accessing sparse quantities
|
||||||
|
** Fortran
|
||||||
|
:PROPERTIES:
|
||||||
|
:header-args: :tangle print_energy.f90
|
||||||
|
:END:
|
||||||
|
|
||||||
|
#+begin_src f90
|
||||||
|
program print_energy
|
||||||
|
use trexio
|
||||||
|
implicit none
|
||||||
|
|
||||||
|
character*(128) :: filename ! Name of the input file
|
||||||
|
integer :: rc ! Return code for error checking
|
||||||
|
integer(8) :: f ! TREXIO file handle
|
||||||
|
character*(128) :: err_msg ! Error message
|
||||||
|
#+end_src
|
||||||
|
|
||||||
|
This program computes the energy as:
|
||||||
|
|
||||||
|
\[
|
||||||
|
E = E_{\text{NN}} + \sum_{ij} D_{ij}\, \langle i | h | j \rangle\,
|
||||||
|
+\, \frac{1}{2} \sum_{ijkl} \Gamma_{ijkl}\, \langle i j | k l
|
||||||
|
\rangle\; \textrm{ with } \; 0 < i,j,k,l \le n
|
||||||
|
\]
|
||||||
|
|
||||||
|
One needs to read from the TREXIO file:
|
||||||
|
|
||||||
|
- $n$ :: The number of molecular orbitals
|
||||||
|
- $E_{\text{NN}}$ :: The nuclear repulsion energy
|
||||||
|
- $D_{ij}$ :: The one-body reduced density matrix
|
||||||
|
- $\langle i |h| j \rangle$ :: The one-electron Hamiltonian integrals
|
||||||
|
- $\Gamma_{ijkl}$ :: The two-body reduced density matrix
|
||||||
|
- $\langle i j | k l \rangle$ :: The electron repulsion integrals
|
||||||
|
|
||||||
|
#+begin_src f90
|
||||||
|
integer :: n
|
||||||
|
double precision :: E, E_nn
|
||||||
|
double precision, allocatable :: D(:,:), h0(:,:)
|
||||||
|
double precision, allocatable :: G(:,:,:,:), W(:,:,:,:)
|
||||||
|
#+end_src
|
||||||
|
|
||||||
|
*** Declare Temporary variables
|
||||||
|
|
||||||
|
#+begin_src f90
|
||||||
|
integer :: i, j, k, l, m
|
||||||
|
integer(8), parameter :: BUFSIZE = 10000_8
|
||||||
|
integer(8) :: offset, icount, size_max
|
||||||
|
integer :: buffer_index(4,BUFSIZE)
|
||||||
|
double precision :: buffer_values(BUFSIZE)
|
||||||
|
|
||||||
|
double precision, external :: ddot ! BLAS dot product
|
||||||
|
#+end_src
|
||||||
|
|
||||||
|
*** Obtain the name of the TREXIO file from the command line, and open it for reading
|
||||||
|
|
||||||
|
#+begin_src f90
|
||||||
|
call getarg(1, filename)
|
||||||
|
|
||||||
|
f = trexio_open (filename, 'r', TREXIO_HDF5, rc)
|
||||||
|
if (rc /= TREXIO_SUCCESS) then
|
||||||
|
call trexio_string_of_error(rc, err_msg)
|
||||||
|
print *, 'Error opening TREXIO file: '//trim(err_msg)
|
||||||
|
stop
|
||||||
|
end if
|
||||||
|
#+end_src
|
||||||
|
|
||||||
|
*** Read the nuclear repulsion energy
|
||||||
|
|
||||||
|
#+begin_src f90
|
||||||
|
rc = trexio_read_nucleus_repulsion(f, E_nn)
|
||||||
|
if (rc /= TREXIO_SUCCESS) then
|
||||||
|
call trexio_string_of_error(rc, err_msg)
|
||||||
|
print *, 'Error reading nuclear repulsion: '//trim(err_msg)
|
||||||
|
stop
|
||||||
|
end if
|
||||||
|
#+end_src
|
||||||
|
|
||||||
|
*** Read the number of molecular orbitals
|
||||||
|
|
||||||
|
#+begin_src f90
|
||||||
|
rc = trexio_read_mo_num(f, n)
|
||||||
|
if (rc /= TREXIO_SUCCESS) then
|
||||||
|
call trexio_string_of_error(rc, err_msg)
|
||||||
|
print *, 'Error reading number of MOs: '//trim(err_msg)
|
||||||
|
stop
|
||||||
|
end if
|
||||||
|
#+end_src
|
||||||
|
|
||||||
|
*** Allocate memory
|
||||||
|
|
||||||
|
#+begin_src f90
|
||||||
|
allocate( D(n,n), h0(n,n) )
|
||||||
|
allocate( G(n,n,n,n), W(n,n,n,n) )
|
||||||
|
#+end_src
|
||||||
|
|
||||||
|
*** Read one-electron quantities
|
||||||
|
|
||||||
|
#+begin_src f90
|
||||||
|
rc = trexio_has_mo_1e_int_core_hamiltonian(f)
|
||||||
|
if (rc /= TREXIO_SUCCESS) then
|
||||||
|
stop 'No core hamiltonian in file'
|
||||||
|
end if
|
||||||
|
|
||||||
|
rc = trexio_read_mo_1e_int_core_hamiltonian(f, h0)
|
||||||
|
if (rc /= TREXIO_SUCCESS) then
|
||||||
|
call trexio_string_of_error(rc, err_msg)
|
||||||
|
print *, 'Error reading core Hamiltonian: '//trim(err_msg)
|
||||||
|
stop
|
||||||
|
end if
|
||||||
|
|
||||||
|
|
||||||
|
rc = trexio_has_rdm_1e(f)
|
||||||
|
if (rc /= TREXIO_SUCCESS) then
|
||||||
|
stop 'No 1e RDM in file'
|
||||||
|
end if
|
||||||
|
|
||||||
|
rc = trexio_read_rdm_1e(f, D)
|
||||||
|
if (rc /= TREXIO_SUCCESS) then
|
||||||
|
call trexio_string_of_error(rc, err_msg)
|
||||||
|
print *, 'Error reading one-body RDM: '//trim(err_msg)
|
||||||
|
stop
|
||||||
|
end if
|
||||||
|
#+end_src
|
||||||
|
|
||||||
|
*** Read two-electron quantities
|
||||||
|
|
||||||
|
#+begin_src f90
|
||||||
|
rc = trexio_has_mo_2e_int_eri(f)
|
||||||
|
if (rc /= TREXIO_SUCCESS) then
|
||||||
|
stop 'No electron repulsion integrals in file'
|
||||||
|
end if
|
||||||
|
|
||||||
|
rc = trexio_read_mo_2e_int_eri_size (f, size_max)
|
||||||
|
if (rc /= TREXIO_SUCCESS) then
|
||||||
|
call trexio_string_of_error(rc, err_msg)
|
||||||
|
print *, 'Error reading number of ERIs: '//trim(err_msg)
|
||||||
|
stop
|
||||||
|
end if
|
||||||
|
|
||||||
|
W(:,:,:,:) = 0.d0
|
||||||
|
icount = BUFSIZE
|
||||||
|
offset = 0_8
|
||||||
|
do while (offset < size_max)
|
||||||
|
rc = trexio_read_mo_2e_int_eri(f, offset, icount, buffer_index, buffer_values)
|
||||||
|
if (rc /= TREXIO_SUCCESS) exit
|
||||||
|
do m=1,min(icount, size_max-offset)
|
||||||
|
i = buffer_index(1,m)
|
||||||
|
j = buffer_index(2,m)
|
||||||
|
k = buffer_index(3,m)
|
||||||
|
l = buffer_index(4,m)
|
||||||
|
W(i,j,k,l) = buffer_values(m)
|
||||||
|
W(k,j,i,l) = buffer_values(m)
|
||||||
|
W(i,l,k,j) = buffer_values(m)
|
||||||
|
W(k,l,i,j) = buffer_values(m)
|
||||||
|
W(j,i,l,k) = buffer_values(m)
|
||||||
|
W(j,k,l,i) = buffer_values(m)
|
||||||
|
W(l,i,j,k) = buffer_values(m)
|
||||||
|
W(l,k,j,i) = buffer_values(m)
|
||||||
|
end do
|
||||||
|
offset = offset + icount
|
||||||
|
end do
|
||||||
|
|
||||||
|
|
||||||
|
rc = trexio_has_rdm_2e(f)
|
||||||
|
if (rc /= TREXIO_SUCCESS) then
|
||||||
|
stop 'No two-body density matrix in file'
|
||||||
|
end if
|
||||||
|
|
||||||
|
rc = trexio_read_rdm_2e_size (f, size_max)
|
||||||
|
if (rc /= TREXIO_SUCCESS) then
|
||||||
|
call trexio_string_of_error(rc, err_msg)
|
||||||
|
print *, 'Error reading number of 2-RDM elements: '//trim(err_msg)
|
||||||
|
stop
|
||||||
|
end if
|
||||||
|
|
||||||
|
G(:,:,:,:) = 0.d0
|
||||||
|
icount = BUFSIZE
|
||||||
|
offset = 0_8
|
||||||
|
do while (offset < size_max)
|
||||||
|
rc = trexio_read_rdm_2e(f, offset, icount, buffer_index, buffer_values)
|
||||||
|
if (rc /= TREXIO_SUCCESS) exit
|
||||||
|
do m=1,min(icount, size_max-offset)
|
||||||
|
i = buffer_index(1,m)
|
||||||
|
j = buffer_index(2,m)
|
||||||
|
k = buffer_index(3,m)
|
||||||
|
l = buffer_index(4,m)
|
||||||
|
G(i,j,k,l) = buffer_values(m)
|
||||||
|
end do
|
||||||
|
offset = offset + icount
|
||||||
|
end do
|
||||||
|
|
||||||
|
#+end_src
|
||||||
|
|
||||||
|
*** Compute the energy
|
||||||
|
|
||||||
|
#+begin_src f90
|
||||||
|
E = E_nn + &
|
||||||
|
ddot( n**2, D, 1, h0, 1 ) + &
|
||||||
|
0.5d0 * ddot( n**4, G, 1, W, 1 )
|
||||||
|
|
||||||
|
print *, 'Energy: ', E
|
||||||
|
#+end_src
|
||||||
|
|
||||||
|
*** Terminate
|
||||||
|
|
||||||
|
#+begin_src f90
|
||||||
|
deallocate( D, h0, G, W )
|
||||||
|
|
||||||
|
end program
|
||||||
|
#+end_src
|
42
trex.org
42
trex.org
@ -2,32 +2,40 @@
|
|||||||
#+STARTUP: latexpreview
|
#+STARTUP: latexpreview
|
||||||
#+SETUPFILE: docs/theme.setup
|
#+SETUPFILE: docs/theme.setup
|
||||||
|
|
||||||
This page contains information about the general structure of the
|
This page contains information about the general structure of the
|
||||||
TREXIO library. The source code of the library can be automatically
|
TREXIO library. The source code of the library can be automatically
|
||||||
generated based on the contents of the ~trex.json~ configuration file,
|
generated based on the contents of the ~trex.json~ configuration file,
|
||||||
which itself is compiled from different sections (groups) presented below.
|
which itself is compiled from different sections (groups) presented
|
||||||
|
below.
|
||||||
|
|
||||||
For more information about the automatic generation on the source code
|
For more information about the automatic generation on the source code
|
||||||
or regarding possible modifications, please contact the TREXIO developers.
|
or regarding possible modifications, please contact the TREXIO
|
||||||
|
developers.
|
||||||
|
|
||||||
All quantities are saved in TREXIO file in atomic units.
|
All quantities are saved in TREXIO file in atomic units. The
|
||||||
The dimensions of the arrays in the tables below are given in
|
dimensions of the arrays in the tables below are given in column-major
|
||||||
column-major order (as in Fortran), and the ordering of the dimensions
|
order (as in Fortran), and the ordering of the dimensions is reversed
|
||||||
is reversed in the produced ~trex.json~ configuration file as the library is
|
in the produced ~trex.json~ configuration file as the library is
|
||||||
written in C.
|
written in C.
|
||||||
|
|
||||||
TREXIO currently supports ~int~, ~float~ and ~str~ types for both single attributes and arrays.
|
TREXIO currently supports ~int~, ~float~ and ~str~ types for both
|
||||||
Note, that some attributes might have ~dim~ type (e.g. ~num~ of the ~nucleus~ group).
|
single attributes and arrays. Note, that some attributes might have
|
||||||
This type is treated exactly the same as ~int~ with the only difference that ~dim~ variables
|
~dim~ type (e.g. ~num~ of the ~nucleus~ group). This type is treated
|
||||||
cannot be negative or zero. This additional constraint is required because ~dim~ attributes
|
exactly the same as ~int~ with the only difference that ~dim~
|
||||||
are used internally to allocate memory and to check array boundaries in the memory-safe API.
|
variables cannot be negative. This additional constraint is required
|
||||||
Most of the times, the ~dim~ variables contain ~num~ suffix.
|
because ~dim~ attributes are used internally to allocate memory and to
|
||||||
|
check array boundaries in the memory-safe API. Most of the times, the
|
||||||
|
~dim~ variables contain the ~num~ suffix.
|
||||||
|
|
||||||
In Fortran, the arrays are 1-based and in most other languages the
|
In Fortran, the arrays are 1-based and in most other languages the
|
||||||
arrays are 0-based. Hence, we introduce the ~index~ type which is an
|
arrays are 0-based. Hence, we introduce the ~index~ type which is an
|
||||||
1-based ~int~ in the Fortran interface and 0-based otherwise.
|
1-based ~int~ in the Fortran interface and 0-based otherwise.
|
||||||
|
|
||||||
|
For sparse data structures such as electron replusion integrals,
|
||||||
|
the data can be too large to fit in memory and the data needs to be
|
||||||
|
fetched using multiple function calls to perform I/O on buffers.
|
||||||
|
|
||||||
|
|
||||||
#+begin_src python :tangle trex.json :exports none
|
#+begin_src python :tangle trex.json :exports none
|
||||||
{
|
{
|
||||||
#+end_src
|
#+end_src
|
||||||
|
Loading…
Reference in New Issue
Block a user