Grid-based stochastic and deterministic electronic structure methods. The code is currently in the development stage and is not intended for production runs. The following features will be implemented shortly.
- Grid-based Hartree-Fock method
- Grid-based explicitly correlated MP2 in real space (Sinanoglu theory)
- Memory efficient FCIQMC in real space using mixed grid-orbital representation.
- Stochastic Laplace transform R12-MP2 in real space
grid_qmc is a mixed C++/Fortran project. The following is required to build grid_qmc
- C++14 compliant compiler and a Fortran compiler supporting FORTRAN 90 features (has only been tested with GCC 8)
- CMake (has only been tested with CMake 3.13)
- BLAS & LAPACK
- Armadillo
- GNU Scientific Library (version >= 2.5)
Some parts of the code use OpenMP. Their compilation can be controlled via CMake flags as explained in the next section. Please note that communicating the location of GSL and Armadillo to CMake can be tricky if they are not installed in the standard locations on your operating system. The custom FindArmadillo module shipped with the source code should successfully identify Aramdillo in $HOME/local, while an non-standard location of GSL can be specified via an environment variable (see below).
Please navigate to the top-level directory of the source tree and issue a sequence of commands
cmake . -B build -DCMAKE_BUILD_TYPE=Release
cd build
make
If you want to used OpenMP features prepend the first line with -DUSE_OPENMP=ON. If CMake has trouble finding GSL on your system its location can be specified by setting GSL_ROOT_DIR
export GSL_ROOT_DIR=$HOME/local
Alternatively, all the relevant CMake variables can be set explicitly, e.g.
cmake . -B build -DGSL_INCLUDE_DIR=$HOME/local/include/ -DGSL_LIBRARY=$HOME/local/lib/libgsl.so -DGSL_CBLAS_LIBRARY=$HOME/local/lib/libgslcblas.so
Similar approach can be used to fix problems with Aramdillo.
TBA
Alexander A. Kunitsa (UIUC, Hirata Group)
TBA