Add run and xyz for cyclopentadiene cc-pvtz

This commit is contained in:
Mickaël Véril 2020-10-27 11:18:34 +01:00
parent d1216bbb33
commit 3b8e94e102
2 changed files with 35 additions and 0 deletions

View File

@ -0,0 +1,13 @@
11
C 0.00000000 0.00000000 -2.33113051
C 0.00000000 2.22209092 -0.56871188
C 0.00000000 -2.22209092 -0.56871188
C 0.00000000 1.38514451 1.83772922
C 0.00000000 -1.38514451 1.83772922
H 1.66130504 0.00000000 -3.56414299
H -1.66130504 0.00000000 -3.56414299
H 0.00000000 4.16550405 -1.18116624
H 0.00000000 -4.16550405 -1.18116624
H 0.00000000 2.54514584 3.51352303
H 0.00000000 -2.54514584 3.51352303

View File

@ -0,0 +1,22 @@
#!/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
qp set_file $INPUT
qp set determinants n_states 1
qp set determinants read_wf True
qp set determinants s2_eig False
qp set determinants n_det_max 1e7
qp run scf > ${INPUT}.scf.out
qp set_frozen_core > ${INPUT}.fc.out
qp run fci > ${INPUT}.fci.out || :
qp run save_natorb > ${INPUT}.natorb.out
qp set determinants n_det_max 1e8
qp run fci > ${INPUT}.nofci.out