10
0
mirror of https://github.com/QuantumPackage/qp2.git synced 2024-06-22 21:22:25 +02:00
QuantumPackage/plugins/local/tc_scf/11.tc_scf.bats

106 lines
2.1 KiB
Plaintext
Raw Permalink Normal View History

2023-02-07 13:43:37 +01:00
#!/usr/bin/env bats
source $QP_ROOT/tests/bats/common.bats.sh
source $QP_ROOT/quantum_package.rc
function run_Ne() {
rm -rf Ne_tc_scf
echo Ne > Ne.xyz
qp create_ezfio -b cc-pcvdz Ne.xyz -o Ne_tc_scf
2023-10-17 17:52:43 +02:00
qp run scf
2024-03-12 16:52:53 +01:00
qp set tc_keywords tc_integ_type numeric
qp set jastrow env_type Sum_Gauss
2023-10-17 17:52:43 +02:00
qp set hamiltonian mu_erf 0.87
2024-03-12 16:52:53 +01:00
qp set jastrow j1e_type None
qp set jastrow env_coef "[1.]"
qp set jastrow env_expo "[1.5]"
2023-10-17 17:52:43 +02:00
qp run tc_scf | tee ${EZFIO_FILE}.tc_scf.out
2023-02-07 13:43:37 +01:00
eref=-128.552134
energy="$(qp get tc_scf bitc_energy)"
2024-03-12 16:52:53 +01:00
eq $energy $eref 2e-4
2023-02-07 13:43:37 +01:00
}
@test "Ne" {
2023-10-17 17:52:43 +02:00
run_Ne
2023-02-07 13:43:37 +01:00
}
function run_C() {
rm -rf C_tc_scf
echo C > C.xyz
qp create_ezfio -b cc-pcvdz C.xyz -o C_tc_scf -m 3
2023-10-17 17:52:43 +02:00
qp run scf
2024-03-12 16:52:53 +01:00
qp set tc_keywords tc_integ_type numeric
qp set jastrow env_type Sum_Gauss
2023-10-17 17:52:43 +02:00
qp set hamiltonian mu_erf 0.87
2024-03-12 16:52:53 +01:00
qp set jastrow j1e_type None
qp set jastrow env_coef "[1.]"
qp set jastrow env_expo "[1.5]"
2023-10-17 17:52:43 +02:00
qp run tc_scf | tee ${EZFIO_FILE}.tc_scf.out
eref=-37.691254356408791
energy="$(qp get tc_scf bitc_energy)"
2024-03-12 16:52:53 +01:00
eq $energy $eref 2e-4
}
@test "C" {
2023-10-17 17:52:43 +02:00
run_C
}
function run_O() {
rm -rf O_tc_scf
echo O > O.xyz
qp create_ezfio -b cc-pcvdz O.xyz -o O_tc_scf -m 3
2023-10-17 17:52:43 +02:00
qp run scf
2024-03-12 16:52:53 +01:00
qp set tc_keywords tc_integ_type numeric
qp set jastrow env_type Sum_Gauss
qp set jastrow j1e_type None
qp set jastrow env_coef "[1.]"
qp set jastrow env_expo "[1.5]"
2023-10-17 17:52:43 +02:00
qp set hamiltonian mu_erf 0.87
2023-10-17 17:52:43 +02:00
qp run tc_scf | tee ${EZFIO_FILE}.tc_scf.out
eref=-74.814687229354590
energy="$(qp get tc_scf bitc_energy)"
2024-03-12 16:52:53 +01:00
eq $energy $eref 2e-4
}
@test "O" {
2023-10-17 17:52:43 +02:00
run_O
}
function run_ch2() {
rm -rf ch2_tc_scf
cp ${QP_ROOT}/tests/input/ch2.xyz .
2023-10-17 17:52:43 +02:00
qp create_ezfio -b "C:cc-pcvdz|H:cc-pvdz" ch2.xyz -o ch2_tc_scf
qp run scf
2024-03-12 16:52:53 +01:00
qp set tc_keywords tc_integ_type numeric
qp set jastrow env_type Sum_Gauss
qp set jastrow j1e_type None
qp set jastrow env_coef "[1., 1., 1.]"
qp set jastrow env_expo '[1.5,10000,10000]'
2023-10-17 17:52:43 +02:00
qp set hamiltonian mu_erf 0.87
2023-10-17 17:52:43 +02:00
qp run tc_scf | tee ${EZFIO_FILE}.tc_scf.out
eref=-38.903247818077737
energy="$(qp get tc_scf bitc_energy)"
2024-03-12 16:52:53 +01:00
eq $energy $eref 2e-4
}
@test "ch2" {
2023-10-17 17:52:43 +02:00
run_ch2
}