Add preparation files for localization of cyclopentadiene
This commit is contained in:
parent
f8b215b84d
commit
bb8aada7f2
13
cyclopentadiene/cc-pvdz/cyclopentadiene.ang
Normal file
13
cyclopentadiene/cc-pvdz/cyclopentadiene.ang
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
11
|
||||||
|
|
||||||
|
C 0.00000000 0.00000000 -1.23358114
|
||||||
|
C 0.00000000 1.17587988 -0.30094937
|
||||||
|
C 0.00000000 -1.17587988 -0.30094937
|
||||||
|
C 0.00000000 0.73298691 0.97248442
|
||||||
|
C 0.00000000 -0.73298691 0.97248442
|
||||||
|
H 0.87912477 0.00000000 -1.88606325
|
||||||
|
H -0.87912477 0.00000000 -1.88606325
|
||||||
|
H 0.00000000 2.20428982 -0.62504626
|
||||||
|
H 0.00000000 -2.20428982 -0.62504626
|
||||||
|
H 0.00000000 1.34683318 1.85927632
|
||||||
|
H 0.00000000 -1.34683318 1.85927632
|
27
cyclopentadiene/cc-pvdz/localize.sh
Executable file
27
cyclopentadiene/cc-pvdz/localize.sh
Executable file
@ -0,0 +1,27 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
# localize.sh xyz basis ezfio charge multiplicity
|
||||||
|
|
||||||
|
XYZ=$1
|
||||||
|
BASIS=$2
|
||||||
|
EZFIO=${3%/}
|
||||||
|
CHARGE=${4:-0}
|
||||||
|
MULT=${5:-1}
|
||||||
|
|
||||||
|
./localize \
|
||||||
|
-b $BASIS \
|
||||||
|
-x $XYZ \
|
||||||
|
-i $EZFIO \
|
||||||
|
-c $CHARGE \
|
||||||
|
-m $MULT \
|
||||||
|
-o ${EZFIO}.mo \
|
||||||
|
-s "sp"
|
||||||
|
|
||||||
|
cp -r ${EZFIO} ${EZFIO}.localized
|
||||||
|
|
||||||
|
source ~/tmpdir/qp2/quantum_package.rc
|
||||||
|
|
||||||
|
qp set_file ${EZFIO}.localized
|
||||||
|
cat ${EZFIO}.mo | qp set mo_basis mo_coef
|
||||||
|
|
||||||
|
|
17
cyclopentadiene/cc-pvdz/run_loc.sh
Executable file
17
cyclopentadiene/cc-pvdz/run_loc.sh
Executable file
@ -0,0 +1,17 @@
|
|||||||
|
#!/bin/bash -x
|
||||||
|
#SBATCH -N 1 # 1 noeud
|
||||||
|
#SBATCH -n 1 # 1 processus
|
||||||
|
#SBATCH -c 36 # 36 coeurs
|
||||||
|
|
||||||
|
INPUT=$1
|
||||||
|
source ~/tmpdir/qp2/quantum_package.rc
|
||||||
|
|
||||||
|
set -e
|
||||||
|
|
||||||
|
./localize.sh ${INPUT}.ang ${QP_ROOT}/data/basis/cc-pvdz ${INPUT}
|
||||||
|
qp set_file ${INPUT}.localized
|
||||||
|
qp set determinants n_states 1
|
||||||
|
qp set determinants read_wf False
|
||||||
|
qp set determinants s2_eig False
|
||||||
|
qp set determinants n_det_max 1e8
|
||||||
|
qp run fci > ${INPUT}.localized.nofci.out
|
Loading…
Reference in New Issue
Block a user