Skip to content
Snippets Groups Projects
Commit cd58ba7d authored by Ruocheng Han's avatar Ruocheng Han
Browse files

Update README.md

parent 6037a047
No related branches found
No related tags found
No related merge requests found
...@@ -10,7 +10,7 @@ Optional of python packages: ...@@ -10,7 +10,7 @@ Optional of python packages:
```shell ```shell
pycuda, skcuda # if you use GPU for preparing Ajb pycuda, skcuda # if you use GPU for preparing Ajb
``` ```
Requirement of external packages: Requirement of external packages to run example files:
```shell ```shell
Psi4 # to generate wavefunction and FCIDUMP file Psi4 # to generate wavefunction and FCIDUMP file
molden2aim # to convert molden format to .WFN molden2aim # to convert molden format to .WFN
...@@ -24,18 +24,22 @@ Legendre quadrature (200 radial points) and Lebedev quadrature (noted as 031, 35 ...@@ -24,18 +24,22 @@ Legendre quadrature (200 radial points) and Lebedev quadrature (noted as 031, 35
```shell ```shell
# prepare wavefunction and FCIDUMP files, here we use Psi4 package # prepare wavefunction and FCIDUMP files, here we use Psi4 package
# one can also use other packages, e.g. PySCF, OpenMolcas
cd examples/ch4_200_031/calcu/ cd examples/ch4_200_031/calcu/
psi4 -n 8 -i input.dat -o output.dat psi4 -n 8 -i input.dat -o output.dat
# convert molden format of wavefunction and txt format of FCIDUMP (in Psi 4 is INPDUMP) # convert molden format of wavefunction and txt format of FCIDUMP (in Psi 4 is INPDUMP)
# into .npy files # into .npy files
# Note that external package is needed to convert molden to .WFN first, we use molden2aim # Note that external package is needed to convert molden to .wfn first, we use molden2aim
# (https://github.com/zorkzou/Molden2AIM) for example. # (https://github.com/zorkzou/Molden2AIM) for example.
cd ../prep/ cd ../prep/
chmod +x mlcorr_prep.sh chmod +x mlcorr_prep.sh
./mlcorr_prep.sh ch4 ./mlcorr_prep.sh ch4
# # calculate MP2 MP3 MP4 energy density
cd ../eneden/
chmod +x eneden.sh
./eneden.sh ch4
``` ```
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment