Skip to content

Commit 058024d

Browse files
committed
1. Changing acc and conv in qdescp to vtight
1 parent 0eeb6df commit 058024d

File tree

4 files changed

+6
-5
lines changed

4 files changed

+6
-5
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ AQME is freely available under an [MIT](https://opensource.org/licenses/MIT) Lic
2929

3030
## Reference
3131
If you use any of the AQME modules, please include this citation:
32-
AQME v1.4, Alegre-Requena, J. V.; Sowndarya, S.; Pérez-Soto, R.; Alturaifi, T.; Paton, R. AQME: Automated Quantum Mechanical Environments for Researchers and Educators. Wiley Interdiscip. Rev. Comput. Mol. Sci. 2023, DOI: 10.1002/wcms.1663.
32+
Alegre-Requena, J. V.; Sowndarya, S.; Pérez-Soto, R.; Alturaifi, T.; Paton, R. AQME: Automated Quantum Mechanical Environments for Researchers and Educators. Wiley Interdiscip. Rev. Comput. Mol. Sci. 2023, 13, e1663. (DOI: 10.1002/wcms.1663).
3333

3434
Additionally, please include the corresponding references for the following programs:
3535
* If you used CSEARCH with RDKit methods or from SMILES: [RDKit](https://www.rdkit.org)

aqme/argument_parser.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@
101101
"prefix": "",
102102
"qdescp": False,
103103
"qdescp_temp": 300,
104-
"qdescp_acc": 0.2,
104+
"qdescp_acc": 0.05,
105105
"qdescp_solvent": None,
106106
"boltz": True,
107107
"nmr_atoms": [6, 1], # [C,H]

aqme/qdescp.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -409,10 +409,12 @@ def run_sp_xtb(self, xyz_file, charge, mult, name, destination):
409409
# initial xTB optimization
410410
if self.args.xtb_opt:
411411
os.chdir(dat_dir)
412+
412413
command_opt = [
413414
"xtb",
414415
self.xtb_xyz,
415416
"--opt",
417+
"vtight",
416418
"--acc",
417419
str(self.args.qdescp_acc),
418420
"--gfn",
@@ -533,6 +535,7 @@ def run_sp_xtb(self, xyz_file, charge, mult, name, destination):
533535

534536
os.chdir(self.args.initial_dir)
535537

538+
536539
def collect_xtb_properties(self,name_initial,atom_props,update_atom_props):
537540
"""
538541
Collects all xTB properties from the files and puts them in a JSON file

docs/README.rst

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -409,9 +409,7 @@ Reference
409409
.. reference-start
410410
411411
If you use any of the AQME modules, please include this citation:
412-
* AQME v1.4, Alegre-Requena, J. V.; Sowndarya, S.; Pérez-Soto, R.; Alturaifi, T.;
413-
Paton, R. AQME: Automated Quantum Mechanical Environments for Researchers and Educators.
414-
Wiley Interdiscip. Rev. Comput. Mol. Sci. 2023, DOI: 10.1002/wcms.1663.
412+
* AQME v1.5, Alegre-Requena, J. V.; Sowndarya, S.; Pérez-Soto, R.; Alturaifi, T.; Paton, R. AQME: Automated Quantum Mechanical Environments for Researchers and Educators. Wiley Interdiscip. Rev. Comput. Mol. Sci. 2023, 13, e1663. (DOI: 10.1002/wcms.1663.)
415413

416414
Additionally, please include the corresponding references for the following programs:
417415
* If you used CSEARCH with RDKit methods: `RDKit <https://www.rdkit.org/>`__

0 commit comments

Comments
 (0)