mirror of
https://github.com/QuantumPackage/qp2.git
synced 2024-11-07 22:53:52 +01:00
41 lines
809 B
Bash
41 lines
809 B
Bash
#!/usr/bin/env bats
|
|
|
|
source $QP_ROOT/tests/bats/common.bats.sh
|
|
source $QP_ROOT/quantum_package.rc
|
|
|
|
|
|
function run() {
|
|
thresh=1.e-8
|
|
functional=$2
|
|
qp set_file $1
|
|
qp edit --check
|
|
qp set determinants n_states 1
|
|
qp set scf_utils thresh_scf 1.e-10
|
|
qp set dft_keywords exchange_functional $functional
|
|
qp set dft_keywords correlation_functional $functional
|
|
qp set ao_two_e_erf_ints mu_erf 0.5
|
|
qp set becke_numerical_grid grid_type_sgn 1
|
|
qp_reset --mos $1
|
|
qp run rs_ks_scf
|
|
energy="$(ezfio get kohn_sham_rs energy)"
|
|
eq $energy $3 $thresh
|
|
}
|
|
|
|
@test "H3COH" {
|
|
run h3coh.ezfio sr_pbe -115.50238225208
|
|
}
|
|
|
|
@test "HCN" {
|
|
run hcn.ezfio sr_pbe -93.26674673761752
|
|
}
|
|
|
|
@test "N2" {
|
|
run n2.ezfio sr_pbe -109.404692225719
|
|
}
|
|
|
|
@test "SiH2_3B1" {
|
|
run sih2_3b1.ezfio sr_lda -289.4398733527755
|
|
}
|
|
|
|
|