10
0
mirror of https://github.com/LCPQ/QUESTDB_website.git synced 2024-07-22 18:57:38 +02:00

New reference for excitation type is now only TBE_aug-cc-pVTZ

This commit is contained in:
Mickaël Véril 2021-11-03 12:07:41 +01:00 committed by Anthony Scemama
parent ba68dc7b5c
commit c3f18d575e

View File

@ -113,11 +113,7 @@ draft: false
for (mol of uniq(subset.map(d => d.molecule))) {
const submol = subset.filter(d => d.molecule === mol)
const source = submol.find((d) => {
if (db.sets.get(d.set.name)[d.set.index] === "10.1021/acs.jctc.8b01205") {
return d.method.name === "CASPT2" && d.method.basis === "aug-cc-pVDZ"
} else {
return d.method.isTBE
}
return d.method.isTBE && d.method.basis === "aug-cc-pVTZ"
})
if (source !== undefined) {
for (const dat of submol.filter((d) => d !== source)) {