This file is indexed.

/usr/share/doc/psi4/html/db.html is in psi4-data 1:0.3-5.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
  "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">


<html xmlns="http://www.w3.org/1999/xhtml">
  <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    
    <title>Database &mdash; Psi4 [] Docs</title>
    
    <link rel="stylesheet" href="_static/psi4.css" type="text/css" />
    <link rel="stylesheet" href="_static/pygments.css" type="text/css" />
    <link rel="stylesheet" href="./" type="text/css" />
    
    <script type="text/javascript">
      var DOCUMENTATION_OPTIONS = {
        URL_ROOT:    './',
        VERSION:     '',
        COLLAPSE_INDEX: false,
        FILE_SUFFIX: '.html',
        HAS_SOURCE:  true
      };
    </script>
    <script type="text/javascript" src="_static/jquery.js"></script>
    <script type="text/javascript" src="_static/underscore.js"></script>
    <script type="text/javascript" src="_static/doctools.js"></script>
    <script type="text/javascript" src="_static/jquery.cookie.js"></script>
    <script type="text/javascript" src="_static/toggle_sections.js"></script>
    <script type="text/javascript" src="_static/toggle_sidebar.js"></script>
    <script type="text/javascript" src="_static/toggle_codeprompt.js"></script>
    <link rel="shortcut icon" href="_static/favicon-psi4.ico"/>
    <link rel="top" title="Psi4 [] Docs" href="index.html" />
    <link rel="up" title="Psithon Functions: Invoking a Calculation" href="psithonfunc.html" />
    <link rel="next" title="JSCH" href="autodoc_available_databases.html" />
    <link rel="prev" title="Frequency" href="freq.html" /> 
  </head>
  <body role="document">
    <div class="relbar-top">
        
    <div class="related" role="navigation" aria-label="related navigation">
      <h3>Navigation</h3>
      <ul>
        <li class="right" style="margin-right: 10px">
          <a href="genindex.html" title="General Index"
             accesskey="I">index</a></li>
        <li class="right" >
          <a href="py-modindex.html" title="Python Module Index"
             >modules</a> &nbsp; &nbsp;</li>
        <li class="right" >
          <a href="contents.html" title="Table Of Contents"
             accesskey="C">toc</a> &nbsp; &nbsp;</li>
        <li class="right" >
          <a href="autodoc_available_databases.html" title="JSCH"
             accesskey="N">next</a> &nbsp; &nbsp;</li>
        <li class="right" >
          <a href="freq.html" title="Frequency"
             accesskey="P">previous</a> &nbsp; &nbsp;</li>
    <li><a href="index.html">Psi4 []</a> &raquo; </li>

          <li class="nav-item nav-item-1"><a href="psithonfunc.html" accesskey="U">Psithon Functions: Invoking a Calculation</a> &raquo;</li> 
      </ul>
    </div>
    </div>
  

    <div class="document">
      <div class="documentwrapper">
        <div class="bodywrapper">
          <div class="body" role="main">
            
  <a class="reference internal image-reference" href="_images/psi4banner.png"><img alt="Psi4 Project Logo" src="_images/psi4banner.png" style="width: 100%;" /></a>
