Skip to content

Commit 514094b

Browse files
committed
Fix test_write_inputs
1 parent 3c36bbf commit 514094b

File tree

5 files changed

+12
-6
lines changed

5 files changed

+12
-6
lines changed

atomate/qchem/firetasks/tests/test_write_inputs.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -105,13 +105,14 @@ def test_write_input(self):
105105
rem = {
106106
"job_type": "opt",
107107
"basis": "def2-tzvppd",
108-
"max_scf_cycles": 200,
108+
"max_scf_cycles": 100,
109109
"method": "wB97xd",
110110
"geom_opt_max_cycles": 200,
111111
"gen_scfman": True,
112112
"scf_algorithm": "diis",
113113
"xc_grid": 3,
114114
"thresh": 14,
115+
"s2thresh": 16,
115116
"sym_ignore": True,
116117
"symmetry": False,
117118
"resp_charges": True,
@@ -128,13 +129,14 @@ def test_write_custom_input(self):
128129
rem = {
129130
"job_type": "opt",
130131
"basis": "def2-tzvppd",
131-
"max_scf_cycles": 200,
132+
"max_scf_cycles": 100,
132133
"method": "wB97xd",
133134
"geom_opt_max_cycles": 200,
134135
"gen_scfman": True,
135136
"scf_algorithm": "diis",
136137
"xc_grid": 3,
137138
"thresh": 14,
139+
"s2thresh": 16,
138140
"sym_ignore": True,
139141
"symmetry": False,
140142
"resp_charges": True,

atomate/qchem/test_files/co_qc.in

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,14 @@ $end
77
$rem
88
job_type = opt
99
basis = def2-tzvppd
10-
max_scf_cycles = 200
10+
max_scf_cycles = 100
1111
method = wB97xd
1212
geom_opt_max_cycles = 200
1313
gen_scfman = True
1414
scf_algorithm = diis
1515
xc_grid = 3
1616
thresh = 14
17+
s2thresh = 16
1718
symmetry = False
1819
sym_ignore = True
1920
resp_charges = True

atomate/qchem/test_files/to_opt.qin

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,10 @@ $rem
1818
gen_scfman = True
1919
scf_algorithm = diis
2020
geom_opt_max_cycles = 200
21-
max_scf_cycles = 200
21+
max_scf_cycles = 100
2222
xc_grid = 3
2323
thresh = 14
24+
s2thresh = 16
2425
symmetry = False
2526
sym_ignore = True
2627
resp_charges = True

atomate/qchem/test_files/to_opt_pcm.qin

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,11 @@ $rem
1818
gen_scfman = True
1919
scf_algorithm = diis
2020
geom_opt_max_cycles = 200
21-
max_scf_cycles = 200
21+
max_scf_cycles = 100
2222
SOLVENT_METHOD = PCM
2323
xc_grid = 3
2424
thresh = 14
25+
s2thresh = 16
2526
symmetry = False
2627
sym_ignore = True
2728
resp_charges = True

atomate/qchem/test_files/to_opt_smd.qin

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,11 @@ $rem
1818
gen_scfman = True
1919
scf_algorithm = diis
2020
geom_opt_max_cycles = 200
21-
max_scf_cycles = 200
21+
max_scf_cycles = 100
2222
SOLVENT_METHOD = smd
2323
xc_grid = 3
2424
thresh = 14
25+
s2thresh = 16
2526
ideriv = 1
2627
symmetry = False
2728
sym_ignore = True

0 commit comments

Comments
 (0)