<div class="section" id="database">
<span id="sec-db"></span><span id="index-0"></span><h1>Database<a class="headerlink" href="#database" title="Permalink to this headline"></a></h1>
<p><em>Code author: Lori A. Burns</em></p>
<p><em>Section author: Lori A. Burns</em></p>
<dl class="function">
<dt id="wrappers.database">
<code class="descname">database</code><span class="sig-paren">(</span><em>name</em>, <em>db_name</em><span class="optional">[</span>, <em>func</em>, <em>mode</em>, <em>cp</em>, <em>rlxd</em>, <em>symm</em>, <em>zpe</em>, <em>benchmark</em>, <em>tabulate</em>, <em>subset</em><span class="optional">]</span><span class="sig-paren">)</span><a class="reference internal" href="_modules/wrappers.html#database"><span class="viewcode-link">[source]</span></a><a class="headerlink" href="#wrappers.database" title="Permalink to this definition"></a></dt>
<dd><p>Function to access the molecule objects and reference energies of
popular chemical databases.</p>
<table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Aliases:</th><td class="field-body">db()</td>
</tr>
<tr class="field-even field"><th class="field-name">Returns:</th><td class="field-body">(<em>float</em>) Mean absolute deviation of the database in kcal/mol</td>
</tr>
<tr class="field-odd field"><th class="field-name">PSI variables:</th><td class="field-body"></td>
</tr>
</tbody>
</table>
<table class="hlist"><tr><td><ul class="simple">
<li><a class="reference internal" href="glossary_psivariables.html#psivar-db_nameDATABASEMEANSIGNEDDEVIATION"><code class="xref std std-psivar docutils literal"><span class="pre">db_name</span> <span class="pre">DATABASE</span> <span class="pre">MEAN</span> <span class="pre">SIGNED</span> <span class="pre">DEVIATION</span></code></a></li>
<li><a class="reference internal" href="glossary_psivariables.html#psivar-db_nameDATABASEMEANABSOLUTEDEVIATION"><code class="xref std std-psivar docutils literal"><span class="pre">db_name</span> <span class="pre">DATABASE</span> <span class="pre">MEAN</span> <span class="pre">ABSOLUTE</span> <span class="pre">DEVIATION</span></code></a></li>
<li><a class="reference internal" href="glossary_psivariables.html#psivar-db_nameDATABASEROOT-MEAN-SQUARESIGNEDDEVIATION"><code class="xref std std-psivar docutils literal"><span class="pre">db_name</span> <span class="pre">DATABASE</span> <span class="pre">ROOT-MEAN-SQUARE</span> <span class="pre">DEVIATION</span></code></a></li>
<li>Python dictionaries of results accessible as <code class="docutils literal"><span class="pre">DB_RGT</span></code> and <code class="docutils literal"><span class="pre">DB_RXN</span></code>.</li>
</ul>
</td></tr></table>
<div class="admonition note">
<p class="first admonition-title">Note</p>
<p class="last">It is very easy to make a database from a collection of xyz files
using the script <a class="reference external" href="https://github.com/psi4/psi4public/blob/master/lib/scripts/ixyz2database.pl">psi4/lib/scripts/ixyz2database.pl</a>.
See <a class="reference internal" href="quickadddatabase.html#sec-createdatabase"><span>Creating a Database</span></a> for details.</p>
</div>
<div class="admonition caution">
<p class="first admonition-title">Caution</p>
<p>Some features are not yet implemented. Buy a developer some coffee.</p>
<ul class="last simple">
<li>In sow/reap mode, use only global options (e.g., the local option set by <code class="docutils literal"><span class="pre">set</span> <span class="pre">scf</span> <span class="pre">scf_type</span> <span class="pre">df</span></code> will not be respected).</li>
</ul>
</div>
<div class="admonition note">
<p class="first admonition-title">Note</p>
<p class="last">To access a database that is not embedded in a <span class="sc">Psi4</span>
distribution, add the path to the directory containing the database
to the environment variable <span class="target" id="index-1"></span><a class="reference internal" href="external.html#envvar-PYTHONPATH"><code class="xref std std-envvar docutils literal"><span class="pre">PYTHONPATH</span></code></a>.</p>
</div>
<table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first simple">
<li><strong>name</strong> (<em>string</em>) &#8211; <p><code class="docutils literal"><span class="pre">'scf'</span></code> || <code class="docutils literal"><span class="pre">'sapt0'</span></code> || <code class="docutils literal"><span class="pre">'ccsd(t)'</span></code> || etc.</p>
<p>First argument, usually unlabeled. Indicates the computational method
to be applied to the database. May be any valid argument to
<a class="reference internal" href="energy.html#driver.energy" title="driver.energy"><code class="xref py py-func docutils literal"><span class="pre">energy()</span></code></a>.</p>
</li>
<li><strong>db_name</strong> (<em>string</em>) &#8211; <p><code class="docutils literal"><span class="pre">'BASIC'</span></code> || <code class="docutils literal"><span class="pre">'S22'</span></code> || <code class="docutils literal"><span class="pre">'HTBH'</span></code> || etc.</p>
<p>Second argument, usually unlabeled. Indicates the requested database
name, matching (case insensitive) the name of a python file in
<code class="docutils literal"><span class="pre">psi4/lib/databases</span></code> or <span class="target" id="index-2"></span><a class="reference internal" href="external.html#envvar-PYTHONPATH"><code class="xref std std-envvar docutils literal"><span class="pre">PYTHONPATH</span></code></a>.  Consult that
directory for available databases and literature citations.</p>
</li>
<li><strong>func</strong> (<a class="reference internal" href="notes_py.html#op-py-function"><span>function</span></a>) &#8211; <p><img class="math" src="_images/math/fcb47d177e58f83257e03078e39b830ee90caec8.png" alt="\Rightarrow" style="vertical-align: -1px"/> <code class="docutils literal"><span class="pre">energy</span></code> <img class="math" src="_images/math/589f0defd3f7d56ed5fb2872215af7ebba9db67a.png" alt="\Leftarrow" style="vertical-align: -1px"/> || <code class="docutils literal"><span class="pre">optimize</span></code> || <code class="docutils literal"><span class="pre">cbs</span></code></p>
<p>Indicates the type of calculation to be performed on each database
member. The default performs a single-point <code class="docutils literal"><span class="pre">energy('name')</span></code>, while
<code class="docutils literal"><span class="pre">optimize</span></code> perfoms a geometry optimization on each reagent, and
<code class="docutils literal"><span class="pre">cbs</span></code> performs a compound single-point energy. If a nested series
of python functions is intended (see <a class="reference internal" href="intercalls.html#sec-intercalls"><span>Function Intercalls</span></a>), use
keyword <code class="docutils literal"><span class="pre">db_func</span></code> instead of <code class="docutils literal"><span class="pre">func</span></code>.</p>
</li>
<li><strong>mode</strong> (<em>string</em>) &#8211; <p><img class="math" src="_images/math/fcb47d177e58f83257e03078e39b830ee90caec8.png" alt="\Rightarrow" style="vertical-align: -1px"/> <code class="docutils literal"><span class="pre">'continuous'</span></code> <img class="math" src="_images/math/589f0defd3f7d56ed5fb2872215af7ebba9db67a.png" alt="\Leftarrow" style="vertical-align: -1px"/> || <code class="docutils literal"><span class="pre">'sow'</span></code> || <code class="docutils literal"><span class="pre">'reap'</span></code></p>
<p>Indicates whether the calculations required to complete the
database are to be run in one file (<code class="docutils literal"><span class="pre">'continuous'</span></code>) or are to be
farmed out in an embarrassingly parallel fashion
(<code class="docutils literal"><span class="pre">'sow'</span></code>/<code class="docutils literal"><span class="pre">'reap'</span></code>).  For the latter, run an initial job with
<code class="docutils literal"><span class="pre">'sow'</span></code> and follow instructions in its output file.</p>
</li>
<li><strong>cp</strong> (<a class="reference internal" href="notes_py.html#op-py-boolean"><span>boolean</span></a>) &#8211; <p><code class="docutils literal"><span class="pre">'on'</span></code> || <img class="math" src="_images/math/fcb47d177e58f83257e03078e39b830ee90caec8.png" alt="\Rightarrow" style="vertical-align: -1px"/> <code class="docutils literal"><span class="pre">'off'</span></code> <img class="math" src="_images/math/589f0defd3f7d56ed5fb2872215af7ebba9db67a.png" alt="\Leftarrow" style="vertical-align: -1px"/></p>
<p>Indicates whether counterpoise correction is employed in computing
interaction energies. Use this option and NOT the <a class="reference internal" href="cp.html#wrappers.cp" title="wrappers.cp"><code class="xref py py-func docutils literal"><span class="pre">cp()</span></code></a>
function for BSSE correction in database().  Option available
(See <a class="reference internal" href="#sec-availabledatabases"><span>Available Databases</span></a>) only for databases of bimolecular complexes.</p>
</li>
<li><strong>rlxd</strong> (<a class="reference internal" href="notes_py.html#op-py-boolean"><span>boolean</span></a>) &#8211; <p><code class="docutils literal"><span class="pre">'on'</span></code> || <img class="math" src="_images/math/fcb47d177e58f83257e03078e39b830ee90caec8.png" alt="\Rightarrow" style="vertical-align: -1px"/> <code class="docutils literal"><span class="pre">'off'</span></code> <img class="math" src="_images/math/589f0defd3f7d56ed5fb2872215af7ebba9db67a.png" alt="\Leftarrow" style="vertical-align: -1px"/></p>
<p>Indicates whether correction for deformation energy is
employed in computing interaction energies.  Option available
(See <a class="reference internal" href="#sec-availabledatabases"><span>Available Databases</span></a>) only for databases of bimolecular complexes
with non-frozen monomers, e.g., HBC6.</p>
</li>
<li><strong>symm</strong> (<a class="reference internal" href="notes_py.html#op-py-boolean"><span>boolean</span></a>) &#8211; <p><img class="math" src="_images/math/fcb47d177e58f83257e03078e39b830ee90caec8.png" alt="\Rightarrow" style="vertical-align: -1px"/> <code class="docutils literal"><span class="pre">'on'</span></code> <img class="math" src="_images/math/589f0defd3f7d56ed5fb2872215af7ebba9db67a.png" alt="\Leftarrow" style="vertical-align: -1px"/> || <code class="docutils literal"><span class="pre">'off'</span></code></p>
<p>Indicates whether the native symmetry of the database reagents is
employed (<code class="docutils literal"><span class="pre">'on'</span></code>) or whether it is forced to <img class="math" src="_images/math/a7223a037dfd9076deee6e5754c08434bebef462.png" alt="C_1" style="vertical-align: -4px"/> symmetry
(<code class="docutils literal"><span class="pre">'off'</span></code>). Some computational methods (e.g., SAPT) require no
symmetry, and this will be set by database().</p>
</li>
<li><strong>zpe</strong> (<a class="reference internal" href="notes_py.html#op-py-boolean"><span>boolean</span></a>) &#8211; <p><code class="docutils literal"><span class="pre">'on'</span></code> || <img class="math" src="_images/math/fcb47d177e58f83257e03078e39b830ee90caec8.png" alt="\Rightarrow" style="vertical-align: -1px"/> <code class="docutils literal"><span class="pre">'off'</span></code> <img class="math" src="_images/math/589f0defd3f7d56ed5fb2872215af7ebba9db67a.png" alt="\Leftarrow" style="vertical-align: -1px"/></p>
<p>Indicates whether zero-point-energy corrections are appended to
single-point energy values. Option valid only for certain
thermochemical databases. Disabled until Hessians ready.</p>
</li>
<li><strong>benchmark</strong> (<em>string</em>) &#8211; <p><img class="math" src="_images/math/fcb47d177e58f83257e03078e39b830ee90caec8.png" alt="\Rightarrow" style="vertical-align: -1px"/> <code class="docutils literal"><span class="pre">'default'</span></code> <img class="math" src="_images/math/589f0defd3f7d56ed5fb2872215af7ebba9db67a.png" alt="\Leftarrow" style="vertical-align: -1px"/> || <code class="docutils literal"><span class="pre">'S22A'</span></code> || etc.</p>
<p>Indicates whether a non-default set of reference energies, if
available (See <a class="reference internal" href="#sec-availabledatabases"><span>Available Databases</span></a>), are employed for the
calculation of error statistics.</p>
</li>
<li><strong>tabulate</strong> (<em>array of strings</em>) &#8211; <p><img class="math" src="_images/math/fcb47d177e58f83257e03078e39b830ee90caec8.png" alt="\Rightarrow" style="vertical-align: -1px"/> <code class="docutils literal"><span class="pre">[]</span></code> <img class="math" src="_images/math/589f0defd3f7d56ed5fb2872215af7ebba9db67a.png" alt="\Leftarrow" style="vertical-align: -1px"/> || <code class="docutils literal"><span class="pre">['scf</span> <span class="pre">total</span> <span class="pre">energy',</span> <span class="pre">'natom']</span></code> || etc.</p>
<p>Indicates whether to form tables of variables other than the
primary requested energy.  Available for any PSI variable.</p>
</li>
<li><strong>subset</strong> (<em>string or array of strings</em>) &#8211; <p>Indicates a subset of the full database to run. This is a very
flexible option and can be used in three distinct ways, outlined
below. Note that two take a string and the last takes an array.
See <a class="reference internal" href="#available-databases">Available Databases</a> for available values.</p>
<ul>
<li><dl class="first docutils">
<dt><code class="docutils literal"><span class="pre">'small'</span></code> || <code class="docutils literal"><span class="pre">'large'</span></code> || <code class="docutils literal"><span class="pre">'equilibrium'</span></code></dt>
<dd>Calls predefined subsets of the requested database, either
<code class="docutils literal"><span class="pre">'small'</span></code>, a few of the smallest database members,
<code class="docutils literal"><span class="pre">'large'</span></code>, the largest of the database members, or
<code class="docutils literal"><span class="pre">'equilibrium'</span></code>, the equilibrium geometries for a database
composed of dissociation curves.</dd>
</dl>
</li>
<li><dl class="first docutils">
<dt><code class="docutils literal"><span class="pre">'BzBz_S'</span></code> || <code class="docutils literal"><span class="pre">'FaOOFaON'</span></code> || <code class="docutils literal"><span class="pre">'ArNe'</span></code> ||  <code class="docutils literal"><span class="pre">'HB'</span></code> || etc.</dt>
<dd>For databases composed of dissociation curves, or otherwise
divided into subsets, individual curves and subsets can be
called by name. Consult the database python files for available
molecular systems (case insensitive).</dd>
</dl>
</li>
<li><dl class="first docutils">
<dt><code class="docutils literal"><span class="pre">[1,2,5]</span></code> || <code class="docutils literal"><span class="pre">['1','2','5']</span></code> || <code class="docutils literal"><span class="pre">['BzMe-3.5',</span> <span class="pre">'MeMe-5.0']</span></code> || etc.</dt>
<dd>Specify a list of database members to run. Consult the
database python files for available molecular systems.  This
is the only portion of database input that is case sensitive;
choices for this keyword must match the database python file.</dd>
</dl>
</li>
</ul>
</li>
</ul>
</td>
</tr>
<tr class="field-even field"><th class="field-name">Examples:</th><td class="field-body"></td>
</tr>
</tbody>
</table>
<div class="highlight-python"><div class="highlight"><pre><span class="gp">&gt;&gt;&gt; </span><span class="c"># [1] Two-stage SCF calculation on short, equilibrium, and long helium dimer</span>
<span class="gp">&gt;&gt;&gt; </span><span class="n">db</span><span class="p">(</span><span class="s">&#39;scf&#39;</span><span class="p">,</span><span class="s">&#39;RGC10&#39;</span><span class="p">,</span><span class="n">cast_up</span><span class="o">=</span><span class="s">&#39;sto-3g&#39;</span><span class="p">,</span><span class="n">subset</span><span class="o">=</span><span class="p">[</span><span class="s">&#39;HeHe-0.85&#39;</span><span class="p">,</span><span class="s">&#39;HeHe-1.0&#39;</span><span class="p">,</span><span class="s">&#39;HeHe-1.5&#39;</span><span class="p">],</span> <span class="n">tabulate</span><span class="o">=</span><span class="p">[</span><span class="s">&#39;scf total energy&#39;</span><span class="p">,</span><span class="s">&#39;natom&#39;</span><span class="p">])</span>
</pre></div>
</div>
<div class="highlight-python"><div class="highlight"><pre><span class="gp">&gt;&gt;&gt; </span><span class="c"># [2] Counterpoise-corrected interaction energies for three complexes in S22</span>
<span class="gp">&gt;&gt;&gt; </span><span class="c">#     Error statistics computed wrt an old benchmark, S22A</span>
<span class="gp">&gt;&gt;&gt; </span><span class="n">database</span><span class="p">(</span><span class="s">&#39;df-mp2&#39;</span><span class="p">,</span><span class="s">&#39;S22&#39;</span><span class="p">,</span><span class="n">cp</span><span class="o">=</span><span class="mi">1</span><span class="p">,</span><span class="n">subset</span><span class="o">=</span><span class="p">[</span><span class="mi">16</span><span class="p">,</span><span class="mi">17</span><span class="p">,</span><span class="mi">8</span><span class="p">],</span><span class="n">benchmark</span><span class="o">=</span><span class="s">&#39;S22A&#39;</span><span class="p">)</span>
</pre></div>
</div>
<div class="highlight-python"><div class="highlight"><pre><span class="gp">&gt;&gt;&gt; </span><span class="c"># [3] SAPT0 on the neon dimer dissociation curve</span>
<span class="gp">&gt;&gt;&gt; </span><span class="n">db</span><span class="p">(</span><span class="s">&#39;sapt0&#39;</span><span class="p">,</span><span class="n">subset</span><span class="o">=</span><span class="s">&#39;NeNe&#39;</span><span class="p">,</span><span class="n">cp</span><span class="o">=</span><span class="mi">0</span><span class="p">,</span><span class="n">symm</span><span class="o">=</span><span class="mi">0</span><span class="p">,</span><span class="n">db_name</span><span class="o">=</span><span class="s">&#39;RGC10&#39;</span><span class="p">)</span>
</pre></div>
</div>
<div class="highlight-python"><div class="highlight"><pre><span class="gp">&gt;&gt;&gt; </span><span class="c"># [4] Optimize system 1 in database S22, producing tables of scf and mp2 energy</span>
<span class="gp">&gt;&gt;&gt; </span><span class="n">db</span><span class="p">(</span><span class="s">&#39;mp2&#39;</span><span class="p">,</span><span class="s">&#39;S22&#39;</span><span class="p">,</span><span class="n">db_func</span><span class="o">=</span><span class="n">optimize</span><span class="p">,</span><span class="n">subset</span><span class="o">=</span><span class="p">[</span><span class="mi">1</span><span class="p">],</span> <span class="n">tabulate</span><span class="o">=</span><span class="p">[</span><span class="s">&#39;mp2 total energy&#39;</span><span class="p">,</span><span class="s">&#39;current energy&#39;</span><span class="p">])</span>
</pre></div>
</div>
<div class="highlight-python"><div class="highlight"><pre><span class="gp">&gt;&gt;&gt; </span><span class="c"># [5] CCSD on the smallest systems of HTBH, a hydrogen-transfer database</span>
<span class="gp">&gt;&gt;&gt; </span><span class="n">database</span><span class="p">(</span><span class="s">&#39;ccsd&#39;</span><span class="p">,</span><span class="s">&#39;HTBH&#39;</span><span class="p">,</span><span class="n">subset</span><span class="o">=</span><span class="s">&#39;small&#39;</span><span class="p">,</span> <span class="n">tabulate</span><span class="o">=</span><span class="p">[</span><span class="s">&#39;ccsd total energy&#39;</span><span class="p">,</span> <span class="s">&#39;mp2 total energy&#39;</span><span class="p">])</span>
</pre></div>
</div>
</dd></dl>

<div class="section" id="output">
<span id="index-3"></span><h2>Output<a class="headerlink" href="#output" title="Permalink to this headline"></a></h2>
<p>At the beginning of a database job is printed a listing of the individual system
calculations which will be performed. The output snippet below is from the example job [1]
above. It shows each reagent required for the subset of database reactions requested.
Note that this is an un-counterpoise-corrected example, and the wrapper is smart enough
to compute only once the monomer whose energy will be subtracted from each of the three dimers.</p>
<div class="highlight-python"><div class="highlight"><pre><span class="n">RGC1</span><span class="o">-</span><span class="n">HeHe</span><span class="o">-</span><span class="mf">0.85</span><span class="o">-</span><span class="n">dimer</span>
<span class="n">RGC1</span><span class="o">-</span><span class="n">He</span><span class="o">-</span><span class="n">mono</span><span class="o">-</span><span class="n">unCP</span>
<span class="n">RGC1</span><span class="o">-</span><span class="n">HeHe</span><span class="o">-</span><span class="mf">1.0</span><span class="o">-</span><span class="n">dimer</span>
<span class="n">RGC1</span><span class="o">-</span><span class="n">HeHe</span><span class="o">-</span><span class="mf">1.5</span><span class="o">-</span><span class="n">dimer</span>
</pre></div>
</div>
<p>At the end of the job, the Requested Energy table is printed that gives the total
energies for the requested model chemistry for each reagent and each reaction, as
well as the stoichoimetric weights by which the reagent energies are transfromed
into the reaction energy. In this case, the dimer is +1 and the monomer is -2,
indicating the the interaction energy is computed from dimer less first monomer
less second (identical) monomer. Error statistics are computed with respect to the reference
energies stored in the database. One of these, the mean absolute deviation, is
returned by the wrapper as an ordinary Python variable. (For databases
without a stored reference energy, e.g., BASIC, large and meaningless numbers are
printed for error.) The other two tables tabulate the PSI variables requested
through keyword <code class="docutils literal"><span class="pre">tabulate</span></code>, in this case the total SCF energy and the number
of atoms in each reagent.</p>
<div class="highlight-python"><div class="highlight"><pre>==&gt; Scf Total Energy &lt;==

-----------------------------------------------------------------------------------
         Reaction          Reaction Value              Reagent 1       Reagent 2
                                                        Value Wt        Value Wt
-----------------------------------------------------------------------------------
   RGC1-HeHe-0.85              0.00011520         -5.71020576  1  -2.85516048 -2
    RGC1-HeHe-1.0              0.00000153         -5.71031943  1  -2.85516048 -2
    RGC1-HeHe-1.5             -0.00000000         -5.71032096  1  -2.85516048 -2
-----------------------------------------------------------------------------------

==&gt; Natom &lt;==

-----------------------------------------------------------------------------------
         Reaction          Reaction Value              Reagent 1       Reagent 2
                                                        Value Wt        Value Wt
-----------------------------------------------------------------------------------
   RGC1-HeHe-0.85              0.00000000          2.00000000  1   1.00000000 -2
    RGC1-HeHe-1.0              0.00000000          2.00000000  1   1.00000000 -2
    RGC1-HeHe-1.5              0.00000000          2.00000000  1   1.00000000 -2
-----------------------------------------------------------------------------------

==&gt; Requested Energy &lt;==

-----------------------------------------------------------------------------------
         Reaction     Reaction Energy      Error       Reagent 1       Reagent 2
                         Ref     Calc [kcal/mol]          [H] Wt          [H] Wt
-----------------------------------------------------------------------------------
   RGC1-HeHe-0.85     0.0376   0.0723     0.0347  -5.71020576  1  -2.85516048 -2
    RGC1-HeHe-1.0    -0.0219   0.0010     0.0228  -5.71031943  1  -2.85516048 -2
    RGC1-HeHe-1.5    -0.0029  -0.0000     0.0029  -5.71032096  1  -2.85516048 -2
-----------------------------------------------------------------------------------
      Minimal Dev                         0.0029
      Maximal Dev                         0.0347
  Mean Signed Dev                         0.0201
Mean Absolute Dev                         0.0201
          RMS Dev                         0.0240
-----------------------------------------------------------------------------------
</pre></div>
</div>
<p>As well as being printed in the output file, database results from the
<code class="docutils literal"><span class="pre">tabulate</span></code> option are available in the input file as ordinary Python
dictionaries <code class="docutils literal"><span class="pre">DB_RGT</span></code> and <code class="docutils literal"><span class="pre">DB_RXN</span></code>, indexed firstly by reagent or reaction
name and secondly by the requested PSI variable name. See the first
paragraph of <a class="reference internal" href="quickadddatabase.html#sec-createdatabase"><span>Creating a Database</span></a> for the distinction between
reagents and reactions. For example, an input file like the following
requests a couple variables through <code class="docutils literal"><span class="pre">tabulate</span></code> and then makes use of the
resulting data structures, here, only to print.</p>
<div class="highlight-python"><div class="highlight"><pre>set basis 6-31g*
db(&#39;dfmp2&#39;,&#39;s22&#39;,subset=&#39;small&#39;,tabulate=[&#39;CURRENT ENERGY&#39;,&#39;DF-MP2 CORRELATION ENERGY&#39;])

from pprint import pprint

print_stdout(&#39;\nDB_RGT&#39;)
pprint(DB_RGT)

print_stdout(&#39;\nDB_RXN&#39;)
pprint(DB_RXN)

print_stdout(&#39;\ndf-mp2 interaction energy of water dimer (S22-2)&#39;)
print_stdout(DB_RXN[&#39;S22-2&#39;][&#39;CURRENT ENERGY&#39;])
</pre></div>
</div>
<p>The output to the screen is as follows.</p>
<div class="highlight-python"><div class="highlight"><pre>DB_RGT
{&#39;S22-16-dimer&#39;: {&#39;CURRENT ENERGY&#39;: -155.37373581838636,
                  &#39;DF-MP2 CORRELATION ENERGY&#39;: -0.523870772178089},
 &#39;S22-16-monoA-unCP&#39;: {&#39;CURRENT ENERGY&#39;: -78.29412053242164,
                       &#39;DF-MP2 CORRELATION ENERGY&#39;: -0.2629759351596186},
 &#39;S22-16-monoB-unCP&#39;: {&#39;CURRENT ENERGY&#39;: -77.07606823017188,
                       &#39;DF-MP2 CORRELATION ENERGY&#39;: -0.2594122526144091},
 &#39;S22-2-dimer&#39;: {&#39;CURRENT ENERGY&#39;: -152.40958884746667,
                 &#39;DF-MP2 CORRELATION ENERGY&#39;: -0.3797598812113561},
 &#39;S22-2-monoA-unCP&#39;: {&#39;CURRENT ENERGY&#39;: -76.19905879745446,
                      &#39;DF-MP2 CORRELATION ENERGY&#39;: -0.1887118848315123},
 &#39;S22-2-monoB-unCP&#39;: {&#39;CURRENT ENERGY&#39;: -76.19902978067739,
                      &#39;DF-MP2 CORRELATION ENERGY&#39;: -0.18857384937354635},
 &#39;S22-8-dimer&#39;: {&#39;CURRENT ENERGY&#39;: -80.67416758080654,
                 &#39;DF-MP2 CORRELATION ENERGY&#39;: -0.2844102558783027},
 &#39;S22-8-monoA-unCP&#39;: {&#39;CURRENT ENERGY&#39;: -40.336952636980364,
                      &#39;DF-MP2 CORRELATION ENERGY&#39;: -0.14185962536715307},
 &#39;S22-8-monoB-unCP&#39;: {&#39;CURRENT ENERGY&#39;: -40.336952636980506,
                      &#39;DF-MP2 CORRELATION ENERGY&#39;: -0.14185962536715097}}

DB_RXN
{&#39;S22-16&#39;: {&#39;CURRENT ENERGY&#39;: -0.0035470557928363178,
            &#39;DF-MP2 CORRELATION ENERGY&#39;: -0.0014825844040612934},
 &#39;S22-2&#39;: {&#39;CURRENT ENERGY&#39;: -0.011500269334817403,
           &#39;DF-MP2 CORRELATION ENERGY&#39;: -0.0024741470062974724},
 &#39;S22-8&#39;: {&#39;CURRENT ENERGY&#39;: -0.0002623068456699684,
           &#39;DF-MP2 CORRELATION ENERGY&#39;: -0.0006910051439986686}}

df-mp2 interaction energy of water dimer (S22-2)
-0.0115002693348
</pre></div>
</div>
</div>
<div class="section" id="available-databases">
<span id="sec-availabledatabases"></span><span id="index-4"></span><h2>Available Databases<a class="headerlink" href="#available-databases" title="Permalink to this headline"></a></h2>
<p>Below are documented for particular databases the availibility of the generic
database function options <strong>cp</strong>, <strong>rlxd</strong>, <strong>benchmark</strong>, and the string
options for <strong>subset</strong>. The full reagent member list, which can also be used
in conjunction with <strong>subset</strong>, is not included here for consideration of space
and may be found in the database file. The database Python files are very
readable and should be consulted for more particular questions.</p>
<hr class="docutils" />
<div class="toctree-wrapper compound">
</div>
<div class="section" id="module-JSCH">
<span id="jsch"></span><h3><a class="reference external" href="https://github.com/psi4/psi4public/blob/master/lib/databases/JSCH.py">JSCH</a><a class="headerlink" href="#module-JSCH" title="Permalink to this headline"></a></h3>
<div class="line-block">
<div class="line">Database (Hobza) of interaction energies for nucelobase pairs.</div>
<div class="line">Geometries and reference interaction energies from Jurecka et al. PCCP 8 1985 (2006).</div>
<div class="line">Corrections implemented from footnote 92 of Burns et al., JCP 134 084107 (2011).</div>
</div>
<ul class="simple">
<li><strong>cp</strong>  <code class="docutils literal"><span class="pre">'off'</span></code> || <code class="docutils literal"><span class="pre">'on'</span></code></li>
<li><strong>rlxd</strong> <code class="docutils literal"><span class="pre">'off'</span></code></li>
<li><strong>subset</strong><ul>
<li><code class="docutils literal"><span class="pre">'small'</span></code></li>
<li><code class="docutils literal"><span class="pre">'large'</span></code></li>
<li><code class="docutils literal"><span class="pre">'HB'</span></code> hydrogen-bonded systems (coplanar base-pairs)</li>
<li><code class="docutils literal"><span class="pre">'MX'</span></code> interstrand systems (adjacent base-pairs on different strands)</li>
<li><code class="docutils literal"><span class="pre">'DD'</span></code> stacked systems (adjacent base-pairs on same strand)</li>
</ul>
</li>
</ul>
</div>
<hr class="docutils" />
<div class="section" id="module-S22by5">
<span id="s22by5"></span><h3><a class="reference external" href="https://github.com/psi4/psi4public/blob/master/lib/databases/S22by5.py">S22by5</a><a class="headerlink" href="#module-S22by5" title="Permalink to this headline"></a></h3>
<div class="line-block">
<div class="line">Database (Hobza) of interaction energies for dissociation curves of bimolecular complexes.</div>
<div class="line">Geometries and reference interaction energies from Grafova et al. JCTC 6 2365 (2010).</div>
<div class="line">Note that the S22by5-N-1.0 members are essentially the same geometries as S22-N (there&#8217;s trivial round-off error) but the reference interaction energies for S22by5 are of lower quality than those of S22.</div>
</div>
<ul class="simple">
<li><strong>cp</strong>  <code class="docutils literal"><span class="pre">'off'</span></code> || <code class="docutils literal"><span class="pre">'on'</span></code></li>
<li><strong>rlxd</strong> <code class="docutils literal"><span class="pre">'off'</span></code></li>
<li><strong>subset</strong><ul>
<li><code class="docutils literal"><span class="pre">'small'</span></code></li>
<li><code class="docutils literal"><span class="pre">'large'</span></code></li>
<li><code class="docutils literal"><span class="pre">'equilibrium'</span></code></li>
<li><code class="docutils literal"><span class="pre">'mol1'</span></code> five-point (0.9, 1.0, 1.2, 1.5, 2.0) <img class="math" src="_images/math/6552511765201bf87c768c179194812e8b11552c.png" alt="\times R_{eq}" style="vertical-align: -6px"/> dissociation curve for molecule 1</li>
<li>...</li>
<li><code class="docutils literal"><span class="pre">'mol22'</span></code> five-point (0.9, 1.0, 1.2, 1.5, 2.0) <img class="math" src="_images/math/6552511765201bf87c768c179194812e8b11552c.png" alt="\times R_{eq}" style="vertical-align: -6px"/> dissociation curve for molecule 22</li>
</ul>
</li>
</ul>
</div>
<hr class="docutils" />
<div class="section" id="module-RSE42">
<span id="rse42"></span><h3><a class="reference external" href="https://github.com/psi4/psi4public/blob/master/lib/databases/RSE42.py">RSE42</a><a class="headerlink" href="#module-RSE42" title="Permalink to this headline"></a></h3>
<div class="line-block">
<div class="line">Database of radical stabilization energies.</div>
<div class="line">Geometries from [E. Soydas and U. Bozkaya, JCTC, 9, 1452-1460 (2013)].</div>
<div class="line">Reference radical stabilization energies from [E. Soydas and U. Bozkaya, JCTC, 9, 1452-1460 (2013)] at CCSD(T)/cc-pCVTZ level.</div>
</div>
<ul class="simple">
<li><strong>benchmark</strong><ul>
<li><code class="docutils literal"><span class="pre">'RSE42'</span></code> [E. Soydas and U. Bozkaya, JCTC, 9, 1452-1460 (2013)].</li>
<li><img class="math" src="_images/math/fcb47d177e58f83257e03078e39b830ee90caec8.png" alt="\Rightarrow" style="vertical-align: -1px"/> <code class="docutils literal"><span class="pre">'RSE42'</span></code> <img class="math" src="_images/math/589f0defd3f7d56ed5fb2872215af7ebba9db67a.png" alt="\Leftarrow" style="vertical-align: -1px"/> [E. Soydas and U. Bozkaya, JCTC, 9, 1452-1460 (2013)].</li>
</ul>
</li>
<li><strong>subset</strong><ul>
<li><code class="docutils literal"><span class="pre">'small'</span></code> &lt;members_description&gt;</li>
<li><code class="docutils literal"><span class="pre">'large'</span></code> &lt;members_description&gt;</li>
<li><code class="docutils literal"><span class="pre">'RSE30'</span></code> smaller systems in RSE42</li>
<li><code class="docutils literal"><span class="pre">'&lt;subset&gt;'</span></code> &lt;members_description&gt;</li>
</ul>
</li>
</ul>
</div>
<hr class="docutils" />
<div class="section" id="module-HSG">
<span id="hsg"></span><h3><a class="reference external" href="https://github.com/psi4/psi4public/blob/master/lib/databases/HSG.py">HSG</a><a class="headerlink" href="#module-HSG" title="Permalink to this headline"></a></h3>
<div class="line-block">
<div class="line">Database (Merz) of interaction energies for bimolecular complexes from protein-indinavir reaction site.</div>
<div class="line">Geometries from and original reference energies from Faver et al. JCTC 7 790 (2011).</div>
<div class="line">Revised reference interaction energies (HSGA) from Marshall et al. JCP 135 194102 (2011).</div>
</div>
<ul class="simple">
<li><strong>cp</strong>  <code class="docutils literal"><span class="pre">'off'</span></code> || <code class="docutils literal"><span class="pre">'on'</span></code></li>
<li><strong>rlxd</strong> <code class="docutils literal"><span class="pre">'off'</span></code></li>
<li><strong>benchmark</strong><ul>
<li><code class="docutils literal"><span class="pre">'HSG0'</span></code> Faver et al. JCTC 7 790 (2011).</li>
<li><img class="math" src="_images/math/fcb47d177e58f83257e03078e39b830ee90caec8.png" alt="\Rightarrow" style="vertical-align: -1px"/> <code class="docutils literal"><span class="pre">'HSGA'</span></code> <img class="math" src="_images/math/589f0defd3f7d56ed5fb2872215af7ebba9db67a.png" alt="\Leftarrow" style="vertical-align: -1px"/> Marshall et al. JCP 135 194102 (2011).</li>
</ul>
</li>
<li><strong>subset</strong><ul>
<li><code class="docutils literal"><span class="pre">'small'</span></code></li>
<li><code class="docutils literal"><span class="pre">'large'</span></code></li>
</ul>
</li>
</ul>
</div>
<hr class="docutils" />
<div class="section" id="module-ACENES">
<span id="acenes"></span><h3><a class="reference external" href="https://github.com/psi4/psi4public/blob/master/lib/databases/ACENES.py">ACENES</a><a class="headerlink" href="#module-ACENES" title="Permalink to this headline"></a></h3>
<div class="line-block">
<div class="line">Database of Ed and Rob&#8217;s favorite linear acene dimers.</div>
<div class="line">Geometries from nowhere special, and reference energies undefined.</div>
</div>
<ul class="simple">
<li><strong>cp</strong>  <code class="docutils literal"><span class="pre">'off'</span></code> || <code class="docutils literal"><span class="pre">'on'</span></code></li>
<li><strong>rlxd</strong> <code class="docutils literal"><span class="pre">'off'</span></code></li>
<li><strong>subset</strong><ul>
<li><code class="docutils literal"><span class="pre">'small'</span></code></li>
<li><code class="docutils literal"><span class="pre">'large'</span></code></li>
<li><code class="docutils literal"><span class="pre">'FIRST3'</span></code> benzene, napthalene, and anthracene dimers</li>
<li><code class="docutils literal"><span class="pre">'FIRST5'</span></code> benzene - pentacene dimers</li>
<li><code class="docutils literal"><span class="pre">'FIRST10'</span></code> benzene - decacene dimers</li>
</ul>
</li>
</ul>
</div>
<hr class="docutils" />
<div class="section" id="module-S66">
<span id="s66"></span><h3><a class="reference external" href="https://github.com/psi4/psi4public/blob/master/lib/databases/S66.py">S66</a><a class="headerlink" href="#module-S66" title="Permalink to this headline"></a></h3>
<div class="line-block">
<div class="line">Database (Hobza) of interaction energies for bimolecular complexes.</div>
<div class="line">Geometries and reference energies from Rezac et al. JCTC 7 2427 (2011).</div>
</div>
<ul class="simple">
<li><strong>cp</strong>  <code class="docutils literal"><span class="pre">'off'</span></code> || <code class="docutils literal"><span class="pre">'on'</span></code></li>
<li><strong>rlxd</strong> <code class="docutils literal"><span class="pre">'off'</span></code></li>
<li><strong>subset</strong><ul>
<li><code class="docutils literal"><span class="pre">'small'</span></code></li>
<li><code class="docutils literal"><span class="pre">'large'</span></code></li>
<li><code class="docutils literal"><span class="pre">'HB'</span></code> hydrogen-bonded systems</li>
<li><code class="docutils literal"><span class="pre">'MX'</span></code> mixed-influence systems</li>
<li><code class="docutils literal"><span class="pre">'DD'</span></code> dispersion-dominated systems</li>
</ul>
</li>
</ul>
</div>
<hr class="docutils" />
<div class="section" id="module-S66by8">
<span id="s66by8"></span><h3><a class="reference external" href="https://github.com/psi4/psi4public/blob/master/lib/databases/S66by8.py">S66by8</a><a class="headerlink" href="#module-S66by8" title="Permalink to this headline"></a></h3>
<div class="line-block">
<div class="line">Database (Hobza) of interaction energies for bimolecular complexes.</div>
<div class="line">Geometries and reference interaction energies from Rezac et al. JCTC 7 2427 (2011).</div>
<div class="line">Note that the S66by8-N-1.0 members are not quite the same geometries as S66-N.</div>
</div>
<ul class="simple">
<li><strong>cp</strong>  <code class="docutils literal"><span class="pre">'off'</span></code> || <code class="docutils literal"><span class="pre">'on'</span></code></li>
<li><strong>rlxd</strong> <code class="docutils literal"><span class="pre">'off'</span></code></li>
<li><strong>subset</strong><ul>
<li><code class="docutils literal"><span class="pre">'small'</span></code></li>
<li><code class="docutils literal"><span class="pre">'large'</span></code></li>
<li><code class="docutils literal"><span class="pre">'equilibrium'</span></code></li>
<li><code class="docutils literal"><span class="pre">'HB'</span></code> eight-point (0.9, 0.95, 1.0, 1.05, 1.1, 1.25, 1.5, 2.0) <img class="math" src="_images/math/6552511765201bf87c768c179194812e8b11552c.png" alt="\times R_{eq}" style="vertical-align: -6px"/> dissociation curve hydrogen-bonded systems</li>
<li><code class="docutils literal"><span class="pre">'MX'</span></code> eight-point (0.9, 0.95, 1.0, 1.05, 1.1, 1.25, 1.5, 2.0) <img class="math" src="_images/math/6552511765201bf87c768c179194812e8b11552c.png" alt="\times R_{eq}" style="vertical-align: -6px"/> dissociation curve mixed-influence systems</li>
<li><code class="docutils literal"><span class="pre">'DD'</span></code> eight-point (0.9, 0.95, 1.0, 1.05, 1.1, 1.25, 1.5, 2.0) <img class="math" src="_images/math/6552511765201bf87c768c179194812e8b11552c.png" alt="\times R_{eq}" style="vertical-align: -6px"/> dissociation curve dispersion-dominated systems</li>
</ul>
</li>
</ul>
</div>
<hr class="docutils" />
<div class="section" id="module-HBC6">
<span id="hbc6"></span><h3><a class="reference external" href="https://github.com/psi4/psi4public/blob/master/lib/databases/HBC6.py">HBC6</a><a class="headerlink" href="#module-HBC6" title="Permalink to this headline"></a></h3>
<div class="line-block">
<div class="line">Database (Sherrill) of interaction energies for dissociation curves of doubly hydrogen-bonded bimolecular complexes.</div>
<div class="line">Geometries from and original reference interaction energies from Thanthiriwatte et al. JCTC 7 88 (2011).</div>
<div class="line">Revised reference interaction energies from Marshall et al. JCP 135 194102 (2011).</div>
</div>
<ul class="simple">
<li><strong>cp</strong>  <code class="docutils literal"><span class="pre">'off'</span></code> || <code class="docutils literal"><span class="pre">'on'</span></code></li>
<li><strong>rlxd</strong> <code class="docutils literal"><span class="pre">'off'</span></code> || <code class="docutils literal"><span class="pre">'on'</span></code></li>
<li><strong>benchmark</strong><ul>
<li><code class="docutils literal"><span class="pre">'HBC60'</span></code> Thanthiriwatte et al. JCTC 7 88 (2011).</li>
<li><img class="math" src="_images/math/fcb47d177e58f83257e03078e39b830ee90caec8.png" alt="\Rightarrow" style="vertical-align: -1px"/> <code class="docutils literal"><span class="pre">'HBC6A'</span></code> <img class="math" src="_images/math/589f0defd3f7d56ed5fb2872215af7ebba9db67a.png" alt="\Leftarrow" style="vertical-align: -1px"/> Marshall et al. JCP 135 194102 (2011).</li>
<li><code class="docutils literal"><span class="pre">'HBC6ARLX'</span></code> Sherrill group, unpublished.</li>
</ul>
</li>
<li><strong>subset</strong><ul>
<li><code class="docutils literal"><span class="pre">'small'</span></code></li>
<li><code class="docutils literal"><span class="pre">'large'</span></code></li>
<li><code class="docutils literal"><span class="pre">'equilibrium'</span></code> equilibrium points for the six systems</li>
<li><code class="docutils literal"><span class="pre">'FaOOFaOO'</span></code> dissociation curve for formic acid dimer</li>
<li><code class="docutils literal"><span class="pre">'FaONFaON'</span></code> dissociation curve for formamide dimer</li>
<li><code class="docutils literal"><span class="pre">'FaNNFaNN'</span></code> dissociation curve for formamidine dimer</li>
<li><code class="docutils literal"><span class="pre">'FaOOFaON'</span></code> dissociation curve for formic acid- formamide complex</li>
<li><code class="docutils literal"><span class="pre">'FaONFaNN'</span></code> dissociation curve for formamide- formamidine complex</li>
<li><code class="docutils literal"><span class="pre">'FaOOFaNN'</span></code> dissociation curve for formic acid- formamidine complex</li>
</ul>
</li>
</ul>
</div>
<hr class="docutils" />
<div class="section" id="module-CORE">
<span id="core"></span><h3><a class="reference external" href="https://github.com/psi4/psi4public/blob/master/lib/databases/CORE.py">CORE</a><a class="headerlink" href="#module-CORE" title="Permalink to this headline"></a></h3>
<div class="line-block">
<div class="line">Database of Pulay corannulene structures. Subsumed into CFLOW.</div>
</div>
<ul class="simple">
<li><strong>cp</strong>  <code class="docutils literal"><span class="pre">'off'</span></code> || <code class="docutils literal"><span class="pre">'on'</span></code></li>
<li><strong>rlxd</strong> <code class="docutils literal"><span class="pre">'off'</span></code></li>
</ul>
</div>
<hr class="docutils" />
<div class="section" id="module-NBC10">
<span id="nbc10"></span><h3><a class="reference external" href="https://github.com/psi4/psi4public/blob/master/lib/databases/NBC10.py">NBC10</a><a class="headerlink" href="#module-NBC10" title="Permalink to this headline"></a></h3>
<div class="line-block">
<div class="line">Database (Sherrill) of interaction energies for dissociation curves of dispersion-bound bimolecular complexes.</div>
<div class="line">Geometries and Reference interaction energies from the following articles:</div>
<div class="line-block">
<div class="line">Benzene Dimers from Sherrill et al. JPCA 113 10146 (2009).</div>
<div class="line">Benzene-Hydrogen Sulfide from Sherrill et al. JPCA 113 10146 (2009).</div>
<div class="line">Benzene-Methane from Sherrill et al. JPCA 113 10146 (2009).</div>
<div class="line">Methane Dimer from Takatani et al. PCCP 9 6106 (2007).</div>
<div class="line">Pyridine Dimers from Hohenstein et al. JPCA 113 878 (2009).</div>
<div class="line">Collection into NBC10 from Burns et al. JCP 134 084107 (2011).</div>
<div class="line">Revised reference interaction energies (NBC10A) from Marshall et al. JCP 135 194102 (2011).</div>
</div>
</div>
<ul class="simple">
<li><strong>cp</strong>  <code class="docutils literal"><span class="pre">'off'</span></code> || <code class="docutils literal"><span class="pre">'on'</span></code></li>
<li><strong>rlxd</strong> <code class="docutils literal"><span class="pre">'off'</span></code></li>
<li><strong>benchmark</strong><ul>
<li><code class="docutils literal"><span class="pre">'NBC100'</span></code> Burns et al. JCP 134 084107 (2011).</li>
<li><img class="math" src="_images/math/fcb47d177e58f83257e03078e39b830ee90caec8.png" alt="\Rightarrow" style="vertical-align: -1px"/> <code class="docutils literal"><span class="pre">'NBC10A'</span></code> <img class="math" src="_images/math/589f0defd3f7d56ed5fb2872215af7ebba9db67a.png" alt="\Leftarrow" style="vertical-align: -1px"/> Marshall et al. JCP 135 194102 (2011).</li>
</ul>
</li>
<li><strong>subset</strong><ul>
<li><code class="docutils literal"><span class="pre">'small'</span></code></li>
<li><code class="docutils literal"><span class="pre">'large'</span></code></li>
<li><code class="docutils literal"><span class="pre">'equilibrium'</span></code></li>
<li><code class="docutils literal"><span class="pre">'BzBz_S'</span></code> dissociation curve for benzene dimer, sandwich</li>
<li><code class="docutils literal"><span class="pre">'BzBz_T'</span></code> dissociation curve for benzene dimer, t-shaped</li>
<li><code class="docutils literal"><span class="pre">'BzBz_PD34'</span></code> dissociation curve for benzene dimer, parallel displaced by 3.4A</li>
<li><code class="docutils literal"><span class="pre">'BzH2S'</span></code> dissociation curve for benzene-H2S</li>
<li><code class="docutils literal"><span class="pre">'BzMe'</span></code> dissociation curve for benzene-methane</li>
<li><code class="docutils literal"><span class="pre">'MeMe'</span></code> dissociation curve for methane dimer</li>
<li><code class="docutils literal"><span class="pre">'PyPy_S2'</span></code> dissociation curve for pyridine dimer, sandwich</li>
<li><code class="docutils literal"><span class="pre">'PyPy_T3'</span></code> dissociation curve for pyridine dimer, t-shaped</li>
<li><code class="docutils literal"><span class="pre">'BzBz_PD32'</span></code> dissociation curve for benzene dimer, parallel displaced by 3.2A</li>
<li><code class="docutils literal"><span class="pre">'BzBz_PD36'</span></code> dissociation curve for benzene dimer, parallel displaced by 3.6A</li>
</ul>
</li>
</ul>
</div>
<hr class="docutils" />
<div class="section" id="module-A24">
<span id="a24"></span><h3><a class="reference external" href="https://github.com/psi4/psi4public/blob/master/lib/databases/A24.py">A24</a><a class="headerlink" href="#module-A24" title="Permalink to this headline"></a></h3>
<div class="line-block">
<div class="line">Database (Hobza) of interaction energies for bimolecular complexes.</div>
<div class="line">Geometries from &lt;Reference&gt;.</div>
<div class="line">Reference interaction energies from Rezac and Hobza, JCTC (in press).</div>
</div>
<ul class="simple">
<li><strong>cp</strong>  <code class="docutils literal"><span class="pre">'off'</span></code> &lt;erase this comment and after unless on is a valid option&gt; || <code class="docutils literal"><span class="pre">'on'</span></code></li>
<li><strong>rlxd</strong> <code class="docutils literal"><span class="pre">'off'</span></code> &lt;erase this comment and after unless on is valid option&gt; || <code class="docutils literal"><span class="pre">'on'</span></code></li>
<li><strong>benchmark</strong><ul>
<li><code class="docutils literal"><span class="pre">'&lt;benchmark_name&gt;'</span></code> &lt;Reference&gt;.</li>
<li><img class="math" src="_images/math/fcb47d177e58f83257e03078e39b830ee90caec8.png" alt="\Rightarrow" style="vertical-align: -1px"/> <code class="docutils literal"><span class="pre">'&lt;default_benchmark_name&gt;'</span></code> <img class="math" src="_images/math/589f0defd3f7d56ed5fb2872215af7ebba9db67a.png" alt="\Leftarrow" style="vertical-align: -1px"/> &lt;Reference&gt;.</li>
</ul>
</li>
<li><strong>subset</strong><ul>
<li><code class="docutils literal"><span class="pre">'small'</span></code> &lt;members_description&gt;</li>
<li><code class="docutils literal"><span class="pre">'large'</span></code> &lt;members_description&gt;</li>
<li><code class="docutils literal"><span class="pre">'&lt;subset&gt;'</span></code> &lt;members_description&gt;</li>
</ul>
</li>
</ul>
</div>
<hr class="docutils" />
<div class="section" id="module-BASIC">
<span id="basic"></span><h3><a class="reference external" href="https://github.com/psi4/psi4public/blob/master/lib/databases/BASIC.py">BASIC</a><a class="headerlink" href="#module-BASIC" title="Permalink to this headline"></a></h3>
<div class="line-block">
<div class="line">Database of simple molecules, mostly for testing.</div>
<div class="line">Geometries from nowhere special, and no reference energies defined.</div>
</div>
<ul class="simple">
<li><strong>cp</strong>  <code class="docutils literal"><span class="pre">'off'</span></code></li>
<li><strong>rlxd</strong> <code class="docutils literal"><span class="pre">'off'</span></code></li>
<li><strong>subset</strong> [<code class="docutils literal"><span class="pre">'h2o'</span></code>, <code class="docutils literal"><span class="pre">'nh3'</span></code>, <code class="docutils literal"><span class="pre">'ch4'</span></code>]</li>
</ul>
</div>
<hr class="docutils" />
<div class="section" id="module-BAKERJCC96">
<span id="bakerjcc96"></span><h3><a class="reference external" href="https://github.com/psi4/psi4public/blob/master/lib/databases/BAKERJCC96.py">BAKERJCC96</a><a class="headerlink" href="#module-BAKERJCC96" title="Permalink to this headline"></a></h3>
<div class="line-block">
<div class="line">Geometries from Baker and Chan J. Comput. Chem. 17 888 (1996),</div>
<div class="line-block">
<div class="line">as reported in Bakken and Helgaker, J. Chem. Phys. 117, 9160 (2002).</div>
</div>
<div class="line">No reference energies defined.</div>
</div>
<ul class="simple">
<li><strong>cp</strong>  <code class="docutils literal"><span class="pre">'off'</span></code></li>
<li><strong>rlxd</strong> <code class="docutils literal"><span class="pre">'off'</span></code></li>
</ul>
</div>
<hr class="docutils" />
<div class="section" id="module-BENCH12">
<span id="bench12"></span><h3><a class="reference external" href="https://github.com/psi4/psi4public/blob/master/lib/databases/BENCH12.py">BENCH12</a><a class="headerlink" href="#module-BENCH12" title="Permalink to this headline"></a></h3>
<div class="line-block">
<div class="line">Database of &lt;description of members and reference energy type&gt;.</div>
<div class="line">Geometries from &lt;Reference&gt;.</div>
<div class="line">Reference interaction energies from &lt;Reference&gt;.</div>
</div>
<ul class="simple">
<li><strong>benchmark</strong><ul>
<li><code class="docutils literal"><span class="pre">'&lt;benchmark_name&gt;'</span></code> &lt;Reference&gt;.</li>
<li><img class="math" src="_images/math/fcb47d177e58f83257e03078e39b830ee90caec8.png" alt="\Rightarrow" style="vertical-align: -1px"/> <code class="docutils literal"><span class="pre">'&lt;default_benchmark_name&gt;'</span></code> <img class="math" src="_images/math/589f0defd3f7d56ed5fb2872215af7ebba9db67a.png" alt="\Leftarrow" style="vertical-align: -1px"/> &lt;Reference&gt;.</li>
</ul>
</li>
<li><strong>subset</strong><ul>
<li><code class="docutils literal"><span class="pre">'small'</span></code></li>
<li><code class="docutils literal"><span class="pre">'large'</span></code></li>
<li><code class="docutils literal"><span class="pre">'alkenes'</span></code></li>
<li><code class="docutils literal"><span class="pre">'alkanes'</span></code></li>
<li><code class="docutils literal"><span class="pre">'acenes'</span></code></li>
<li><code class="docutils literal"><span class="pre">'thiophenes'</span></code></li>
<li><code class="docutils literal"><span class="pre">'h2o_size'</span></code></li>
<li><code class="docutils literal"><span class="pre">'h2o_shape'</span></code></li>
<li><code class="docutils literal"><span class="pre">'atoms'</span></code></li>
<li><code class="docutils literal"><span class="pre">'S22_HB'</span></code></li>
<li><code class="docutils literal"><span class="pre">'S22_MX'</span></code></li>
<li><code class="docutils literal"><span class="pre">'S22_DD'</span></code></li>
</ul>
</li>
</ul>
</div>
<hr class="docutils" />
<div class="section" id="module-NCB31">
<span id="ncb31"></span><h3><a class="reference external" href="https://github.com/psi4/psi4public/blob/master/lib/databases/NCB31.py">NCB31</a><a class="headerlink" href="#module-NCB31" title="Permalink to this headline"></a></h3>
<div class="line-block">
<div class="line">Database (Truhlar) of several classes of noncovalent interactions.</div>
<div class="line">Geometries from Truhlar and coworkers at site <a class="reference external" href="http://comp.chem.umn.edu/database_noncov/noncovalent.htm">http://comp.chem.umn.edu/database_noncov/noncovalent.htm</a></div>
<div class="line">Reference energies from Truhlar and coworkers at site <a class="reference external" href="http://comp.chem.umn.edu/database_noncov/noncovalent.htm">http://comp.chem.umn.edu/database_noncov/noncovalent.htm</a></div>
<div class="line">First comprehensive citation JPCA 109 5656 (2005). </div>
</div>
<ul class="simple">
<li><strong>cp</strong>  <code class="docutils literal"><span class="pre">'off'</span></code> || <code class="docutils literal"><span class="pre">'on'</span></code></li>
<li><strong>rlxd</strong> <code class="docutils literal"><span class="pre">'off'</span></code> || <code class="docutils literal"><span class="pre">'on'</span></code></li>
<li><strong>benchmark</strong><ul>
<li><code class="docutils literal"><span class="pre">'&lt;benchmark_name&gt;'</span></code> &lt;Reference&gt;.</li>
<li><img class="math" src="_images/math/fcb47d177e58f83257e03078e39b830ee90caec8.png" alt="\Rightarrow" style="vertical-align: -1px"/> <code class="docutils literal"><span class="pre">'&lt;default_benchmark_name&gt;'</span></code> <img class="math" src="_images/math/589f0defd3f7d56ed5fb2872215af7ebba9db67a.png" alt="\Leftarrow" style="vertical-align: -1px"/> &lt;Reference&gt;.</li>
</ul>
</li>
<li><strong>subset</strong><ul>
<li><code class="docutils literal"><span class="pre">'small'</span></code> 3: HF-HF, He-Ne, HCCH-HCCH</li>
<li><code class="docutils literal"><span class="pre">'large'</span></code> 1: BzBz_PD</li>
<li><code class="docutils literal"><span class="pre">'HB6'</span></code> hydrogen-bonded</li>
<li><code class="docutils literal"><span class="pre">'CT7'</span></code> charge-transfer</li>
<li><code class="docutils literal"><span class="pre">'DI6'</span></code> dipole-interacting</li>
<li><code class="docutils literal"><span class="pre">'WI7'</span></code> weakly interacting</li>
<li><code class="docutils literal"><span class="pre">'PPS5'</span></code> pi-pi stacking</li>
</ul>
</li>
</ul>
</div>
<hr class="docutils" />
<div class="section" id="module-RGC10">
<span id="rgc10"></span><h3><a class="reference external" href="https://github.com/psi4/psi4public/blob/master/lib/databases/RGC10.py">RGC10</a><a class="headerlink" href="#module-RGC10" title="Permalink to this headline"></a></h3>
<div class="line-block">
<div class="line">Database (Sherrill) of interaction energies for dissociation curves of rare-gas biatomic complexes.</div>
<div class="line">Geometries and reference interaction energies from Tang et al. JCP 118 4976 (2003).</div>
</div>
<ul class="simple">
<li><strong>cp</strong>  <code class="docutils literal"><span class="pre">'off'</span></code> || <code class="docutils literal"><span class="pre">'on'</span></code></li>
<li><strong>rlxd</strong> <code class="docutils literal"><span class="pre">'off'</span></code></li>
<li><strong>subset</strong><ul>
<li><code class="docutils literal"><span class="pre">'small'</span></code></li>
<li><code class="docutils literal"><span class="pre">'large'</span></code></li>
<li><code class="docutils literal"><span class="pre">'equilibrium'</span></code></li>
<li><code class="docutils literal"><span class="pre">'HeHe'</span></code> 18-point dissociation curve for helium dimer</li>
<li><code class="docutils literal"><span class="pre">'HeNe'</span></code> 18-point dissociation curve for helium-neon complex</li>
<li><code class="docutils literal"><span class="pre">'HeAr'</span></code> 18-point dissociation curve for helium-argon complex</li>
<li><code class="docutils literal"><span class="pre">'HeKr'</span></code> 18-point dissociation curve for helium-krypton complex</li>
<li><code class="docutils literal"><span class="pre">'NeNe'</span></code> 18-point dissociation curve for neon dimer</li>
<li><code class="docutils literal"><span class="pre">'NeAr'</span></code> 18-point dissociation curve for neon-argon complex</li>
<li><code class="docutils literal"><span class="pre">'NeKr'</span></code> 18-point dissociation curve for neon-krypton complex</li>
<li><code class="docutils literal"><span class="pre">'ArAr'</span></code> 18-point dissociation curve for argon dimer</li>
<li><code class="docutils literal"><span class="pre">'ArKr'</span></code> 18-point dissociation curve for argon-krypton complex</li>
<li><code class="docutils literal"><span class="pre">'KrKr'</span></code> 18-point dissociation curve for krypton dimer</li>
</ul>
</li>
</ul>
</div>
<hr class="docutils" />
<div class="section" id="module-S22">
<span id="s22"></span><h3><a class="reference external" href="https://github.com/psi4/psi4public/blob/master/lib/databases/S22.py">S22</a><a class="headerlink" href="#module-S22" title="Permalink to this headline"></a></h3>
<div class="line-block">
<div class="line">Database (Hobza) of interaction energies for bimolecular complexes.</div>
<div class="line">Geometries from Jurecka et al. PCCP 8 1985 (2006).</div>
<div class="line">First revision to interaction energies (S22A) from Takatani et al. JCP 132 144104 (2010).</div>
<div class="line">Second revision to interaction energies (S22B) from Marshall et al. JCP 135 194102 (2011).</div>
</div>
<ul class="simple">
<li><strong>cp</strong>  <code class="docutils literal"><span class="pre">'off'</span></code> || <code class="docutils literal"><span class="pre">'on'</span></code></li>
<li><strong>rlxd</strong> <code class="docutils literal"><span class="pre">'off'</span></code></li>
<li><strong>benchmark</strong><ul>
<li><code class="docutils literal"><span class="pre">'S220'</span></code> Jurecka et al. PCCP 8 1985 (2006).</li>
<li><code class="docutils literal"><span class="pre">'S22A'</span></code> Takatani et al. JCP 132 144104 (2010).</li>
<li><img class="math" src="_images/math/fcb47d177e58f83257e03078e39b830ee90caec8.png" alt="\Rightarrow" style="vertical-align: -1px"/> <code class="docutils literal"><span class="pre">'S22B'</span></code> <img class="math" src="_images/math/589f0defd3f7d56ed5fb2872215af7ebba9db67a.png" alt="\Leftarrow" style="vertical-align: -1px"/> Marshall et al. JCP 135 194102 (2011).</li>
</ul>
</li>
<li><strong>subset</strong><ul>
<li><code class="docutils literal"><span class="pre">'small'</span></code> water dimer, methane dimer, ethene-ethine</li>
<li><code class="docutils literal"><span class="pre">'large'</span></code> adenine-thymine</li>
<li><code class="docutils literal"><span class="pre">'HB'</span></code> hydrogen-bonded systems</li>
<li><code class="docutils literal"><span class="pre">'MX'</span></code> mixed-influence systems</li>
<li><code class="docutils literal"><span class="pre">'DD'</span></code> dispersion-dominated systems</li>
<li><code class="docutils literal"><span class="pre">'S11'</span></code> smaller systems in S22</li>
<li><code class="docutils literal"><span class="pre">'WATER'</span></code> water dimer</li>
</ul>
</li>
</ul>
</div>
<hr class="docutils" />
<div class="section" id="module-NHTBH">
<span id="nhtbh"></span><h3><a class="reference external" href="https://github.com/psi4/psi4public/blob/master/lib/databases/NHTBH.py">NHTBH</a><a class="headerlink" href="#module-NHTBH" title="Permalink to this headline"></a></h3>
<div class="line-block">
<div class="line">Database (Truhlar) of non-hydrogen-transfer barrier height reactions.</div>
<div class="line">Geometries and Reaction energies from Truhlar and coworkers at site <a class="reference external" href="http://t1.chem.umn.edu/misc/database_group/database_therm_bh/non_H.htm">http://t1.chem.umn.edu/misc/database_group/database_therm_bh/non_H.htm</a>.</div>
</div>
<ul class="simple">
<li><strong>cp</strong>  <code class="docutils literal"><span class="pre">'off'</span></code></li>
<li><strong>rlxd</strong> <code class="docutils literal"><span class="pre">'off'</span></code></li>
<li><strong>subset</strong><ul>
<li><code class="docutils literal"><span class="pre">'small'</span></code></li>
<li><code class="docutils literal"><span class="pre">'large'</span></code></li>
</ul>
</li>
</ul>
</div>
<hr class="docutils" />
<div class="section" id="module-A24alt">
<span id="a24alt"></span><h3><a class="reference external" href="https://github.com/psi4/psi4public/blob/master/lib/databases/A24alt.py">A24alt</a><a class="headerlink" href="#module-A24alt" title="Permalink to this headline"></a></h3>
<div class="line-block">
<div class="line">Database (Hobza) of interaction energies for bimolecular complexes.</div>
<div class="line">Geometries from &lt;Reference&gt;.</div>
<div class="line">Reference interaction energies from Rezac and Hobza, JCTC (in press).</div>
</div>
<ul class="simple">
<li><strong>cp</strong>  <code class="docutils literal"><span class="pre">'off'</span></code> &lt;erase this comment and after unless on is a valid option&gt; || <code class="docutils literal"><span class="pre">'on'</span></code></li>
<li><strong>rlxd</strong> <code class="docutils literal"><span class="pre">'off'</span></code> &lt;erase this comment and after unless on is valid option&gt; || <code class="docutils literal"><span class="pre">'on'</span></code></li>
<li><strong>benchmark</strong><ul>
<li><code class="docutils literal"><span class="pre">'&lt;benchmark_name&gt;'</span></code> &lt;Reference&gt;.</li>
<li><img class="math" src="_images/math/fcb47d177e58f83257e03078e39b830ee90caec8.png" alt="\Rightarrow" style="vertical-align: -1px"/> <code class="docutils literal"><span class="pre">'&lt;default_benchmark_name&gt;'</span></code> <img class="math" src="_images/math/589f0defd3f7d56ed5fb2872215af7ebba9db67a.png" alt="\Leftarrow" style="vertical-align: -1px"/> &lt;Reference&gt;.</li>
</ul>
</li>
<li><strong>subset</strong><ul>
<li><code class="docutils literal"><span class="pre">'small'</span></code> &lt;members_description&gt;</li>
<li><code class="docutils literal"><span class="pre">'large'</span></code> &lt;members_description&gt;</li>
<li><code class="docutils literal"><span class="pre">'&lt;subset&gt;'</span></code> &lt;members_description&gt;</li>
</ul>
</li>
</ul>
</div>
<hr class="docutils" />
<div class="section" id="module-HTBH">
<span id="htbh"></span><h3><a class="reference external" href="https://github.com/psi4/psi4public/blob/master/lib/databases/HTBH.py">HTBH</a><a class="headerlink" href="#module-HTBH" title="Permalink to this headline"></a></h3>
<div class="line-block">
<div class="line">Database (Truhlar) of hydrogen-transfer barrier height reactions.</div>
<div class="line">Geometries from Truhlar and coworkers at site <a class="reference external" href="http://t1.chem.umn.edu/misc/database_group/database_therm_bh/raw_geom.cgi">http://t1.chem.umn.edu/misc/database_group/database_therm_bh/raw_geom.cgi</a> .</div>
<div class="line">Reference energies from Zhao et al. JPCA, 109 2012-2018 (2005) doi: 10.1021/jp045141s [in supporting information].</div>
</div>
<ul class="simple">
<li><strong>cp</strong>  <code class="docutils literal"><span class="pre">'off'</span></code></li>
<li><strong>rlxd</strong> <code class="docutils literal"><span class="pre">'off'</span></code></li>
<li><strong>subset</strong><ul>
<li><code class="docutils literal"><span class="pre">'small'</span></code></li>
<li><code class="docutils literal"><span class="pre">'large'</span></code></li>
</ul>
</li>
</ul>
</div>
<hr class="docutils" />
<div class="section" id="module-BAKERJCC93">
<span id="bakerjcc93"></span><h3><a class="reference external" href="https://github.com/psi4/psi4public/blob/master/lib/databases/BAKERJCC93.py">BAKERJCC93</a><a class="headerlink" href="#module-BAKERJCC93" title="Permalink to this headline"></a></h3>
<div class="line-block">
<div class="line">Database of molecules that are challenging to optimize.</div>
<div class="line">Geometries from Baker J. Comput. Chem. 14 1085 (1993), as reported
in Bakken and Helgaker, J. Chem. Phys. 117, 9160 (2002), with a few
further corrections.</div>
<div class="line">No reference energies defined.</div>
</div>
<ul class="simple">
<li><strong>cp</strong>  <code class="docutils literal"><span class="pre">'off'</span></code></li>
<li><strong>rlxd</strong> <code class="docutils literal"><span class="pre">'off'</span></code></li>
<li><strong>subset</strong><ul>
<li><code class="docutils literal"><span class="pre">'small'</span></code></li>
<li><code class="docutils literal"><span class="pre">'large'</span></code></li>
</ul>
</li>
</ul>
</div>
<hr class="docutils" />
<div class="section" id="module-HTR40">
<span id="htr40"></span><h3><a class="reference external" href="https://github.com/psi4/psi4public/blob/master/lib/databases/HTR40.py">HTR40</a><a class="headerlink" href="#module-HTR40" title="Permalink to this headline"></a></h3>
<div class="line-block">
<div class="line">Database of Hydrogen transfer reactions.</div>
<div class="line">Geometries from Bozkaya and Sherrill.</div>
<div class="line">Reference energies from Bozkaya and Sherrill.</div>
</div>
<ul class="simple">
<li><strong>benchmark</strong><ul>
<li><code class="docutils literal"><span class="pre">'&lt;benchmark_name&gt;'</span></code> &lt;Reference&gt;.</li>
<li><img class="math" src="_images/math/fcb47d177e58f83257e03078e39b830ee90caec8.png" alt="\Rightarrow" style="vertical-align: -1px"/> <code class="docutils literal"><span class="pre">'&lt;default_benchmark_name&gt;'</span></code> <img class="math" src="_images/math/589f0defd3f7d56ed5fb2872215af7ebba9db67a.png" alt="\Leftarrow" style="vertical-align: -1px"/> &lt;Reference&gt;.</li>
</ul>
</li>
<li><strong>subset</strong><ul>
<li><code class="docutils literal"><span class="pre">'small'</span></code> &lt;members_description&gt;</li>
<li><code class="docutils literal"><span class="pre">'large'</span></code> &lt;members_description&gt;</li>
<li><code class="docutils literal"><span class="pre">'&lt;subset&gt;'</span></code> &lt;members_description&gt;</li>
</ul>
</li>
</ul>
<hr class="docutils" />
<style type="text/css"><!--
 .green {color: red;}
 .sc {font-variant: small-caps;}
 --></style></div>
</div>
</div>


          </div>
        </div>
      </div>
      <div class="sphinxsidebar" role="navigation" aria-label="main navigation">
        <div class="sphinxsidebarwrapper">
  <h3><a href="index.html">Table Of Contents</a></h3>
  <ul>
<li><a class="reference internal" href="#">Database</a><ul>
<li><a class="reference internal" href="#output">Output</a></li>
<li><a class="reference internal" href="#available-databases">Available Databases</a><ul>
<li><a class="reference internal" href="#module-JSCH">JSCH</a></li>
<li><a class="reference internal" href="#module-S22by5">S22by5</a></li>
<li><a class="reference internal" href="#module-RSE42">RSE42</a></li>
<li><a class="reference internal" href="#module-HSG">HSG</a></li>
<li><a class="reference internal" href="#module-ACENES">ACENES</a></li>
<li><a class="reference internal" href="#module-S66">S66</a></li>
<li><a class="reference internal" href="#module-S66by8">S66by8</a></li>
<li><a class="reference internal" href="#module-HBC6">HBC6</a></li>
<li><a class="reference internal" href="#module-CORE">CORE</a></li>
<li><a class="reference internal" href="#module-NBC10">NBC10</a></li>
<li><a class="reference internal" href="#module-A24">A24</a></li>
<li><a class="reference internal" href="#module-BASIC">BASIC</a></li>
<li><a class="reference internal" href="#module-BAKERJCC96">BAKERJCC96</a></li>
<li><a class="reference internal" href="#module-BENCH12">BENCH12</a></li>
<li><a class="reference internal" href="#module-NCB31">NCB31</a></li>
<li><a class="reference internal" href="#module-RGC10">RGC10</a></li>
<li><a class="reference internal" href="#module-S22">S22</a></li>
<li><a class="reference internal" href="#module-NHTBH">NHTBH</a></li>
<li><a class="reference internal" href="#module-A24alt">A24alt</a></li>
<li><a class="reference internal" href="#module-HTBH">HTBH</a></li>
<li><a class="reference internal" href="#module-BAKERJCC93">BAKERJCC93</a></li>
<li><a class="reference internal" href="#module-HTR40">HTR40</a></li>
</ul>
</li>
</ul>
</li>
</ul>

  <h4>Previous topic</h4>
  <p class="topless"><a href="freq.html"
                        title="previous chapter">Frequency</a></p>
  <h4>Next topic</h4>
  <p class="topless"><a href="autodoc_available_databases.html"
                        title="next chapter">JSCH</a></p>
  <div role="note" aria-label="source link">
    <h3>This Page</h3>
    <ul class="this-page-menu">
      <li><a href="_sources/db.txt"
            rel="nofollow">Show Source</a></li>
    </ul>
   </div>
<div id="searchbox" style="display: none" role="search">
  <h3>Quick search</h3>
    <form class="search" action="search.html" method="get">
      <input type="text" name="q" />
      <input type="submit" value="Go" />
      <input type="hidden" name="check_keywords" value="yes" />
      <input type="hidden" name="area" value="default" />
    </form>
    <p class="searchtip" style="font-size: 90%">
    Enter search terms or a module, class or function name.
    </p>
</div>
<script type="text/javascript">$('#searchbox').show(0);</script>
        </div>
      </div>
      <div class="clearer"></div>
    </div>
    <div class="relbar-bottom">
        
    <div class="related" role="navigation" aria-label="related navigation">
      <h3>Navigation</h3>
      <ul>
        <li class="right" style="margin-right: 10px">
          <a href="genindex.html" title="General Index"
             >index</a></li>
        <li class="right" >
          <a href="py-modindex.html" title="Python Module Index"
             >modules</a> &nbsp; &nbsp;</li>
        <li class="right" >
          <a href="contents.html" title="Table Of Contents"
             >toc</a> &nbsp; &nbsp;</li>
        <li class="right" >
          <a href="autodoc_available_databases.html" title="JSCH"
             >next</a> &nbsp; &nbsp;</li>
        <li class="right" >
          <a href="freq.html" title="Frequency"
             >previous</a> &nbsp; &nbsp;</li>
    <li><a href="index.html">Psi4 []</a> &raquo; </li>

          <li class="nav-item nav-item-1"><a href="psithonfunc.html" >Psithon Functions: Invoking a Calculation</a> &raquo;</li> 
      </ul>
    </div>
    </div>

    <div class="footer" role="contentinfo">
        &copy; Copyright 2015, The Psi4 Project.
      Last updated on Tuesday, 12 January 2016 03:10PM.
      Created using <a href="http://sphinx-doc.org/">Sphinx</a> 1.3.3.
    </div>
    <!-- cloud_sptheme 1.3 -->
  </body>
</html>