From 5a7b7cad0f8492daf3118111efd710627064e17b Mon Sep 17 00:00:00 2001 From: alongd Date: Sun, 21 Jul 2024 13:43:34 +0000 Subject: [PATCH] deploy: 08e7e93a069964c1898548795b26624cfa9a9bdb --- _modules/arc/species/conformers.html | 55 +++++++++++++++++++++++++-- api/conformers.html | 25 +++++++++++- genindex.html | 2 + objects.inv | Bin 6949 -> 6968 bytes searchindex.js | 2 +- 5 files changed, 78 insertions(+), 6 deletions(-) diff --git a/_modules/arc/species/conformers.html b/_modules/arc/species/conformers.html index a41ade8a21..393cb099dd 100644 --- a/_modules/arc/species/conformers.html +++ b/_modules/arc/species/conformers.html @@ -499,7 +499,7 @@

Source code for arc.species.conformers

     smeared_scan_res = smeared_scan_res or SMEARED_SCAN_RESOLUTIONS
     if not any(['torsion_dihedrals' in conformer for conformer in conformers]):
         conformers = determine_dihedrals(conformers, torsions)
-    torsion_angles = get_torsion_angles(label, conformers, torsions)  # get all wells per torsion
+    torsion_angles = get_torsion_angles(label, conformers, torsions, mol_list, tops)  # get all wells per torsion
     mol = mol_list[0]
 
     symmetries = dict()
@@ -1060,6 +1060,8 @@ 

Source code for arc.species.conformers

     smeared_scan_res = smeared_scan_res or SMEARED_SCAN_RESOLUTIONS
     sampling_points = list()
     wells = get_wells(label, torsion_angles, blank=WELL_GAP)
+    if symmetry % len(wells) == 0:
+        symmetry = len(wells)
     for i, well in enumerate(wells):
         width = abs(well['end_angle'] - well['start_angle'])
         mean = sum(well['angles']) / len(well['angles'])
@@ -1096,9 +1098,10 @@ 

Source code for arc.species.conformers

     mol = mol_list[0]
     top2 = [i + 1 for i in range(len(mol.atoms)) if i + 1 not in top1]
     for j, top in enumerate([top1, top2]):
-        # A quick bypass for methyl rotors which are too common:
+        # A quick bypass for carbon rotors that have three equal elements with only one bond that is connected to the carbon atom
         if len(top) == 4 and mol.atoms[top[0] - 1].is_carbon() \
-                and all([mol.atoms[top[i] - 1].is_hydrogen() for i in range(1, 4)]):
+                and all(mol.atoms[top[1] - 1].symbol == mol.atoms[top[i] - 1].symbol for i in range(2, 4)) \
+                    and all(len(mol.atoms[top[i] - 1].bonds) == 1 for i in range(1, 4)):
             symmetry *= 3
             check_tops[j] = 0
         # A quick bypass for methylene radicals:
@@ -1162,6 +1165,45 @@ 

Source code for arc.species.conformers

     return symmetry
+
[docs]def add_missing_symmetric_torsion_values(top1, mol_list, torsion_scan): + """ + Add symmetry to a torsion scan in the rotor for efficient conformer generation. + + Args: + top1 (list): A list of atom indices on one side of the torsion, including the pivotal atom. + mol_list (list): A list of molecules. + torsion_scan (list): The angles corresponding to this torsion from all conformers. + + Returns: + torsion_scan (list): The modified torsion_scan with added symmetric angles. + """ + mol = mol_list[0] + top2 = [i + 1 for i in range(len(mol.atoms)) if i + 1 not in top1] + for j, top in enumerate([top1, top2]): + # A quick bypass for carbon rotors that have three equal elements (e.g., CH3 or CF3) with only one bond that is connected to the carbon atom + # For such rotors, if a torsion angle difference of 60 degrees is found during the sampling, we would like to manually add this gap for the existing symmetries + if len(top) == 4 and mol.atoms[top[0] - 1].is_carbon() \ + and all(mol.atoms[top[1] - 1].symbol == mol.atoms[top[i] - 1].symbol for i in range(2, 4)) \ + and all(len(mol.atoms[top[i] - 1].bonds) == 1 for i in range(1, 4)): + + new_angles = [] + for angle in torsion_scan: + test_angle = (angle + 60) % 360 + if any((test_angle - 5) % 360 <= existing_angle <= (test_angle + 5) % 360 for existing_angle in torsion_scan): + for angle_tba in torsion_scan: + new_angle = (angle_tba + 60) % 360 # Calculate new angle and ensure it wraps around at 360 + # Check if the new angle, adjusted by ±30 degrees, overlaps with any existing angles + if not any((new_angle - 30) % 360 <= existing_angle <= (new_angle + 30) % 360 for existing_angle in torsion_scan + new_angles): + new_angles.append(new_angle) + break + + # Extend the original list with non-overlapping new angles + torsion_scan.extend(new_angles) + torsion_scan.sort() # Sort the list to maintain order + + return torsion_scan
+ +
[docs]def determine_well_width_tolerance(mean_width): """ Determine the tolerance by which well widths are determined to be nearly equal. @@ -1241,7 +1283,7 @@

Source code for arc.species.conformers

     return lowest_confs
-
[docs]def get_torsion_angles(label, conformers, torsions): +
[docs]def get_torsion_angles(label, conformers, torsions, mol_list=None, tops=None): """ Populate each torsion pivots with all available angles from the generated conformers. @@ -1249,6 +1291,8 @@

Source code for arc.species.conformers

         label (str): The species' label.
         conformers (list): The conformers from which to extract the angles.
         torsions (list): The torsions to consider.
+        mol_list (list, optional): A list of Molecule objects.
+        tops (list, optional): A list of tops corresponding to torsions.
 
     Returns:
         dict: The torsion angles. Keys are torsion tuples, values are lists of all corresponding angles from conformers.
@@ -1265,6 +1309,9 @@ 

Source code for arc.species.conformers

                 torsion_angles[tuple(torsion)].append(conformer['torsion_dihedrals'][tuple(torsion)])
     for tor in torsion_angles.keys():
         torsion_angles[tor].sort()
+    if mol_list is not None and tops is not None:
+        for torsion, top in zip(torsions, tops):
+            torsion_angles[tuple(torsion)] = add_missing_symmetric_torsion_values(top, mol_list, torsion_angles[tuple(torsion)])
     return torsion_angles
diff --git a/api/conformers.html b/api/conformers.html index 5b11600ce2..bc0f90d159 100644 --- a/api/conformers.html +++ b/api/conformers.html @@ -218,6 +218,27 @@ get_lowest_confs
+
+
+arc.species.conformers.add_missing_symmetric_torsion_values(top1, mol_list, torsion_scan)[source]
+

Add symmetry to a torsion scan in the rotor for efficient conformer generation.

+
+
Parameters:
+
    +
  • top1 (list) – A list of atom indices on one side of the torsion, including the pivotal atom.

  • +
  • mol_list (list) – A list of molecules.

  • +
  • torsion_scan (list) – The angles corresponding to this torsion from all conformers.

  • +
+
+
Returns:
+

The modified torsion_scan with added symmetric angles.

+
+
Return type:
+

torsion_scan (list)

+
+
+
+
arc.species.conformers.change_dihedrals_and_force_field_it(label, mol, xyz, torsions, new_dihedrals, optimize=True, force_field='MMFF94s')[source]
@@ -959,7 +980,7 @@
-arc.species.conformers.get_torsion_angles(label, conformers, torsions)[source]
+arc.species.conformers.get_torsion_angles(label, conformers, torsions, mol_list=None, tops=None)[source]

Populate each torsion pivots with all available angles from the generated conformers.

Parameters:
@@ -967,6 +988,8 @@
  • label (str) – The species’ label.

  • conformers (list) – The conformers from which to extract the angles.

  • torsions (list) – The torsions to consider.

  • +
  • mol_list (list, optional) – A list of Molecule objects.

  • +
  • tops (list, optional) – A list of tops corresponding to torsions.

  • Returns:
    diff --git a/genindex.html b/genindex.html index 1f984dd5c1..28673f9a15 100644 --- a/genindex.html +++ b/genindex.html @@ -224,6 +224,8 @@

    A

  • add_label_to_unique_species_labels() (arc.scheduler.Scheduler method)
  • add_lone_pairs_by_atom_valance() (in module arc.species.converter) +
  • +
  • add_missing_symmetric_torsion_values() (in module arc.species.conformers)
  • add_rads_by_atom_valance() (in module arc.species.converter)
  • diff --git a/objects.inv b/objects.inv index 81ca12bd7ea64f6ba9cdc6ad97b68fa549a528b0..c154c8d1ed02edd261cc610a3d14b7f6b0971a0d 100644 GIT binary patch delta 2638 zcmV-U3bFO2Hn=vhO%8v8U3_kY#?6t#&1s?>54LTdieJ8H=M6sS`*2*(?Sh3LOY}_h zx+*qqnbHLR@c}F>`@$dC1kLfG{-9jHKAG4*%+0b6s^(O@q0HqMsVMFT^DbnGGMStP_x4s zrFb@n22vHOdP&t~_KF01cU?OKn@+6GaTySo+Cw#w2|HPszb8BwuoBoCV1&!08K*_o zU_i^B>qfRRcfNnkEXzB=YlzffXvi9+k^_5NR z<1hE7?>?2?I*#Y8J0_H!_*rBBbvk!{o3-!-`((wctW3XgdG{_MA`B0^Y%3TF>3hRW zI;!r`PH}(M4_2LObd?13u|#&vDH;finFJcb6K*Ss$2i_ff>Az&Vz(k%qXVtE;lO$d zEj;}0PQ@h_6rpx|ue(|m+do)|cE&KgEESKvVCS}b0?GCQcktBu{<82ep5rT1>BI|D z2IKAG*+P*5!VQo95?t(BkU_TXxOfa{uS>mdhkk!0fNEZX+RxMa?A6RJNJ1uzw>pZ= zd(9t2c2|GoNwi>{r;sKK)>YZ&sQe&~;~lSt`yruknyW84x@|9L-BxLQf5@_FHfP)q zlA3d1xkBy|8_VpH^W@K>U8s+Vn3y{}!@E4NpTa_oS>l2OjMF}PQWDO#!aL6A2XVOB z50!sA?3dK^D^Mt>Q){qbDFZIqI@j+!K_KfZN%iHa)yAZsrj+-u1l#D-wuXDWln$L z-qJ~&b#tAU0qLE4yW19HsJYrmd6Am8h0$4I+j~)?i94YLs7&wOGAq-ER*I zKR_zf1&Q!2E*Umos!zr#X0II5d0<fC z;Nq%`)DP^p59Mmh!EU4#J(X4k7*b>_dL$X9$IXrD8Cx1rskCVWV-8v#MPPp~nf5-P zR93dH=;8p5Q|zRgvN4l=-?|ernTobyUd(nZAu2A^S7YmIr!pU+;FWtPeEemEmK4C~Ct zv(HmZCC=8+&8DzB+4XK+P8WaHzm%@G9}fUeClA4QhTv^RpNrpm-fx}xk9Xt0ze@B!i% z43jexoX$!b;|HEy$-951W0XpnevO!SUiR+JoD^$lz-?cZNW-N0$p=i5yLfxomk_(ZbQZH=zikOK!jtSLx>%KWECJ2RtxOjiGzsq1yU%2b4U|96tL#I$>PF#z7>~N=Jm9A&Z$8<#OdcX*fFL3~Orq1q>wa$MK!C*3P55S%k>n>|S znI6He-+dfU8fT&Li1p2fj{#&|iwaL5Y@Hu^40A1OQ4SGkibk}(EeBgG zZ3v8&EX-*4F@t}zBOeb>v6LA|*5ezCK~pQKL5)q6t929NzLo}(N8iItv%VBY+Myv zUaPljFwVI+Uykbm-yT7jMJ4SWhJKXi*DD-q3J$={>e;48srEE^s(g;(1)z01`2kQ` z`$583rT%*7#X=DcDD(iZ@j8dSlTje6Yw3~=>%4t#PxnW>d-yJX-zT2XPEw8j$o(fD z4Ko=~D1Lw9inmc;sP8uIyt|U4a(9ze{K9bs@~7|O#);uz+h(wfTlwCI8rLkD-zq!5 zx)+|Vj{bpEU?m&XUuvf8WqCL|b=T#sPHrah8Zy|+o{F;9*Dd17(+JRsF8=O?A77<$n-^(hd-Ra_Oyp6TY)|C zk55p>MZTcWRuPRE`}*a7|NDRR;qxy)J-IWO7?NjJ0pn9w1z6AS@27cauUny6(67UK z;IMzE*~!lpMsOtbuzITWX)M%IdMfEnIWb`UA~igk-U5HvbguC&Qrd@8TKlImRw^V_RFcTB>Lpc|*$WKp&2sG! z3Ocbm$3;3^2oKdnChTPY{hsh#z)E0m5M?gSI4yw&16uZ6H?ozv^KE8X-U%&3qy{5T zJ{o*B4SfP*_o#mi)Ig!z!KWzgwO$#>c(v-IYO)N_)Zo7ZR_&a0SVwvpUsd zfZ&!v1F^kzbfd>@JI=guSHEG3~fr@hbFU{El#)%C>)DyNcFDLc(Zd7-J+q)E`-k zhoW(e7hES&FuXyH17Lnw;-~1l$_>nswU1YzuWT_Nf4Mig_NnZ~Zaf9uF`?|l&l>x$ z)2aB|tc5SwCo5KEW%_N!yEpw1VR#f}TftCB-y3GqQFV`YinD&O>QtkvB%qJKq&=7w-a9c?{#_?7XjPfZIyHU^@9caxB$H`M@;n8$=W-YOx2(_DU-NmQa{=rJL zGlt=1sd(%KJ9p6&NVXTaW1%)?L>3-KTYP0Iop@o&U^HAj`6p69xE;}7QHxy*GRU?a z7mp$BWv18dz^nvN%}Y@Gd0L;nIN60T$b|7$N3nl->-dAn?&=RDi59H$6w+kDx+>co zl^?`$yn)qlKP2=`bM+-hx9tV3+bWIkk3crf=8XG6QgaS0SIAvrW0_q+p8Q#~3&b%I z6LW_rY?sIBQ&^}mOI(nEaoWc=O2XMzc*pttAP%?Up;GTLqy+kIMVZ!8hNU4?dev$B ze)fNdaWI#*dL8>n5-Et`ZbPiv%huC~Il6+Uq!tgaHnQy^Q728a7a-;{cqVLObxrdj zJ9ed@Y@}lh_ls(cnGD}@jGc_THB&)&ZJy>CD9%!_9;CtMbbd*l51u+kds>y)3q0mU zv`1-jWvcB8rWCtoKsi$+v5R`vY)sC;TfcufkxDVWI!Zeb+fJ2%_+DI#?>RX0?w&%l z_F4{0HSLdt#d=Vdsw)r~e(<}_tZ zMfphagISY|+lZJ+hoY4pmqk7U^0OEl@k_Eh-jbS?}@E~=Yfhil~7sF`WS zk)QC4lk7|;uol+ygAr7gi}306mFTuqND$#*FDPUlte-~s=zvn`-}OCfkt5^z(`KSf zz;Ihu8ge+LFl8~dY4MMFDBJNHsHlIPgOya&yWbubet=Y{3*q2fTrzCFRG*Af%w7nj z^T4(OAxDvh%ZZX{8++aonWk8=&XSoq6q9JdoT%`wzr{rssUO&HAIjC1gWX6gdMd37 zFyO~lY)3LokDD9QGqyCMQfbo$#vHUfiojk0?R`F}tZZM=Md=%-*hw{IBN~7EzI7*{ zF%@ltu$b*gKU7?vudrNbO3hQY$=GJ>tz>X`0arF)U_++irF)*ADcKcBrU%Pf=S{a{0M7}lAOHlL@MN}R2sn@wSNvg_TtoGz?? zDP3`q1B8&7r%e?yx%&JANhhD3iz=IH$>>E*kdT)!(%PnGH*%SoA@V=Pw7~ZgzBNePmfj60@cUs)M z5?*zg3=2)CWY}~~;jnt2hU`n!P^Z53j`1wt!rcg+Ov%<$Z!0aC7!H4LIbi6lw;?<7 z7=_aXT4>DP4lmG*g5Ct=-c0?qoKQPGZY+=HSFz*;{4;=e-1Zb zkk{3{>@%zF#E}2i+vvHmi)tfImAf~>&|oP`-~+@j7$#>XIGvR=#t%HZl6OtVD3vn( z8Zqy@?A?tvDb~<{+rEFukcLU~lMk3Ackuub4Z~@hx;kG%a@q2s2!DQYZfITbLUDiS-J%U}onK*x*G|ocf5$l@|9|Op` z78RaA*g8M-80K2mq8uX76pd(mU3|(!>*^HPw3)#>K+_;DT+~junkXIy;g4l;m~Oab zqmbvA#ii7w~FbcelG({qx;jtV5cT)ur>X+7K8kS(wr8V+LnOJ|3Q8DKn6) z$2S&(rdCpk5Kw>d+OQ0mz@HS$sJp`bnF4VmUJ4;S5ANSZ&D*oN#DYK_Jf46O8w=_i-jT@Q0M_*<8=;u zC!;`C*U}{$)_MEfp6-u$_wZf(zE3=%ounH5k^4_R8fG$}Q2fLdZ==3Y-)-7?cO^&V z?k21Fh2wt;MpZeo!m_1HDs`tJr!jyms>=8rxBnzffksy&(NebbXBHsm#X5rugxPxs9tf_QXRCZ zeyn79_yEcLGn?x0c}VeB&P)&Bxs3BpETw?GB3FM48$@{~CZI>dz{kR?zW;9bD6;xT zfK-RiU%wm%Q6mpm*{j3zk?D&n4}Um;?P(8DwgP+NAD^I%i+n+$ts)vT_VvsE{`ddr z!{=XqdU9tlF(l8d0>-DV3b3Bt-%s<0IMmq_hvGwDwPzT0(=mNsSL@$PeQ!=1*gXU8bIT@nN9^o@SxlZ{-KVnD2*K==hUU7{~%@zmpvq_yTW^lNTC_ d0`CcvqZ%XvKAw}w8Y%)Rv6J;0KLn$cTMR1EFtPvu diff --git a/searchindex.js b/searchindex.js index fe91fa1444..a0f7c0796b 100644 --- a/searchindex.js +++ b/searchindex.js @@ -1 +1 @@ -Search.setIndex({"docnames": ["advanced", "api/common", "api/conformers", "api/converter", "api/index", "api/job", "api/level", "api/local", "api/main", "api/parser", "api/plotter", "api/processor", "api/reaction", "api/rmgdb", "api/scale", "api/scheduler", "api/species", "api/ssh", "api/trsh", "api/vectors", "api/zmat", "cite", "contribute", "credits", "examples", "index", "installation", "licence", "media", "output", "release", "running", "tools"], "filenames": ["advanced.rst", "api/common.rst", "api/conformers.rst", "api/converter.rst", "api/index.rst", "api/job.rst", "api/level.rst", "api/local.rst", "api/main.rst", "api/parser.rst", "api/plotter.rst", "api/processor.rst", "api/reaction.rst", "api/rmgdb.rst", "api/scale.rst", "api/scheduler.rst", "api/species.rst", "api/ssh.rst", "api/trsh.rst", "api/vectors.rst", "api/zmat.rst", "cite.rst", "contribute.rst", "credits.rst", "examples.rst", "index.rst", "installation.rst", "licence.rst", "media.rst", "output.rst", "release.rst", "running.rst", "tools.rst"], "titles": ["Advanced Features", "arc.common", "arc.species.conformers", "arc.species.converter", "ARC\u2019s API", "arc.job", "arc.level", "arc.job.local", "arc.main", "arc.parser", "arc.plotter", "arc.processor", "arc.reaction", "arc.rmgdb", "arc.utils.scale", "arc.scheduler", "arc.species.species", "arc.job.ssh", "arc.job.trsh", "arc.species.vectors", "arc.species.zmat", "How to cite ARC", "Contribute", "Credits", "Examples", "ARC - Automated Rate Calculator v1.1.0", "Installation instructions", "Licence", "Media", "Output", "Release notes", "Running ARC", "Standalone tools"], "terms": {"The": [0, 1, 2, 3, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 24, 25, 26, 27, 29, 32], "attribut": [0, 1, 2, 3, 6, 8, 10, 12, 13, 15, 16], "arcspeci": [0, 3, 8, 10, 11, 12, 15, 16, 18, 24, 30, 31], "object": [0, 1, 2, 3, 6, 8, 9, 10, 11, 12, 13, 15, 16, 20, 31], "whether": [0, 1, 2, 3, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 27], "ts": [0, 1, 2, 3, 8, 10, 12, 15, 16, 18, 20, 24, 26, 29, 30, 31], "extrem": [0, 10, 16], "It": [0, 15, 17, 22, 26, 28, 29, 30], "could": [0, 1, 2, 3, 6, 8, 9, 12, 15, 16, 17, 18, 20, 24, 26, 31], "multilin": [0, 1, 3, 8, 10, 11], "string": [0, 1, 2, 3, 6, 7, 8, 9, 10, 12, 14, 15, 16, 17, 20, 26], "contain": [0, 1, 2, 3, 9, 10, 12, 15, 16, 17, 20, 24, 29, 31], "list": [0, 1, 2, 3, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 24, 25, 26, 29, 30, 31], "sever": [0, 16, 18, 24, 26], "also": [0, 1, 2, 3, 15, 16, 17, 20, 24, 26, 29, 31, 32], "valid": [0, 2, 3, 8, 15, 20, 30, 31], "path": [0, 1, 2, 3, 7, 8, 9, 10, 11, 14, 15, 16, 17, 18, 25, 29, 31], "output": [0, 1, 3, 6, 7, 8, 9, 10, 11, 12, 15, 16, 17, 18, 24, 25, 30, 31], "format": [0, 1, 2, 3, 7, 8, 9, 10, 11, 12, 14, 15, 16, 19, 26, 29, 31], "s": [0, 1, 2, 3, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 22, 23, 24, 25, 26, 29, 30, 31, 32], "befor": [0, 2, 10, 16, 17, 26, 30, 32], "after": [0, 1, 3, 10, 15, 16, 20, 24, 26, 29], "see": [0, 2, 3, 6, 10, 11, 22, 24, 26, 29, 30, 31], "exampl": [0, 1, 2, 3, 8, 16, 18, 19, 20, 25, 26, 30, 31], "To": [0, 8, 24, 26, 31], "run": [0, 1, 2, 3, 7, 8, 9, 15, 16, 17, 18, 25, 26, 29, 30, 32], "particular": [0, 27], "onli": [0, 1, 2, 3, 8, 9, 10, 12, 15, 16, 18, 20, 26, 30], "specific_job_typ": [0, 1, 8], "you": [0, 7, 17, 22, 24, 26, 29, 31, 32], "want": 0, "current": [0, 1, 2, 3, 8, 15, 16, 18, 26, 32], "support": [0, 1, 2, 3, 8, 9, 10, 15, 16, 18, 26, 30], "follow": [0, 1, 2, 9, 10, 15, 18, 20, 24, 25, 26, 27, 29], "opt": [0, 8, 9, 15, 16, 18, 24, 30], "freq": [0, 6, 8, 9, 14, 15, 18, 24, 29, 30], "sp": [0, 8, 9, 15, 16, 18, 24, 30], "onedmin": [0, 8, 15, 16, 25], "irc": [0, 8, 10, 15, 16], "note": [0, 2, 3, 7, 16, 20, 24, 25, 26, 29], "take": [0, 1, 2, 3, 10, 16, 18], "higher": [0, 26, 30], "preced": [0, 10], "than": [0, 1, 3, 6, 8, 9, 13, 15, 16, 18, 19, 20, 24, 26, 30, 31], "job_typ": [0, 1, 6, 8, 15, 18, 24, 30], "If": [0, 1, 2, 3, 7, 8, 9, 10, 11, 12, 14, 15, 16, 17, 18, 19, 20, 26, 29, 30, 31], "both": [0, 2, 3, 10, 13, 15, 16, 17, 26], "dismiss": 0, "given": [0, 1, 2, 3, 6, 8, 10, 12, 13, 14, 15, 16, 18, 19, 20, 26, 28, 32], "popul": [0, 2, 6, 8, 12, 13, 16], "dictionari": [0, 1, 2, 3, 6, 8, 9, 10, 11, 12, 14, 15, 16, 18, 20, 26, 29, 30], "For": [0, 2, 8, 15, 16, 18, 24, 26], "two": [0, 1, 2, 3, 8, 11, 12, 15, 16, 19, 20, 26, 32], "ar": [0, 1, 2, 3, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 23, 24, 25, 26, 30, 31, 32], "equival": [0, 3, 16], "1": [0, 1, 2, 3, 7, 8, 9, 10, 11, 12, 14, 15, 16, 18, 19, 20, 21, 24, 26, 29, 31, 32], "fals": [0, 1, 2, 3, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 20, 24], "true": [0, 1, 2, 3, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 20, 24, 30], "2": [0, 1, 2, 3, 7, 8, 12, 14, 15, 16, 18, 19, 20, 24, 26, 32], "class": [0, 1, 6, 8, 12, 15, 16, 17, 31], "meant": 0, "allow": [0, 3, 6, 8, 15, 16, 20, 26, 30, 31], "detail": [0, 24, 26, 29, 31], "comprehens": [0, 1, 6], "user": [0, 2, 3, 7, 8, 12, 15, 16, 17, 18, 25, 26, 28, 30, 31, 32], "per": [0, 2, 3, 15, 16, 30], "some": [0, 1, 3, 7, 12, 16, 17, 20, 25, 26, 29, 30], "shortcut": [0, 8, 12], "describ": [0, 16, 20, 25, 29], "below": [0, 2, 8, 10, 15, 16, 24, 26], "which": [0, 1, 2, 3, 6, 7, 8, 9, 10, 11, 12, 14, 15, 16, 17, 18, 19, 20, 24, 25, 26, 29, 31], "mai": [0, 3, 15, 20, 22, 24, 25, 26, 29], "otherwis": [0, 1, 2, 8, 10, 15, 16, 20, 24, 27], "assum": [0, 2, 3, 10, 16, 20, 26, 31], "valu": [0, 1, 2, 3, 6, 7, 8, 9, 10, 11, 12, 14, 15, 16, 19, 20, 24, 26, 29], "conformer_level": [0, 8, 15, 24], "ts_guess_level": [0, 8, 15], "opt_level": [0, 8, 15, 16, 24], "freq_level": [0, 8, 15, 16, 24], "sp_level": [0, 8, 11, 15], "composite_method": [0, 8, 15], "scan_level": [0, 8, 15, 24], "irc_level": [0, 8, 15], "orbitals_level": [0, 8, 15], "each": [0, 1, 2, 3, 8, 9, 10, 12, 15, 16, 20, 26, 29], "defin": [0, 1, 2, 3, 6, 8, 9, 12, 14, 15, 19, 20, 24, 25, 30, 31, 32], "either": [0, 1, 2, 3, 6, 7, 8, 9, 10, 12, 13, 14, 15, 16, 17, 18, 19, 26], "method": [0, 2, 3, 6, 8, 9, 10, 12, 14, 15, 16, 17, 18, 24, 26, 30, 32], "basi": [0, 6, 24, 30], "where": [0, 1, 2, 7, 8, 10, 15, 16, 18, 25, 26, 29], "applic": [0, 12, 16], "e": [0, 1, 2, 3, 6, 7, 8, 10, 11, 12, 15, 16, 18, 20, 24, 25, 26, 29, 31], "g": [0, 1, 2, 3, 6, 7, 8, 10, 11, 14, 15, 16, 18, 20, 24, 25, 26, 29, 31], "cb": [0, 8, 15, 24], "qb3": [0, 8, 15, 24], "wb97xd": [0, 6, 8, 24], "def2": [0, 6, 8], "tzvp": [0, 6, 8], "addit": [0, 2, 6, 8, 11, 15, 16, 19, 26, 29, 30, 31], "argument": [0, 3, 6, 8, 9, 10, 15, 16], "auxiliary_basi": [0, 6], "dispers": [0, 6, 24], "cab": [0, 6], "complementari": [0, 6], "auxiliari": [0, 6, 24], "f12": [0, 6, 8, 24], "software_vers": [0, 6], "solvation_method": [0, 6], "solvation_scheme_level": [0, 6], "arg": [0, 3, 6], "b3lyp": [0, 6, 8, 24], "6": [0, 1, 6, 8, 14, 15, 16, 20, 24], "31g": [0, 6, 8], "d": [0, 1, 2, 3, 7, 8, 14, 15, 18, 20, 21, 24, 26], "p": [0, 6, 7, 8, 11, 15, 24], "empiricaldispers": [0, 24], "gd3bj": [0, 24], "model": [0, 6, 25, 30], "chemistri": [0, 6, 14, 20, 30], "along": [0, 3, 18, 28, 31], "d3": 0, "version": [0, 1, 6, 14, 16, 21, 25, 26], "grimm": 0, "beck": 0, "johnson": [0, 21, 23], "damp": 0, "requir": [0, 1, 2, 3, 15, 16, 18, 26], "gaussian": [0, 3, 6, 8, 9, 10, 16, 18, 24, 26, 29, 30], "In": [0, 1, 2, 10, 20, 24, 26, 31], "differ": [0, 1, 3, 6, 8, 12, 15, 16, 19, 20, 24, 26, 29, 31, 32], "have": [0, 1, 2, 3, 8, 12, 15, 16, 18, 19, 20, 22, 24, 25, 26, 31, 32], "variou": [0, 3, 9, 15, 24, 31, 32], "make": [0, 1, 3, 7, 8, 12, 13, 15, 16, 17, 18, 26, 30, 31, 32], "sure": [0, 1, 7, 8, 12, 16, 17, 26, 31, 32], "pass": [0, 1, 10, 16, 20, 26], "base": [0, 1, 2, 3, 10, 11, 14, 16, 18, 20, 26], "intend": [0, 3], "should": [0, 1, 2, 3, 7, 8, 10, 14, 15, 16, 18, 20, 26, 30], "anoth": [0, 2, 10, 12, 16, 31], "dlpno": [0, 8], "ccsd": [0, 8, 15, 16, 24], "cc": [0, 8, 24], "pvtz": [0, 8, 24], "aug": [0, 8], "c": [0, 2, 3, 16, 20, 21, 24, 27], "keyword": [0, 15, 18, 26, 31], "opt_converg": 0, "tightopt": 0, "orca": [0, 1, 3, 9, 26], "singl": [0, 1, 3, 8, 9, 11, 12, 14, 15, 16, 26], "point": [0, 2, 3, 8, 9, 10, 11, 14, 15, 16, 18, 19, 30], "THe": [0, 15], "definit": [0, 18, 25], "apfd": [0, 24], "def2tzvp": [0, 24], "pm6": 0, "effect": 0, "implement": [0, 3, 9, 16, 20, 22], "futur": [0, 26], "automat": [0, 2, 3, 8, 16, 24, 25, 26, 31], "determin": [0, 1, 2, 3, 6, 7, 8, 9, 12, 13, 14, 15, 16, 18, 20, 25, 26, 29, 30], "unless": [0, 3, 12, 24, 26], "level_of_theori": [0, 8, 10, 15, 18, 24], "simultan": [0, 2, 16, 26], "def2svp": 0, "doe": [0, 1, 2, 3, 8, 10, 16, 17, 18, 20, 26, 28, 32], "delimin": 0, "interpret": 0, "all": [0, 1, 2, 3, 6, 7, 8, 9, 10, 12, 13, 15, 16, 17, 18, 20, 25, 26, 27, 29, 30, 31], "ani": [0, 1, 2, 6, 9, 10, 12, 15, 16, 17, 18, 20, 26, 27, 31], "neither": [0, 2, 3, 10, 20, 26], "nor": [0, 2, 3, 10, 16, 20, 26], "composit": [0, 3, 6, 8, 9, 15, 20, 24], "semi": [0, 6], "empir": [0, 6], "wa": [0, 1, 3, 6, 7, 8, 10, 13, 15, 16, 18, 20, 25, 26, 28, 31], "am1": 0, "must": [0, 2, 3, 6, 10, 12, 16, 18, 26], "etc": [0, 9, 20], "rather": [0, 1, 3, 20, 26], "geometri": [0, 2, 3, 8, 9, 10, 15, 16, 18, 20, 29, 30, 31], "pleas": [0, 22], "avoid": [0, 1, 3, 8, 10, 12, 15, 16, 17, 22, 26], "conflict": [0, 26], "confus": 0, "rais": [0, 1, 2, 3, 6, 8, 9, 10, 12, 15, 16, 17, 18, 19, 20], "inputerror": [0, 1, 2, 3, 9, 10, 15, 16, 17, 18], "A": [0, 1, 2, 3, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 26, 27, 29, 30, 31], "notabl": 0, "nest": [0, 16, 26], "direct": [0, 1, 3, 10, 15, 16, 19, 24, 26, 30, 31], "There": 0, "kei": [0, 1, 2, 3, 6, 8, 9, 10, 11, 14, 15, 16, 17, 20, 25], "first": [0, 1, 2, 3, 8, 15, 16, 17, 20, 26, 30, 31], "block": [0, 1, 3, 9, 15], "entri": [0, 1, 2, 3, 6, 8, 9, 10, 11, 12, 13, 14, 15, 16, 18, 20], "under": [0, 7, 15, 17, 25, 26, 27, 29, 32], "ad": [0, 3, 10, 16, 20, 26, 30, 31], "line": [0, 2, 3, 7, 10, 15, 17, 18, 24, 26], "while": [0, 2, 7, 16, 17, 26, 29], "treat": [0, 2, 15, 16, 30, 31], "correspond": [0, 1, 2, 3, 8, 10, 12, 13, 14, 15, 16, 20], "well": [0, 2, 3, 9, 10, 12, 15, 16, 18, 20, 22, 25, 26], "intern": [0, 2, 3, 9, 15, 16, 18, 20, 31], "encourag": [0, 26], "can": [0, 1, 2, 3, 6, 7, 8, 14, 15, 16, 17, 20, 26, 29, 30, 31, 32], "deduc": [0, 2, 6, 15], "heurist": 0, "yet": [0, 8, 15, 16, 20, 25, 30], "sinc": [0, 1, 2, 3, 15, 16, 20], "depend": [0, 20, 25, 30], "highli": [0, 26], "recommend": [0, 2, 15, 16, 22, 25, 29, 31], "option": [0, 1, 2, 3, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 25, 29], "incompat": 0, "conveni": [0, 25, 31], "sting": 0, "internallt": 0, "convert": [0, 1, 2, 4, 6, 14, 16, 20, 25, 30], "scf": [0, 18], "dryrun": 0, "n": [0, 2, 3, 16, 20, 29, 31], "end": [0, 3, 19], "iop": 0, "99": [0, 30], "33": 0, "append": [0, 15, 18, 26], "respect": [0, 1, 2, 3, 6, 8, 9, 10, 12, 15, 16, 20, 26, 29, 32], "size": [0, 2, 9, 10, 26], "molecul": [0, 1, 2, 3, 8, 9, 10, 12, 16, 18, 19, 20, 30], "do": [0, 2, 3, 7, 8, 15, 17, 20, 26, 27, 32], "so": [0, 1, 2, 7, 14, 15, 17, 20, 24, 26, 27], "adaptive_level": [0, 8, 15], "rang": [0, 1, 8, 15, 19], "number": [0, 1, 2, 3, 8, 9, 10, 11, 12, 15, 16, 18, 20, 26, 30, 32], "heavi": [0, 1, 2, 8, 15, 16, 18, 20, 30], "hydrogen": [0, 1, 2, 3, 8, 10, 16, 18, 30], "atom": [0, 1, 2, 3, 8, 9, 10, 12, 13, 15, 16, 18, 19, 20, 29, 30], "tupl": [0, 1, 2, 3, 7, 8, 9, 10, 11, 12, 13, 15, 16, 17, 18, 19, 20], "min_num_atom": [0, 8, 15], "max_num_atom": [0, 8, 15], "forget": 0, "bound": 0, "entir": [0, 3, 10, 15, 20], "between": [0, 1, 2, 3, 7, 8, 10, 11, 12, 15, 16, 18, 19], "inf": [0, 8, 15], "aren": [0, 3, 12, 18, 29], "gap": [0, 16], "5": [0, 1, 2, 8, 10, 15, 16, 18, 20, 24, 26], "311": [0, 8, 24], "2d": [0, 2, 8, 10, 15, 16, 19, 20, 25, 30], "2p": [0, 8], "15": [0, 1, 2, 8, 10, 20], "cbsb7": [0, 8], "16": [0, 8], "30": [0, 2, 7, 8, 18], "31": [0, 8, 15], "separ": [0, 3, 15, 16], "via": [0, 9, 16, 17, 24, 26, 28], "amount": [0, 1, 2, 26], "job_memori": [0, 8], "posit": [0, 1, 10], "integ": [0, 1, 2, 3, 15], "unit": [0, 1, 3, 10, 19, 26], "gb": [0, 8, 15, 18, 26], "total": [0, 1, 8, 15, 16, 18, 26], "node": [0, 7, 17, 18, 26], "server": [0, 1, 7, 8, 14, 15, 17, 18, 25, 29, 30, 32], "py": [0, 3, 15, 16, 20, 24, 26, 29, 30, 31], "thi": [0, 1, 2, 3, 7, 8, 9, 10, 11, 12, 13, 15, 16, 17, 18, 20, 26, 27, 28, 29, 30, 31, 32], "maximum": [0, 1, 2, 8, 10, 11, 16, 17, 26], "relat": [0, 3, 15, 17, 18, 20, 32], "request": [0, 1, 2, 3, 14, 15, 16, 18, 20, 26, 28, 30], "more": [0, 1, 3, 13, 15, 16, 18, 20, 26, 30], "initi": [0, 1, 2, 8, 9, 14, 15, 16, 18, 30], "14": [0, 3, 8, 15, 26], "case": [0, 1, 2, 8, 15, 16, 18, 20, 26, 29], "crash": [0, 7, 18, 26, 31], "due": [0, 26, 31], "insuffici": 0, "try": [0, 1, 2, 15, 17, 18, 20, 22, 26], "resubmit": 0, "ask": [0, 29], "up": [0, 1, 2, 24, 26], "maxim": [0, 1, 8, 15], "turn": 0, "like": [0, 3, 15, 16, 24, 26, 31], "off": [0, 30], "spawn": [0, 7, 8, 12, 15, 16, 17, 31, 32], "one": [0, 1, 2, 3, 8, 10, 13, 15, 16, 17, 18, 24, 26], "converg": [0, 2, 8, 15, 16, 18, 29], "now": [0, 1, 16, 30], "alreadi": [0, 2, 3, 6, 15, 16, 18, 20, 26, 30], "possibl": [0, 2, 7, 13, 16, 17], "instruct": [0, 25, 31], "instead": [0, 2, 3, 7, 8, 10, 15, 16, 20, 26, 30], "begin": [0, 1, 3], "call": [0, 1, 2, 3, 7, 8, 9, 14, 15, 16, 17], "although": [0, 26], "practic": [0, 20], "ultrafin": [0, 18], "studi": 0, "import": [0, 1, 2, 15, 16, 24, 29], "add": [0, 1, 10, 15, 16, 20, 25], "tight": 0, "integr": [0, 18], "acc2": 0, "12": [0, 10, 18], "qchem": [0, 3, 9, 15, 24, 26], "geom_opt_tol_gradi": 0, "geom_opt_tol_displac": 0, "60": [0, 2], "geom_opt_tol_energi": 0, "xc_grid": 0, "3": [0, 1, 2, 3, 7, 9, 15, 16, 18, 19, 20, 24, 25, 26], "terachem": [0, 9, 26], "dftgrid": 0, "4": [0, 1, 2, 3, 16, 18, 19, 20, 24], "dynamicgrid": 0, "ye": 0, "perform": [0, 3, 15, 17, 24, 26, 29, 32], "1d": [0, 9, 10, 16, 25], "dimension": 0, "uniqu": [0, 1, 2, 6, 8, 12, 15, 16, 18], "resolut": [0, 1, 2, 10, 15, 16, 18, 32], "8": [0, 10, 16, 18, 26], "degre": [0, 1, 2, 3, 9, 10, 15, 16, 18, 19, 20], "360": [0, 3, 18, 19, 30], "overal": [0, 1, 8, 14, 16], "chang": [0, 1, 2, 3, 7, 15, 16, 17, 18, 20, 26, 30, 32], "rotor_scan_resolut": [0, 16], "paramet": [0, 1, 2, 3, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 26, 31], "invalid": [0, 9, 10, 17, 18, 20], "thermo": [0, 10, 11, 12, 16, 29], "least": [0, 1], "barrier": [0, 16, 18], "abov": [0, 2, 3, 8, 10, 15, 16, 24, 26, 27, 29, 31], "threshold": [0, 1, 2, 8, 10, 15, 16], "40": 0, "kj": [0, 2, 3, 8, 9, 10, 11, 15, 16, 18], "mol": [0, 1, 2, 3, 8, 9, 10, 11, 12, 13, 14, 15, 16, 18, 19, 20, 30], "inconsist": 0, "consecut": [0, 2], "anf": 0, "final": [0, 2, 8, 15, 16, 18], "seven": 0, "a1": [0, 3, 19], "brute": [0, 10, 16], "forc": [0, 2, 6, 8, 10, 15, 16, 32], "diagon": [0, 15], "a2": [0, 19], "constraint": [0, 3, 16, 20], "deriv": [0, 3, 20], "from": [0, 1, 2, 3, 6, 7, 8, 9, 10, 11, 12, 13, 15, 16, 17, 18, 19, 20, 22, 24, 25, 26, 27, 29, 30, 31, 32], "previou": [0, 15, 16, 18], "continu": [0, 15, 16], "let": 0, "guid": 0, "b": [0, 16, 19, 20, 26], "dihedr": [0, 2, 3, 9, 10, 12, 15, 16, 18, 19, 20, 32], "combin": [0, 2, 12, 20, 26, 32], "result": [0, 1, 3, 9, 10, 11, 12, 14, 15, 16, 18, 20, 26, 32], "across": [0, 1], "dimens": [0, 16], "seventh": 0, "similar": [0, 26, 29], "princip": [0, 3, 16, 25, 26], "directli": [0, 2, 16, 20, 26], "primari": [0, 16], "brute_force_sp": [0, 15, 16], "brute_force_opt": [0, 15, 16], "cont_opt": [0, 15, 16], "submit": [0, 7, 8, 15, 16, 17, 26, 29, 30, 31], "relev": [0, 6, 10, 15, 16, 25, 26], "wait": [0, 1, 16, 29, 31], "termin": [0, 1, 7, 8, 15, 16, 17, 26, 29, 31], "its": [0, 1, 2, 3, 8, 10, 12, 13, 15, 16, 18, 19, 20, 25, 26, 31], "guess": [0, 1, 2, 8, 10, 12, 15, 16, 24, 30, 31], "next": [0, 15, 16], "three": [0, 8, 11, 16, 19, 20, 26], "_diagon": [0, 16], "secondari": [0, 16], "therefor": [0, 16, 20, 29], "brute_force_sp_diagon": [0, 15, 16], "brute_force_opt_diagon": [0, 15, 16], "cont_opt_diagon": [0, 15, 16], "increment": [0, 3, 15, 16, 18, 20], "togeth": [0, 3, 16], "pivot": [0, 1, 2, 10, 11, 12, 15, 16, 18, 19, 29, 32], "mix": [0, 16], "9": [0, 1, 2, 14, 16, 20], "them": [0, 1, 2, 3, 10, 15, 16, 26, 31], "indic": [0, 1, 2, 3, 8, 9, 10, 12, 15, 16, 17, 18, 19, 20], "index": [0, 1, 2, 3, 9, 10, 12, 15, 16, 18, 19, 20, 25, 29], "trigger": [0, 16, 26], "rotat": [0, 2, 3, 16, 19, 20], "torsion": [0, 1, 2, 3, 9, 10, 15, 16, 18, 19, 20, 25, 29], "within": [0, 1, 3, 7, 14, 16, 17, 20, 26], "second": [0, 1, 10, 16, 20], "identifi": [0, 1, 2, 3, 9, 16, 18, 26], "care": [0, 2, 16], "constrain": [0, 3, 16, 20], "directed_rotor": [0, 16], "spc1": [0, 8, 24], "label": [0, 1, 2, 3, 8, 10, 11, 12, 13, 14, 15, 16, 18, 19, 24, 29, 30, 31], "some_label": 0, "smile": [0, 12, 16, 24, 25, 30, 31, 32], "species_smil": 0, "conjug": 0, "here": [0, 1, 2, 3, 9, 10, 15, 16, 24, 26], "c4o2": 0, "o": [0, 3, 7, 15, 16, 24], "cccc": 0, "still": [0, 7, 17, 25, 26, 31], "incorpor": [0, 2], "partit": 0, "function": [0, 1, 2, 3, 6, 7, 8, 9, 10, 11, 12, 13, 15, 16, 17, 18, 20, 26, 30, 32], "affect": [0, 8], "part": [0, 2, 3, 20], "warn": [0, 2, 6, 7, 15, 16, 18, 29, 32], "arrai": [0, 1, 2, 3, 7, 10, 19], "been": [0, 2, 18, 20], "mani": [0, 2, 16, 25, 26], "individu": [0, 10, 20], "being": [0, 9, 15, 20, 26], "your": [0, 17, 25], "queue": [0, 7, 15, 16, 17, 18, 29], "system": [0, 3, 16, 26], "molpro": [0, 3, 9, 15, 16, 18, 24, 26, 30], "lennard": [0, 15, 16, 30], "jone": [0, 15, 16, 30], "transport": [0, 8, 10, 11, 16], "gromac": 0, "dynam": [0, 15, 26], "simul": 0, "find": [0, 1, 3, 8, 16, 17, 18, 20, 22, 25, 26, 32], "ess_set": [0, 1, 8, 14, 15, 24, 26, 30], "server1": [0, 24, 26], "server2": [0, 24, 26], "ha": [0, 1, 2, 3, 8, 9, 10, 12, 15, 16, 18, 19, 20, 25, 26, 29, 30, 31], "fairli": 0, "good": [0, 2, 18], "auto": [0, 12, 16, 26], "howev": [0, 18, 26, 31], "time": [0, 1, 2, 7, 8, 9, 12, 14, 15, 16, 17, 18, 26, 29, 30], "might": [0, 3, 18, 20, 26, 31, 32], "know": [0, 2, 7, 12, 17], "simpli": [0, 18, 24, 30, 31], "initial_trsh": 0, "trsh": [0, 4, 9, 10, 15, 16, 25], "stand": [0, 26, 32], "18": [0, 7, 26], "shift": [0, 15, 18], "0": [0, 1, 2, 3, 7, 8, 9, 10, 11, 12, 15, 16, 18, 19, 20, 21, 24, 26, 31], "geom_opt_max_cycl": 0, "250": 0, "copi": [0, 1, 2, 3, 6, 8, 12, 16, 17, 26, 27, 30], "when": [0, 1, 2, 3, 6, 7, 8, 12, 14, 15, 16, 17, 20, 26, 30], "same": [0, 1, 2, 3, 10, 12, 15, 16, 18, 19, 20, 24, 26, 30, 31], "attempt": [0, 8, 15, 16, 18, 20], "download": [0, 15, 17, 26, 29, 30], "checkfil": [0, 1, 8, 16, 18], "remot": [0, 8, 17, 18, 26, 29], "remain": [0, 11], "behaviour": 0, "keep": [0, 1, 2, 3, 8, 16, 20, 26], "keep_check": [0, 1, 8], "look": [0, 3, 6, 24, 26, 29, 31], "appropri": [0, 12, 15, 16, 26], "avail": [0, 2, 8, 14, 15, 17, 18, 22, 25, 26, 31, 32], "arkan": [0, 1, 6, 8, 9, 10, 11, 15, 16, 26, 29, 30], "isn": [0, 1, 2, 3, 9, 15, 24, 26], "truhlar": [0, 8, 14, 32], "involv": 0, "dataset": 0, "small": [0, 2], "known": [0, 1, 3, 6, 8], "freq_scale_factor": [0, 8, 11, 15, 24], "calc_freq_factor": [0, 8], "graph": [0, 1, 2, 8, 15, 16, 19, 20, 25], "i": [0, 2, 3, 12, 14, 15, 16, 20, 26, 32], "adjlist": [0, 16], "inchi": [0, 3, 16, 24, 25], "perceiv": [0, 2, 3, 10, 16], "3d": [0, 1, 2, 3, 8, 10, 15, 16, 19, 20, 31, 32], "further": [0, 26], "sometim": [0, 26], "percept": [0, 16, 32], "algorithm": [0, 1, 3, 16, 20], "doesn": [0, 2, 16], "work": [0, 3, 6, 8, 13, 15, 16, 22, 26], "expect": [0, 12, 25, 26, 29], "issu": [0, 3, 15, 18, 22, 25, 26, 31], "charg": [0, 1, 2, 3, 10, 12, 16, 27], "triplet": 0, "allow_nonisomorphic_2d": [0, 8, 15, 16], "restart": [0, 1, 6, 8, 12, 15, 16, 26, 29, 30, 31], "folder": [0, 1, 2, 7, 10, 11, 14, 15, 16, 18, 24, 25, 29, 30, 31, 32], "locat": [0, 2, 7, 10, 15, 17, 26, 29], "becom": [0, 29], "name": [0, 1, 6, 7, 8, 9, 10, 11, 14, 15, 17, 18, 26, 29, 30, 31, 32], "creat": [0, 3, 6, 8, 10, 12, 15, 16, 20, 25, 29, 31, 32], "behavior": 0, "desir": [0, 1, 2, 3, 13, 16, 19, 26], "project_directori": [0, 1, 3, 8, 10, 11, 15, 16], "exist": [0, 2, 3, 7, 8, 12, 15, 16, 17, 20], "parent": [0, 1, 3, 11], "necessari": [0, 26, 30, 32], "wai": [0, 3, 30, 31], "One": 0, "open": [0, 3, 22, 25, 26], "gaussview": [0, 24, 29], "high": [0, 10, 11, 12, 17, 25], "qualiti": [0, 15, 16, 18], "print_orbit": 0, "nbo": 0, "fcheck": 0, "default_levels_of_theori": 0, "iqmol": [0, 15], "post": [0, 15], "process": [0, 1, 2, 3, 8, 9, 10, 11, 12, 15, 16, 19, 20, 25, 26], "save": [0, 1, 2, 3, 8, 10, 14, 15, 16, 17, 20, 30], "imag": [0, 2, 10, 29, 32], "modul": [0, 1, 2, 3, 6, 7, 8, 9, 10, 11, 12, 13, 15, 16, 17, 18, 19, 20, 25], "enantiomer": 0, "mirror": [0, 2], "chiral": [0, 1, 2, 16], "tetrahedr": [0, 16], "carbon": [0, 2, 16], "invers": [0, 2, 16], "mode": [0, 2, 7, 8, 9, 11, 15, 16, 17, 29, 31], "nitrogen": [0, 2, 16, 19], "ci": [0, 16], "tran": [0, 16], "doubl": [0, 2, 16], "consider_all_diastereom": [0, 16], "flag": [0, 1, 10, 12, 16, 24, 30], "code": [0, 22, 25, 26], "caus": [0, 3, 15, 18, 20, 26, 31, 32], "r": [0, 2, 3, 7, 16, 20], "z": [0, 2, 3, 16, 20], "hypothet": 0, "spc1_xyz": 0, "cl": [0, 2], "47566594": 0, "36900082": 0, "86260264": 0, "34833561": 0, "76407680": 0, "29252133": 0, "46682130": 0, "58010226": 0, "70920153": 0, "81289268": 0, "14477878": 0, "61006147": 0, "90276866": 0, "07697610": 0, "80213588": 0, "09903967": 0, "08314581": 0, "61641835": 0, "64512811": 0, "43845470": 0, "53602810": 0, "65975628": 0, "45946534": 0, "67414755": 0, "h": [0, 2, 3, 8, 14, 16, 18, 20, 21, 23, 24, 25, 31], "89577875": 0, "19512286": 0, "56141944": 0, "97218270": 0, "93173379": 0, "74977707": 0, "30829197": 0, "62970434": 0, "46110152": 0, "36555034": 0, "38002993": 0, "74764205": 0, "51837776": 0, "46405162": 0, "01733990": 0, "93198350": 0, "01693209": 0, "75630452": 0, "57828825": 0, "63692499": 0, "43000638": 0, "60256180": 0, "33896163": 0, "32130952": 0, "25218225": 0, "98524107": 0, "80024046": 0, "91263085": 0, "50255031": 0, "85455686": 0, "18255121": 0, "26238957": 0, "24010821": 0, "lowest": [0, 2, 8, 10, 15, 16], "goal": 0, "cours": [0, 26, 31], "just": [0, 1, 2, 7, 8, 12, 20, 24, 26], "arbitrari": [0, 29, 30], "preserv": [0, 1, 2, 12, 16, 18, 26, 30], "global": [0, 13, 26], "select": [0, 7, 15, 16, 32], "dont_gen_conf": [0, 8, 15], "arc_demo_selective_conf": 0, "propanol": [0, 24], "propan": [0, 24], "ccc": [0, 24], "0000000": 0, "5863560": 0, "2624760": 0, "2596090": 0, "8743630": 0, "2380970": 0, "1562580": 0, "3624930": 0, "8805340": 0, "2981830": 0, "9010030": 0, "ccco": 0, "4392250": 0, "2137610": 0, "7359250": 0, "0958270": 0, "7679350": 0, "4668240": 0, "1155780": 0, "4886150": 0, "2983600": 0, "9711060": 0, "8557990": 0, "8788010": 0, "5245130": 0, "1136730": 0, "8740840": 0, "4095940": 0, "1667640": 0, "8815110": 0, "5267840": 0, "0696580": 0, "compar": [0, 1, 3, 10, 11, 16], "against": [0, 3, 11], "most": [0, 2, 3, 15, 20, 26], "stabl": [0, 2, 15, 26, 30], "rest": 0, "regardless": [0, 1, 2], "sourc": [0, 1, 2, 3, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 25, 26, 29], "other": [0, 1, 2, 3, 9, 15, 16, 18, 20, 22, 25, 26, 27, 29, 31], "hand": 0, "yaml": [0, 1, 8, 9, 10, 11, 12, 15, 16, 29, 30, 31, 32], "veri": [0, 16, 26, 31], "intuit": 0, "especi": 0, "without": [0, 8, 10, 12, 15, 16, 18, 20, 27, 32], "editor": 0, "dump": [0, 8, 12, 16], "read": [0, 1, 2, 3, 9, 16, 31], "common": [0, 3, 4, 18, 20, 24, 25], "save_yaml_fil": [0, 1], "input_dict": 0, "dict": [0, 1, 2, 3, 6, 8, 9, 10, 11, 12, 14, 15, 16, 18, 19, 20, 30], "demo_project_input_file_from_api": 0, "lennard_jon": 0, "NO": [0, 27], "adj1": 0, "multipl": [0, 1, 2, 3, 10, 12, 15, 16, 19, 24, 26, 30], "u0": 0, "p0": 0, "c0": 0, "u1": 0, "p2": [0, 12], "xyz2": [0, 1, 3], "35170118": [0, 24], "00275231": [0, 24], "48283333": [0, 24], "67437022": [0, 24], "01989281": [0, 24], "16029161": [0, 24], "62797113": [0, 24], "03193934": [0, 24], "15151370": [0, 24], "14812497": [0, 24], "95492850": [0, 24], "42742905": [0, 24], "27300665": [0, 24], "88397696": [0, 24], "14797321": [0, 24], "11582953": [0, 24], "94384729": [0, 24], "10134685": [0, 24], "49847909": [0, 24], "87864716": [0, 24], "21971764": [0, 24], "69134542": [0, 24], "01812252": [0, 24], "05076812": [0, 24], "64534929": [0, 24], "00412787": [0, 24], "04279617": [0, 24], "19713983": [0, 24], "90988817": [0, 24], "40350584": [0, 24], "28488154": [0, 24], "84437992": [0, 24], "22108130": [0, 24], "02953840": [0, 24], "95815005": [0, 24], "41011413": [0, 24], "spc2": [0, 8, 24], "vinoxi": [0, 24], "spc_list": 0, "spc": 0, "as_dict": [0, 6, 8, 12, 16], "yml": [0, 9, 15, 26, 29, 31], "content": [0, 1, 3, 7, 10, 16, 17, 18, 26], "e0": [0, 12, 15, 16], "null": 0, "arkane_fil": [0, 16], "bond_correct": [0, 16], "external_symmetri": [0, 16], "force_field": [0, 2, 16], "mmff94": [0, 2, 16], "generate_thermo": 0, "is_t": [0, 1, 3, 10, 16, 24], "long_thermo_descript": [0, 16], "p1": [0, 12], "neg_freqs_trsh": [0, 16, 18], "number_of_rotor": [0, 16], "optical_isom": [0, 16], "rotors_dict": [0, 15, 16], "t1": [0, 9, 16], "conformer_energi": [0, 10, 15, 16], "repres": [0, 1, 2, 3, 6, 8, 10, 11, 12, 14, 15, 16, 18, 20, 29], "label1": 0, "xyz1": [0, 1, 3], "accept": [0, 3, 15, 20, 25], "all_h": [0, 16], "ethanol": [0, 31], "includ": [0, 1, 2, 6, 8, 9, 12, 13, 15, 16, 18, 20, 24, 27, 29, 32], "ethanol_bd": 0, "cco": [0, 31], "20823797": 0, "43654321": 0, "79046266": 0, "38565457": 0, "37473766": 0, "03466399": 0, "94122817": 0, "32248828": 0, "24592109": 0, "89282946": 0, "53292877": 0, "99112072": 0, "23767951": 0, "34108205": 0, "45660206": 0, "79278514": 0, "30029213": 0, "71598886": 0, "43922693": 0, "50288055": 0, "71249177": 0, "60098471": 0, "27712988": 0, "87920708": 0, "04982343": 0, "03632579": 0, "90734524": 0, "ethanol_bdes_specific_geometri": 0, "successfulli": [0, 8, 15, 16], "fragment": [0, 3, 12, 16, 20], "report": [0, 3, 8, 10, 11, 15, 18, 30, 32], "log": [0, 1, 2, 7, 8, 9, 10, 11, 15, 16, 18, 29, 30], "design": [0, 17], "bde_report": [0, 10], "By": [0, 2, 3, 26], "thermochemistri": 0, "kinet": [0, 8, 10, 11, 12, 13, 15, 16, 25, 29, 30], "estim": [0, 1, 10, 11], "assist": [0, 1, 6, 26, 32], "human": [0, 6], "realiti": [0, 12], "pariti": [0, 8, 10, 29], "plot": [0, 2, 8, 10, 15, 16, 25, 29, 30], "though": [0, 26, 30], "except": [0, 12, 15], "encount": [0, 7], "sens": [0, 15], "deal": [0, 27], "cannot": [0, 1, 2, 3, 16, 17, 18, 19], "becaus": [0, 13], "presenc": 0, "circumst": 0, "load": [0, 11, 12, 13, 15, 16, 30], "compare_to_rmg": [0, 8, 11], "With": 0, "solvat": [0, 6], "none": [0, 1, 2, 3, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 20, 30], "place": 0, "solut": [0, 18], "caviti": 0, "reaction": [0, 4, 8, 10, 11, 13, 15, 16, 25, 29, 30, 31], "field": [0, 2, 6, 8, 15, 16, 32], "pcm": 0, "cpcm": 0, "dipol": [0, 9], "ipcm": 0, "scipcm": 0, "water": 0, "diethyleth": 0, "http": [0, 2, 6, 19, 20, 21, 26], "com": [0, 6, 7, 19, 21, 26], "scrf": [0, 6], "danger": 0, "zone": [0, 12, 16], "understand": [0, 32], "what": [0, 2, 7, 9, 17, 25, 26, 28, 32], "re": [0, 2, 3, 7, 15, 16, 17, 18, 24, 26, 30, 31], "script": [0, 7, 17, 25, 26, 30], "data": [0, 1, 2, 3, 8, 10, 11, 15, 16, 29, 32], "lost": 0, "activ": [0, 15, 16, 26, 30, 31], "arc_env": [0, 26], "python": [0, 1, 7, 25, 26, 31], "util": [0, 4, 25, 30, 31], "project1": 0, "altern": [0, 12, 15, 16], "long": [0, 15], "alwai": [0, 3], "shown": [0, 2, 3, 16], "full": [0, 1, 2, 3, 7, 8], "statu": [0, 7, 8, 15, 17, 18, 29, 30], "suppli": [0, 3, 10, 31], "id": [0, 1, 7, 12, 15, 16, 17, 18], "NOT": [0, 8, 27, 29], "j": [0, 3, 8, 13, 14, 15, 20, 26], "a_54836": 0, "statist": [0, 11], "mechan": [0, 2, 11], "packag": [0, 17], "comput": [0, 1, 8, 10, 11, 14, 15, 16, 20, 26], "chemic": [0, 2, 12, 16, 25, 30], "quantum": [0, 6], "statmech": [0, 3, 8, 11, 15, 16, 30], "program": [0, 8, 14], "k": [0, 8, 10, 11, 13, 29], "left": 0, "frac": 0, "t_0": 0, "right": [0, 27], "exp": 0, "e_a": 0, "rt": 0, "three_param": [0, 8, 11], "use_classical_arrhenius_eqn_for_rate_calc_demo": 0, "recomput": 0, "share": [1, 2], "As": 1, "specif": [1, 2, 3, 7, 8, 9, 10, 13, 15, 17, 18, 20, 25, 26, 29], "ones": [1, 2, 32], "us": [1, 2, 3, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 24, 25, 26, 27, 28, 29, 30, 32], "logger": [1, 2, 14], "circular": [1, 20], "semant": [1, 30], "almost_equal_coord": 1, "rtol": [1, 3], "float": [1, 2, 3, 6, 8, 9, 10, 11, 12, 13, 14, 15, 16, 18, 19, 20], "1e": 1, "05": 1, "atol": [1, 3], "08": [1, 7], "bool": [1, 2, 3, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 20], "helper": [1, 2, 3, 7, 8, 10, 11, 12, 13, 15, 16, 17, 20], "check": [1, 2, 3, 7, 8, 10, 11, 12, 15, 16, 17, 18, 20, 25, 26, 29, 30], "xyz": [1, 2, 3, 8, 9, 10, 12, 14, 15, 16, 19, 20, 24, 25, 29, 30], "almost": [1, 3, 20], "equal": [1, 2, 3, 20, 24], "symbol": [1, 2, 3, 7, 16, 17, 20], "cartesian": [1, 3, 9, 12, 16, 18, 20], "coordin": [1, 2, 3, 9, 10, 12, 15, 16, 18, 19, 20, 24, 25, 29, 32], "rel": [1, 2, 3, 15, 16, 18, 20], "toler": [1, 2, 3, 18, 20], "absolut": [1, 3, 16, 20], "return": [1, 2, 3, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 32], "thei": [1, 2, 3, 8, 12, 15, 16, 20, 26, 29, 30, 31], "almost_equal_coords_list": 1, "union": [1, 2, 3, 6, 7, 8, 9, 10, 12, 13, 14, 15, 16, 17, 18, 19, 20], "test": [1, 15, 16, 18, 20, 25, 30], "input": [1, 3, 8, 9, 13, 15, 16, 17, 18, 19, 24, 25, 26, 29, 30], "an": [1, 2, 3, 6, 7, 8, 9, 10, 11, 12, 13, 15, 16, 17, 18, 19, 20, 22, 24, 25, 26, 27, 28, 29, 30], "almost_equal_list": 1, "iter1": 1, "ndarrai": [1, 3, 9, 15, 16], "iter2": 1, "iter": [1, 2, 3, 6, 12, 16], "np": [1, 3, 9, 10], "calc_rmsd": 1, "x": [1, 3, 16, 20, 21], "y": [1, 3, 14], "root": [1, 3], "mean": [1, 2, 3, 12], "squar": [1, 3], "deviat": [1, 3], "matric": [1, 3, 20], "matrix": [1, 3, 16, 20], "rmsd": [1, 3], "score": [1, 3], "type": [1, 2, 3, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 24, 25, 26, 29, 30, 31], "check_ess_set": 1, "troubleshoot": [1, 8, 15, 16, 18, 25, 26, 30], "job": [1, 4, 6, 8, 9, 10, 11, 12, 15, 16, 24, 25, 26, 29, 30, 31], "ess": [1, 3, 6, 8, 9, 14, 15, 16, 18, 25, 26, 30], "set": [1, 2, 3, 6, 8, 12, 15, 16, 17, 19, 24, 25, 26, 30, 32], "updat": [1, 2, 3, 8, 15, 16, 18, 20, 25, 29, 30, 31], "check_that_all_entries_are_in_list": 1, "list_1": 1, "list_2": 1, "length": [1, 2, 3, 10, 12, 16, 18, 19, 20], "order": [1, 2, 3, 12, 13, 16, 19, 20, 26], "int": [1, 2, 3, 6, 7, 8, 9, 10, 11, 12, 15, 16, 17, 18, 19, 20], "anyth": 1, "check_torsion_chang": 1, "datafram": [1, 9], "index_1": 1, "str": [1, 2, 3, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20], "index_2": 1, "20": [1, 2, 7, 8, 26], "delta": 1, "larger": 1, "consist": [1, 2, 3, 7, 16, 18, 26, 30], "significantli": [1, 10], "pd": [1, 9], "conform": [1, 3, 4, 8, 9, 10, 15, 16, 18, 24, 25, 29, 30], "signific": 1, "pair": [1, 2, 3, 10, 19, 26], "tor": 1, "scan": [1, 2, 3, 7, 8, 9, 10, 15, 16, 18, 25, 26, 29, 30], "convert_list_index_0_to_1": 1, "_list": 1, "vice": 1, "versa": 1, "ensur": 1, "valueerror": [1, 8, 12, 16], "new": [1, 2, 3, 13, 15, 16, 18, 19, 20, 26, 30], "neg": [1, 15, 16, 18, 20], "convert_to_hour": 1, "time_str": 1, "walltim": [1, 18], "hh": 1, "mm": 1, "ss": 1, "hour": [1, 8, 15, 18, 26], "delete_check_fil": 1, "delet": [1, 7, 8, 10, 11, 15, 17, 25], "usual": [1, 3, 15, 26], "lot": 1, "space": [1, 2, 3, 10, 16, 18, 19, 20], "need": [1, 8, 13, 15, 16, 18, 20, 26], "file": [1, 2, 3, 6, 7, 8, 9, 10, 11, 12, 14, 15, 16, 17, 18, 24, 25, 26, 27, 29, 30, 32], "project": [1, 3, 8, 10, 11, 15, 16, 24, 25, 26, 29, 30, 31, 32], "determine_ess": 1, "log_fil": [1, 18], "belong": [1, 9, 16], "determine_symmetri": [1, 16], "extern": [1, 16, 25, 26], "symmetri": [1, 2, 3, 8, 16, 18, 25, 30], "optic": [1, 16, 25], "isom": [1, 16, 25], "speci": [1, 4, 8, 9, 10, 11, 12, 14, 15, 18, 24, 25, 29, 30, 31, 32], "center": [1, 2, 3, 16, 32], "present": [1, 15, 16, 20, 29], "determine_top_group_indic": 1, "atom1": [1, 2, 20], "atom2": [1, 2], "top": [1, 2, 3, 10, 16, 18], "group": [1, 2, 3, 16, 19, 20, 23, 27], "connect": [1, 2, 3, 12, 16, 17, 19, 20, 27, 30, 31], "exclud": [1, 2], "atom_list_to_explor": 1, "loop": [1, 13], "through": [1, 2, 8, 12, 13, 16, 26], "t": [1, 2, 3, 7, 8, 9, 12, 15, 16, 17, 18, 20, 24, 25, 26, 29, 30], "explor": 1, "convent": [1, 26], "df": 1, "start": [1, 2, 3, 7, 15, 17, 19, 32], "sort_result": 1, "depth": 1, "search": [1, 2, 6, 8, 9, 12, 15, 16, 17, 25, 32], "travers": 1, "instanc": [1, 3, 6, 8, 12, 13, 14, 15, 16, 17, 26], "sort": [1, 2, 3, 12, 16], "visit": 1, "estimate_orca_mem_cpu_requir": 1, "num_heavy_atom": [1, 18], "consider_server_limit": 1, "memori": [1, 7, 8, 15, 18, 25, 26, 30], "cpu": [1, 15, 18, 26, 30], "give": [1, 3, 10, 12, 17, 29], "realist": 1, "mb": 1, "core": [1, 15, 16, 18, 25, 26], "extremum_list": 1, "lst": 1, "return_min": 1, "extremum": 1, "minimum": [1, 3, 8, 10, 11, 15, 16, 18], "default": [1, 2, 3, 7, 8, 9, 10, 11, 12, 13, 15, 16, 18, 19, 20, 24, 25, 26, 30], "minim": [1, 6, 26], "from_yaml": 1, "yaml_str": 1, "decod": 1, "param": [1, 20], "generate_resonance_structur": 1, "object_": 1, "keep_isomorph": 1, "filter_structur": [1, 3], "save_ord": [1, 12, 13], "safe": 1, "gener": [1, 2, 3, 8, 9, 10, 11, 12, 14, 15, 16, 18, 20, 24, 25, 30, 31, 32], "reson": [1, 2, 3, 16, 30], "structur": [1, 2, 3, 9, 10, 15, 16, 18, 25, 26, 29, 30], "rmg": [1, 2, 3, 8, 10, 11, 12, 13, 15, 16, 20, 25, 26, 28, 29, 30], "isomorph": [1, 3, 8, 15, 16, 18, 25, 30], "filter": [1, 3, 10], "store": [1, 3, 10, 12, 16], "get_angle_in_180_rang": 1, "angl": [1, 2, 3, 9, 10, 15, 16, 18, 19, 20], "round_to": 1, "get": [1, 2, 3, 6, 9, 10, 12, 13, 15, 16, 17, 18, 19, 20, 26], "180": [1, 2, 20], "decim": 1, "figur": [1, 10, 18], "round": [1, 3], "get_atom_radiu": 1, "coval": [1, 16], "radiu": [1, 3, 16], "angstrom": [1, 3, 9, 16], "typeerror": [1, 2, 3, 10, 16, 19, 20], "wrong": [1, 2, 3, 10, 15, 16, 19, 20], "found": [1, 6, 8, 9, 12, 13, 15, 16, 18, 26, 29], "get_bonds_from_dmat": 1, "dmat": 1, "element": [1, 2, 3, 12, 16, 30], "bond_lone_hydrogen": 1, "distanc": [1, 2, 3, 12, 16, 18, 19, 20, 28, 32], "represent": [1, 2, 3, 6, 8, 10, 12, 14, 15, 16, 17, 19, 20, 25, 30, 32], "nxn": 1, "formal": [1, 16], "factor": [1, 3, 8, 9, 11, 14, 15, 25, 30], "bond": [1, 2, 3, 8, 10, 11, 12, 16, 20, 25], "multipli": 1, "assign": [1, 3, 6, 12, 13, 15, 16, 18, 20, 26], "were": [1, 2, 3, 10, 11, 13, 15, 16, 18, 20, 26, 29], "closest": [1, 32], "consid": [1, 2, 3, 6, 8, 10, 12, 15, 16, 18, 20, 25, 29, 30, 31], "get_close_tupl": 1, "key_1": 1, "raise_error": [1, 6, 9, 12], "close": [1, 16, 17], "even": [1, 8, 15, 26, 30], "item": 1, "match": [1, 3, 6, 9, 12, 13, 30], "wasn": [1, 15], "get_extremum_index": 1, "skip_valu": 1, "skip": [1, 8, 11, 15, 20, 30], "extermum": 1, "get_git_branch": 1, "git": [1, 26, 30], "branch": [1, 26], "get_git_commit": 1, "recent": [1, 16, 26], "commit": [1, 26], "empti": [1, 3, 16], "hash": 1, "date": [1, 24, 26, 29], "head": [1, 9, 26, 30], "get_logg": 1, "get_number_with_ordinal_ind": 1, "ordin": 1, "get_ordered_intersection_of_two_list": 1, "l1": 1, "l2": 1, "order_by_first_list": 1, "return_uniqu": 1, "intersect": 1, "appear": 1, "get_ordinal_ind": 1, "get_single_bond_length": 1, "symbol_1": [1, 2], "symbol_2": [1, 2], "charge_1": 1, "charge_2": 1, "approxim": 1, "partial": [1, 3, 15, 26, 30], "globalize_path": 1, "rebas": 1, "machin": [1, 7, 26], "directori": [1, 3, 7, 8, 10, 11, 15, 16, 17, 25, 26, 29], "upon": 1, "file_path": [1, 7, 9], "initialize_job_typ": 1, "miss": [1, 3, 26], "boolean": [1, 8, 15, 16, 18], "execut": [1, 7, 8, 14, 15, 16, 17, 24, 25, 26, 29, 31, 32], "legal": [1, 8, 16, 31], "initialize_log": [1, 2], "verbos": [1, 2, 3, 8, 16], "specifi": [1, 2, 3, 6, 7, 10, 16, 17, 18, 20, 24, 25, 26, 30, 31, 32], "text": [1, 2, 10, 21], "seen": [1, 2], "is_angle_linear": 1, "is_notebook": 1, "ipython": [1, 24, 26, 30, 31, 32], "notebook": [1, 24, 26, 30, 31, 32], "is_same_pivot": 1, "torsion1": 1, "torsion2": 1, "four": [1, 2, 3, 15, 16, 18, 20], "is_same_sequence_sublist": 1, "child_list": 1, "parent_list": 1, "sublist": 1, "ident": [1, 3, 12, 20], "child": 1, "sequenc": 1, "rubric": 1, "pattern": [1, 9], "is_str_float": 1, "is_str_int": 1, "is_xyz_mol_match": 1, "rmgpy": [1, 3], "_scissor": 1, "cut": [1, 16], "product": [1, 12, 15], "molecular": [1, 2, 3, 8, 10, 15, 16, 25, 30], "formula": 1, "key_by_v": 1, "certain": [1, 19], "unic": 1, "log_foot": 1, "execution_tim": [1, 8, 16], "level": [1, 3, 4, 8, 10, 11, 14, 15, 16, 17, 18, 24, 25, 29, 30, 32], "footer": 1, "log_head": 1, "header": 1, "inform": [1, 2, 3, 9, 12, 15, 16, 20, 29], "about": [1, 2, 26, 30], "read_yaml_fil": 1, "variabl": [1, 2, 3, 10, 20, 26], "rmg_mol_from_dict_repr": 1, "rmg_mol_to_dict_repr": 1, "reset_atom_id": [1, 12, 16], "reset": [1, 12, 16, 26], "duplic": [1, 12, 15, 16, 18, 22], "dure": [1, 9, 15, 28, 30], "determinist": [1, 2], "safe_copy_fil": 1, "destin": 1, "10": [1, 2, 7, 8, 10, 14, 15, 16, 20, 21], "max_cycl": 1, "cycl": 1, "sort_atoms_in_descending_label_ord": 1, "reassign": [1, 20], "32": 1, "7": [1, 2, 16, 25, 26], "sort_two_lists_by_the_first": 1, "list1": 1, "list2": 1, "increas": [1, 15, 18, 20, 26], "ignor": [1, 20], "written": [1, 7, 14, 25], "pyton": 1, "zip": 1, "style": [1, 3, 10, 25], "accommod": 1, "error": [1, 6, 7, 8, 9, 12, 15, 16, 17, 18, 20, 29, 30], "string_represent": 1, "dumper": 1, "custom": 1, "liter": 1, "sum_list_entri": 1, "sum": 1, "time_laps": 1, "t0": [1, 8, 16], "elaps": 1, "pyi": 1, "count": [1, 2, 16], "timedelta_from_str": 1, "datetim": [1, 7, 16], "timedelta": [1, 16], "to_yaml": 1, "py_cont": 1, "torsions_to_scan": 1, "descriptor": [1, 16, 20], "we": [1, 2, 3, 15, 16, 18, 22, 24, 25, 26], "non": [2, 3, 8, 15, 16, 18, 20, 24, 25, 26, 32], "boat": 2, "chair": 2, "en": 2, "wikipedia": 2, "org": [2, 20], "wiki": 2, "cyclohexane_conform": 2, "energi": [2, 3, 6, 8, 9, 10, 11, 14, 15, 16, 18, 25, 30], "account": [2, 16], "secretari": 2, "problem": [2, 16], "stochast": 2, "confirm": [2, 16], "bottleneck": 2, "ff": [2, 10, 16], "torsion_dihedr": 2, "workflow": 2, "generate_conform": [2, 16], "generate_force_field_conform": 2, "get_force_field_energi": 2, "rdkit_force_field": 2, "openbabel_force_field_on_rdkit_conform": 2, "determine_dihedr": 2, "deduce_new_conform": 2, "get_torsion_angl": 2, "determine_torsion_symmetri": 2, "determine_torsion_sampling_point": 2, "change_dihedrals_and_force_field_it": 2, "get_lowest_conf": 2, "new_dihedr": 2, "optim": [2, 3, 8, 9, 10, 12, 14, 15, 16, 18, 20, 25, 30], "accord": [2, 3, 10, 12, 15, 16, 26], "90": [2, 8, 10, 30], "120": [2, 3, 16, 20, 26, 30], "300": 2, "270": 2, "calcul": [2, 6, 8, 9, 10, 11, 12, 14, 15, 16, 19, 21, 29, 30, 32], "origin": [2, 3, 7, 9, 15, 16, 18, 20, 26], "accordingli": [2, 26], "newli": [2, 3, 15, 26], "kept": 2, "cheat_sheet": 2, "mol_list": [2, 3, 16], "cheat": 2, "sheet": 2, "correct": [2, 3, 6, 8, 11, 16, 25, 30], "li": 2, "check_special_non_rotor_cas": 2, "top1": 2, "top2": 2, "special": [2, 18], "ch": 2, "cyano": 2, "azid": 2, "side": [2, 12, 26], "inc": 2, "inde": [2, 15, 18], "chirality_dict_to_tupl": 2, "chirality_dict": 2, "enantiomers_dict": 2, "conformererror": 2, "conformers_combinations_by_lowest_conform": 2, "base_xyz": 2, "multiple_tor": 2, "multiple_sampling_point": 2, "len_conform": 2, "max_combination_iter": 2, "25": [2, 3], "torsion_angl": [2, 10], "multiple_sampling_points_dict": 2, "wells_dict": [2, 10], "de_threshold": [2, 10], "plot_path": [2, 10, 16], "modifi": [2, 3, 7, 8, 11, 15, 16, 25, 26, 27], "until": 2, "symmetr": [2, 16], "sampl": [2, 3, 10, 24, 31], "max": [2, 9, 16, 18, 30], "num": 2, "sigma": [2, 3], "smeared_scan_r": 2, "combination_threshold": 2, "1000": [2, 29], "diastereom": [2, 16, 25], "don": [2, 8, 15, 16, 25, 26, 30], "collid": [2, 16], "smear": 2, "determine_chir": 2, "cahn": 2, "ingold": 2, "prelog": 2, "cip": 2, "rdkit": [2, 3, 16], "rdmol": [2, 3], "overrid": [2, 26], "nr": 2, "ns": 2, "determine_number_of_conformers_to_gener": 2, "heavy_atom": [2, 15], "torsion_num": 2, "minimalist": 2, "potenti": [2, 16], "fit": [2, 16, 25, 27], "determine_rotor": [2, 16], "rotor": [2, 8, 10, 11, 12, 15, 16, 18, 24, 25, 29, 30], "hinder": [2, 16], "local": [2, 4, 8, 16, 17, 24, 25, 26, 29, 30], "determine_smallest_atom_index_in_scan": 2, "smallest": 2, "whose": [2, 3, 20], "neighbor": [2, 3, 19, 20], "how": [2, 24, 25, 30], "start_idx": [2, 10], "end_idx": [2, 10], "start_angl": [2, 10], "end_angl": [2, 10], "torsion_scan": 2, "attach": [2, 10], "actual": [2, 3, 8, 10, 16, 18, 29, 31, 32], "plan": [2, 22, 26], "determine_well_width_toler": 2, "mean_width": 2, "width": [2, 10], "nearli": 2, "polynomi": [2, 29], "trend": 2, "100": [2, 30], "11": [2, 7], "13": [2, 3], "50": [2, 7, 8, 10, 11], "59": [2, 30], "embed_rdkit": 2, "num_conf": 2, "unoptim": 2, "random": 2, "embed": [2, 16], "find_internal_rotor": [2, 16], "everi": [2, 26], "generate_all_combin": 2, "Will": 2, "generate_conformer_combin": 2, "hypothetical_num_comb": 2, "collis": [2, 16], "num_confs_to_gener": 2, "n_conf": [2, 8, 15, 16], "e_conf": [2, 8, 15, 16], "return_all_conform": 2, "print_log": 2, "taken": [2, 3, 7, 10, 15, 26], "uff": [2, 16], "gaff": [2, 16], "tru": 2, "print": [2, 3, 8, 10, 14, 15, 26], "stdout": [2, 7, 17], "outsid": 2, "someth": [2, 24], "goe": 2, "generate_diatomic_conform": 2, "diatom": [2, 16], "cccbdb": 2, "openbabel": 2, "net": [2, 3, 12, 16], "spin": [2, 3, 12, 15, 16], "generate_monoatomic_conform": 2, "monoatom": [2, 16], "try_uff": 2, "try_ob": 2, "suppress_warn": 2, "fail": [2, 8, 15, 17, 18, 20, 26, 30], "suppress": 2, "conf": [2, 3], "get_lowest_diastereom": 2, "enantiom": 2, "invert": 2, "form": [2, 10, 12, 16, 20, 21, 24, 25], "diastereomer": 2, "get_number_of_chiral_cent": 2, "just_get_the_numb": 2, "site": [2, 12, 16], "get_top_element_count": 2, "isotop": [2, 3, 18, 20], "extract": [2, 10], "get_wel": 2, "blank": [2, 16], "distinct": [2, 3], "identify_chiral_nitrogen_cent": 2, "umbrella": 2, "analyz": 2, "simpl": [2, 6, 14, 15, 25, 26, 31], "inverse_chirality_symbol": 2, "charact": [2, 16], "recogn": [2, 3, 17], "mix_rdkit_and_openbabel_force_field": 2, "ghemic": 2, "enough": [2, 3], "openbabel_force_field": 2, "divers": 2, "descript": [2, 8, 10, 11, 12, 16, 18], "dev": 2, "api": [2, 8, 24, 25, 26, 29, 30], "group__conform": 2, "shtml": 2, "rd_mol": [2, 3], "fallback": 2, "prune_enantiomers_dict": 2, "screen": [2, 16], "out": [2, 7, 9, 15, 16, 18, 19, 27, 29, 30], "leav": 2, "remov": [2, 3, 9, 10, 11, 12, 16, 18, 20, 30], "exact": 2, "prune": [2, 18], "editablemol": 2, "www": 2, "doc": 2, "chem": [2, 14, 29], "rdforcefieldhelp": 2, "html": 2, "uffoptimizemoleculeconf": 2, "read_rdkit_embedded_conformer_i": 2, "rd_index_map": 2, "map": [2, 3, 10, 12, 20, 32], "reorder": [2, 3, 30], "read_rdkit_embedded_conform": 2, "replace_n_with_c_in_mol": 2, "chiral_nitrogen_cent": 2, "replac": [2, 31], "pre": [2, 31], "lone": [2, 3, 19], "electron": [2, 3, 8, 9, 10, 12, 15, 16, 18, 19, 25, 26], "halogen": 2, "radic": [2, 3, 16], "insert": 2, "replace_n_with_c_in_xyz": 2, "elements_to_insert": 2, "f": [2, 16, 26], "to_group": 2, "atom_indic": 2, "translate_group": 2, "anchor": [2, 19], "vector": [2, 3, 4, 25], "translat": [2, 3, 19, 20], "toward": [2, 19], "onward": 2, "constant": [2, 16], "around": [2, 19], "ring": [2, 3], "exchang": 2, "exactli": [2, 15, 32], "dummi": [2, 3, 20], "update_mol": 2, "convers": [3, 15, 20], "add_lone_pairs_by_atom_val": 3, "carben": 3, "nitren": 3, "add_rads_by_atom_val": 3, "assumpt": 3, "problemat": [3, 15, 18, 30], "aromat": [3, 16], "undefin": [3, 20], "check_isomorph": 3, "mol1": 3, "mol2": 3, "convert_to_single_bond": 3, "Then": [3, 15, 31], "isisomorph": 3, "appli": [3, 7, 15, 16, 17, 18], "filtrat": 3, "comparison": [3, 8, 12, 15, 16, 25], "check_xyz_dict": 3, "enter": 3, "xyz_dict": 3, "xyz_from_data": 3, "convertererror": 3, "coord": [3, 19, 20], "check_zmat_dict": 3, "zmat": [3, 4, 16, 25], "trivial": [3, 12], "var": [3, 20], "cluster_confs_by_rmsd": 3, "rmsd_threshold": 3, "01": 3, "cluster": [3, 7, 9, 10, 15, 16, 25], "pool": 3, "suitabl": 3, "scenario": 3, "Not": [3, 6, 15], "saddl": 3, "larg": 3, "rmse": 3, "realli": [3, 16], "compare_conf": 3, "rmsd_score": 3, "ab": 3, "compare_zmat": 3, "z1": 3, "z2": 3, "r_tol": 3, "a_tol": 3, "d_tol": 3, "symmetric_tors": 3, "done": [3, 7, 15, 16, 17, 18, 20, 26], "readili": 3, "better": 3, "robust": [3, 30], "reason": [3, 10, 12, 15, 16, 18, 30], "displace_xyz": 3, "displac": [3, 8, 9, 11, 15, 18], "amplitud": 3, "use_weight": 3, "mass": [3, 12, 32], "weight": 3, "scale": [3, 4, 8, 9, 11, 15, 25, 30], "s4d": 3, "get_center_of_mass": 3, "standardize_xyz_str": 3, "precis": 3, "get_element_mass_from_xyz": 3, "amu": 3, "get_most_common_isotope_for_el": 3, "element_symbol": 3, "get_xyz_radiu": 3, "largest": [3, 16, 18], "get_zmat_param_valu": 3, "similarli": 3, "modify_coord": [3, 20], "get_zmat_str_var_valu": 3, "zmat_str": 3, "hartree_to_si": 3, "kilo": 3, "hartre": 3, "ics_to_scan_constraint": 3, "ic": [3, 9], "softwar": [3, 6, 7, 8, 9, 10, 11, 15, 18, 25, 27], "info": [3, 6, 8, 9, 10, 15, 16, 29, 30], "new_valu": 3, "modification_typ": 3, "prefer": [3, 26], "back": 3, "again": [3, 26], "modif": [3, 16, 26, 30], "fold": 3, "unfold": 3, "1st": [3, 20], "mandatori": [3, 26], "vdw": [3, 16, 20], "reflect": [3, 26], "molecules_from_xyz": 3, "molgraph": 3, "perceive_smil": 3, "order_atom": 3, "ref_mol": 3, "refer": [3, 14, 20], "sanitizationerror": 3, "order_atoms_in_mol_list": 3, "success": [3, 10, 16, 18], "pybel_to_inchi": 3, "pybel_mol": 3, "has_h": 3, "babel": 3, "obmol": 3, "rdkit_conf_from_mol": 3, "relocate_zmat_dummy_atoms_to_the_end": 3, "zmat_map": 3, "reloc": 3, "remove_dummi": 3, "w": [3, 7, 15, 16, 21], "rmg_conformer_to_xyz": 3, "properti": [3, 8, 11, 12, 16, 25, 30], "rmg_mol_from_inchi": 3, "s_bonds_mol_from_xyz": 3, "connect_the_dot": 3, "set_multipl": 3, "radical_map": 3, "ll": [3, 26], "specieserror": [3, 16], "infer": 3, "set_radicals_by_map": 3, "set_rdkit_dihedr": 3, "deg_incr": [3, 16], "deg_ab": [3, 16], "sort_xyz_using_indic": 3, "species_to_sdf_fil": 3, "write": [3, 7, 11, 16, 17, 25, 26], "sdf": 3, "split_str_zmat": 3, "split": [3, 16, 20], "section": [3, 26], "els": [3, 7, 16], "xyz_str": 3, "isotope_format": 3, "abund": 3, "standard": [3, 7, 8, 14, 18, 30], "str_to_xyz": 3, "pars": [3, 7, 9, 15, 16, 18, 30], "iso": 3, "6616514836": 3, "4027481525": 3, "4847382281": 3, "6039793084": 3, "6637270105": 3, "0671637135": 3, "4226865648": 3, "4973210697": 3, "2238712255": 3, "4993010635": 3, "6531020442": 3, "0853092315": 3, "2115796924": 3, "4529256762": 3, "4144516252": 3, "8113671395": 3, "3268900681": 3, "1468957003": 3, "str_to_zmat": 3, "typic": [3, 26], "r1": [3, 12], "d1": 3, "d2": 3, "109": [3, 30], "4712": 3, "0000": 3, "240": [3, 20], "0912": 3, "r_1_0": [3, 20], "r_2_1": 3, "a_2_1_0": 3, "r_3_2": 3, "a_3_2_0": 3, "d_3_2_0_1": [3, 20], "r_4_3": 3, "a_4_3_0": 3, "d_4_3_0_2": [3, 20], "782": 3, "35": [3, 20], "2644": 3, "to_rdkit_mol": 3, "remove_h": 3, "sanit": 3, "adopt": [3, 31], "translate_to_center_of_mass": 3, "translate_xyz": 3, "update_molecul": 3, "to_single_bond": 3, "xyz_file_format_to_xyz": 3, "xyz_fil": 3, "raw": 3, "nuclear": 3, "xyz_to_as": 3, "ASE": [3, 19], "xyz_to_coords_and_element_numb": 3, "xyz_to_coords_list": 3, "mutabl": 3, "xyz_to_dmat": 3, "xyz_to_kinbot_list": 3, "kinbot": [3, 26], "symbol0": 3, "x0": 3, "y0": 3, "z0": 3, "symbol1": 3, "x1": 3, "y1": 3, "xyz_to_np_arrai": 3, "numpi": 3, "xyz_to_pybel_mol": 3, "xyz_to_rmg_conform": 3, "xyz_to_str": 3, "xyz_to_turbomol_format": 3, "unpair": 3, "turbomol": 3, "eht": 3, "xyz_to_x_y_z": 3, "xyz_to_xyz_file_format": 3, "comment": [3, 10, 15, 25], "2nd": [3, 20], "zmat_from_xyz": 3, "consolid": [3, 20], "consolidation_tol": [3, 20], "r_atom": [3, 20], "r_group": [3, 20], "a_atom": [3, 20], "a_group": [3, 20], "d_atom": [3, 20], "d_group": [3, 20], "matter": [3, 20], "_atom": [3, 20], "last": [3, 7, 15, 16, 20], "_group": [3, 20], "zmat_to_str": 3, "zmat_format": 3, "vari": 3, "cfour": 3, "psi4": [3, 26], "effici": 3, "zmat_to_xyz": 3, "keep_dummi": [3, 20], "xyz_isotop": 3, "main": [4, 15, 24, 25, 26, 30, 31], "schedul": [4, 8, 11, 16, 25, 26, 30], "ssh": [4, 25], "parser": [4, 25], "plotter": [4, 25, 32], "processor": [4, 16, 25, 30], "rmgdb": [4, 12, 25, 30], "theori": [6, 8, 10, 11, 14, 15, 16, 18, 24, 25, 29, 30, 32], "repr": 6, "method_typ": 6, "compatible_ess": 6, "solvent": [6, 25], "leveloftheori": [6, 8], "correl": 6, "dft": [6, 15, 16, 24, 25], "wavefunct": 6, "provid": [6, 8, 10, 11, 12, 18, 26, 27, 30], "compat": [6, 30], "reconstruct": 6, "build": 6, "deduce_method_typ": 6, "deduce_softwar": 6, "determine_compatible_ess": 6, "lower": [6, 8, 10, 15, 20], "lowercas": 6, "readabl": [6, 9], "to_arkane_level_of_theori": 6, "variant": 6, "bac_typ": [6, 8, 11], "queri": 6, "aec": [6, 8], "bec": 6, "bac": [6, 8, 11, 16], "m": [6, 8, 11, 14, 20, 21], "get_params_from_arkane_level_of_theory_as_str": 6, "arkane_level": 6, "transit": [7, 16, 25, 30], "subprocess": 7, "change_mod": [7, 17], "file_nam": [7, 17], "recurs": [7, 17], "octal": [7, 17], "command": [7, 17, 26, 31], "check_job_statu": [7, 17], "job_id": [7, 17, 18], "before_submiss": [7, 17], "xx": [7, 17], "og": [7, 26], "540420": 7, "45326": 7, "xq1340b": 7, "user_nam": 7, "26": [7, 20], "2018": [7, 27], "long1": 7, "node18": 7, "slurm": [7, 26, 30], "14428": 7, "debug": 7, "xq1371m2": 7, "04": [7, 26], "46": 7, "node06": 7, "pb": [7, 26], "zeldo": 7, "dow": 7, "req": 7, "elap": 7, "usernam": [7, 17, 26], "jobnam": 7, "sessid": 7, "nd": [7, 9, 15, 16, 18, 19, 25], "tsk": 7, "2016614": 7, "u780444": 7, "workq": 7, "75380": 7, "730": 7, "00": 7, "2016616": 7, "htcondor": [7, 26], "condor_q": 7, "3261": 7, "28161": 7, "a2719": 7, "56": 7, "3263": 7, "a2721": 7, "23": 7, "3268": 7, "a2726": 7, "3269": 7, "a2727": 7, "17": 7, "3270": 7, "a2728": 7, "check_running_jobs_id": [7, 17], "delete_all_local_arc_job": 7, "digit": [7, 17], "unrel": [7, 17], "won": [7, 15, 16, 17], "ghost": [7, 17], "delete_job": [7, 17], "execute_command": 7, "shell": [7, 26], "no_fail": 7, "situat": [7, 26], "send": [7, 17], "bash": 7, "bin": 7, "sh": 7, "stream": 7, "get_last_modified_tim": 7, "file_path_1": 7, "file_path_2": 7, "parse_running_jobs_id": 7, "cluster_soft": [7, 26], "rename_output": 7, "local_file_path": [7, 17], "renam": [7, 14, 29], "submit_job": [7, 17], "submit_cmd": 7, "submit_filenam": [7, 26], "filenam": [7, 10], "job_statu": [7, 18], "write_fil": 7, "file_str": [7, 17], "arcdemo": 8, "spc0": 8, "arkane_level_of_theori": 8, "bath_ga": [8, 15, 16], "compute_r": [8, 11], "compute_thermo": [8, 11, 16], "compute_transport": [8, 11], "kinetics_adapt": [8, 11, 15], "max_job_tim": [8, 15, 24], "output_multi_spc": [8, 15], "arcreact": [8, 10, 11, 12, 13, 15, 16, 31], "running_job": [8, 15], "t_min": [8, 10, 11], "t_max": [8, 10, 11], "t_count": [8, 10, 11], "thermo_adapt": [8, 11], "trsh_ess_job": [8, 15, 18], "ts_adapt": [8, 15], "report_e_elect": [8, 15], "skip_nmd": [8, 11, 15], "f12a": 8, "3df": 8, "3pd": 8, "notic": [8, 27], "slash": 8, "zindo": 8, "mp2": 8, "frequenc": [8, 9, 10, 11, 14, 15, 16, 18, 24, 25, 29, 30], "orbit": [8, 15, 16, 19, 25, 30], "petersson": [8, 11], "meliu": [8, 11], "temperatur": [8, 10, 11], "500": [8, 10, 11], "3000": [8, 10, 11], "fraction": [8, 15], "alloc": [8, 15, 25, 26], "bath": [8, 15, 16, 32], "ga": [8, 15, 16, 32], "calc": [8, 15, 16, 29], "l": [8, 14, 15], "he": [8, 15], "ne": [8, 15], "kr": [8, 15], "h2": [8, 15], "n2": [8, 15], "o2": [8, 15], "sub": [8, 16], "adapt": [8, 14, 15, 25, 30], "regular": [8, 9, 19], "harmon": [8, 11, 14, 15, 25], "databas": [8, 11, 13, 15, 25, 30], "thermodynam": [8, 11, 13, 16, 25, 30], "rate": [8, 10, 11, 12, 15, 21, 29, 30], "coeffici": [8, 10, 11, 12, 15, 25, 29, 30], "arrheniu": [8, 11, 12, 25], "equat": [8, 11, 25], "classic": [8, 11, 25], "qm": [8, 15, 16], "multi": [8, 10, 15, 16], "preciou": 8, "normal": [8, 9, 11, 15, 16, 19], "lib_long_desc": [8, 10, 11], "librari": [8, 10, 11, 12, 13, 16, 29], "rmg_databas": [8, 11, 12, 15], "rmgdatabas": [8, 11, 12, 13, 15], "fine_onli": [8, 15], "self": [8, 12, 15, 16, 17, 30], "fine": [8, 15, 18, 24, 25, 26, 30], "add_hydrogen_for_bd": 8, "bde": [8, 10, 11, 16, 25], "backup_restart": 8, "backup": [8, 26], "check_arkane_level_of_theori": 8, "check_freq_scaling_factor": 8, "check_project_nam": 8, "delete_leftov": 8, "leftov": 8, "determine_ess_set": 8, "diagnost": [8, 16, 25, 26], "determine_unique_species_label": 8, "process_level_of_theori": 8, "save_project_info_fil": 8, "set_levels_of_theori": 8, "standardize_output_path": 8, "summari": 8, "write_input_fil": 8, "statmechenum": 8, "finit": 8, "process_adaptive_level": 8, "identify_ess": 9, "parse_1d_scan_coord": 9, "parse_1d_scan_energi": 9, "initial_angl": 9, "parse_dipole_mo": 9, "moment": 9, "deby": 9, "parse_e_elect": 9, "zpe_scale_factor": 9, "zpe": [9, 14, 15, 16, 30], "parse_frequ": 9, "cm": 9, "parse_geometri": 9, "parse_ic_info": 9, "intermedi": [9, 18], "notimplementederror": 9, "parse_ic_valu": 9, "ic_block": 9, "parse_nd_scan_energi": 9, "return_original_dihedr": 9, "directed_scan_typ": [9, 10, 15, 16], "fig": [9, 10], "directed_scan": [9, 10, 16], "2f": [9, 10], "is_isomorph": [9, 10, 16], "ess_trsh_method": [9, 10, 15, 18], "parse_normal_mode_displac": 9, "parse_polariz": 9, "polariz": 9, "parse_scan_arg": 9, "frozen": [9, 18], "step": [9, 15, 26], "freez": [9, 15, 18], "step_siz": 9, "n_atom": 9, "parse_scan_conform": 9, "tabul": 9, "redund": [9, 11], "parse_str_block": 9, "head_pat": 9, "tail_pat": 9, "regex": 9, "tail_count": 9, "block_count": 9, "tail": 9, "express": [9, 27], "expres": 9, "repeat": [9, 19, 26], "parse_t1": 9, "coupl": [9, 26], "parse_trajectori": 9, "trajectori": [9, 10, 18], "parsererror": 9, "parse_xyz_from_fil": 9, "gjf": [9, 10, 24, 29], "parse_zp": 9, "zero": [9, 14], "process_conformers_fil": 9, "conformers_path": 9, "tss": [9, 12, 15, 16, 29], "conformers_before_optim": [9, 29], "conformers_after_optim": [9, 29], "augment_arkane_yml_file_with_mol_repr": 10, "output_directori": [10, 11], "auto_label": 10, "rect": 10, "ts_result": 10, "ax": 10, "bar": 10, "displai": [10, 24, 31], "height": [10, 18], "check_xyz_species_for_draw": 10, "draw": 10, "xy": 10, "cheapli": [10, 16], "clean_scan_result": 10, "nois": 10, "distribut": [10, 27], "occasion": 10, "mistak": 10, "snan": 10, "delete_multi_species_output_fil": 10, "species_list": [10, 12, 15], "multi_species_path_dict": 10, "slice": 10, "fromth": 10, "big": 10, "multi_speci": [10, 16], "multi_species_path": 10, "draw_3d": 10, "save_onli": 10, "ball": 10, "draw_kinetics_plot": 10, "rxn_list": [10, 15], "rmg_reaction": [10, 12, 16], "draw_parity_plot": 10, "var_arc": 10, "var_rmg": 10, "var_label": 10, "var_unit": 10, "pp": 10, "pdfpage": 10, "page": [10, 22, 25], "pfd": 10, "draw_structur": 10, "show_stick": 10, "show_atom_indic": 10, "scatter": 10, "draw_thermo_parity_plot": 10, "get_text_posit": 10, "x_data": 10, "y_data": 10, "txt_width": 10, "txt_height": 10, "annot": 10, "overlap": 10, "stackoverflow": [10, 19], "log_bde_report": 10, "spc_dict": 10, "prettifi": 10, "dissoci": [10, 11, 16, 25], "log_kinet": 10, "log_thermo": 10, "thermodata": [10, 16], "make_multi_species_output_fil": 10, "down": [10, 26], "plot_1d_rotor_scan": 10, "original_dihedr": [10, 16], "pe": [10, 12, 18], "vs": [10, 16, 29], "radian": [10, 19], "plot_2d_rotor_scan": 10, "cmap": 10, "blue": 10, "mark_lowest_conform": 10, "color": [10, 32], "produc": 10, "marker": 10, "mark": [10, 16, 23, 26], "red": 10, "dot": 10, "accent": 10, "accent_r": 10, "blues_r": 10, "brbg": 10, "brbg_r": 10, "bugn": 10, "bugn_r": 10, "bupu": 10, "bupu_r": 10, "cmrmap": 10, "cmrmap_r": 10, "dark2": 10, "dark2_r": 10, "gnbu": 10, "gnbu_r": 10, "green": [10, 21, 23], "greens_r": 10, "grei": 10, "greys_r": 10, "orrd": 10, "orrd_r": 10, "orang": 10, "oranges_r": 10, "prgn": 10, "prgn_r": 10, "paired_r": 10, "pastel1": 10, "pastel1_r": 10, "pastel2": 10, "pastel2_r": 10, "piyg": 10, "piyg_r": 10, "pubu": 10, "pubugn": 10, "pubugn_r": 10, "pubu_r": 10, "puor": 10, "puor_r": 10, "purd": 10, "purd_r": 10, "purpl": 10, "purples_r": 10, "rdbu": 10, "rdbu_r": 10, "rdgy": 10, "rdgy_r": 10, "rdpu": 10, "rdpu_r": 10, "rdylbu": 10, "rdylbu_r": 10, "rdylgn": 10, "rdylgn_r": 10, "reds_r": 10, "set1": 10, "set1_r": 10, "set2": 10, "set2_r": 10, "set3": 10, "set3_r": 10, "spectral": 10, "spectral_r": 10, "wistia": 10, "wistia_r": 10, "ylgn": 10, "ylgnbu": 10, "ylgnbu_r": 10, "ylgn_r": 10, "ylorbr": 10, "ylorbr_r": 10, "ylorrd": 10, "ylorrd_r": 10, "afmhot": 10, "afmhot_r": 10, "autumn": 10, "autumn_r": 10, "binari": 10, "binary_r": 10, "bone": 10, "bone_r": 10, "brg": 10, "brg_r": 10, "bwr": 10, "bwr_r": 10, "cividi": 10, "cividis_r": 10, "cool": 10, "cool_r": 10, "coolwarm": 10, "coolwarm_r": 10, "copper": 10, "copper_r": 10, "cubehelix": 10, "cubehelix_r": 10, "flag_r": 10, "gist_earth": 10, "gist_earth_r": 10, "gist_grai": 10, "gist_gray_r": 10, "gist_heat": 10, "gist_heat_r": 10, "gist_ncar": 10, "gist_ncar_r": 10, "gist_rainbow": 10, "gist_rainbow_r": 10, "gist_stern": 10, "gist_stern_r": 10, "gist_yarg": 10, "gist_yarg_r": 10, "gnuplot": 10, "gnuplot2": 10, "gnuplot2_r": 10, "gnuplot_r": 10, "grai": 10, "gray_r": 10, "hot": 10, "hot_r": 10, "hsv": 10, "hsv_r": 10, "inferno": 10, "inferno_r": 10, "jet": 10, "jet_r": 10, "magma": 10, "magma_r": 10, "nipy_spectr": 10, "nipy_spectral_r": 10, "ocean": 10, "ocean_r": 10, "pink": 10, "pink_r": 10, "plasma": 10, "plasma_r": 10, "prism": 10, "prism_r": 10, "rainbow": 10, "rainbow_r": 10, "seismic": 10, "seismic_r": 10, "spring": 10, "spring_r": 10, "summer": 10, "summer_r": 10, "tab10": 10, "tab10_r": 10, "tab20": 10, "tab20_r": 10, "tab20b": 10, "tab20b_r": 10, "tab20c": 10, "tab20c_r": 10, "terrain": 10, "terrain_r": 10, "viridi": 10, "viridis_r": 10, "winter": 10, "winter_r": 10, "plot_2d_scan_bond_dihedr": 10, "font_siz": 10, "figsiz": 10, "sfont": 10, "plot_3d_mol_as_scatt": 10, "plot_h": 10, "show_plot": 10, "show": [10, 24, 25, 28, 32], "plot_torsion_angl": 10, "torsions_sampling_point": 10, "e_conform": 10, "dash": 10, "horizont": 10, "plot_ts_guesses_by_e_and_method": 10, "imaginari": [10, 15, 16], "save_conformers_fil": 10, "ts_method": 10, "im_freq": 10, "log_cont": 10, "save_geo": 10, "format_": 10, "final_xyz": [10, 12, 15, 16], "initial_xyz": [10, 15, 16], "over": 10, "suffix": 10, "Or": 10, "save_irc_traj_anim": 10, "irc_f_path": 10, "irc_r_path": 10, "out_path": 10, "anim": 10, "forward": [10, 15], "revers": [10, 12, 13, 15, 19], "save_kinetics_lib": 10, "long_desc": 10, "save_nd_rotor_yaml": 10, "summar": 10, "save_rotor_text_fil": 10, "save_thermo_lib": 10, "save_transport_lib": 10, "stick": 10, "text_plott": 10, "text_posit": 10, "axi": [10, 19], "arrow": 10, "clean_output_directori": 11, "organ": [11, 30], "txt": [11, 29, 30], "move": [11, 30], "compare_r": 11, "rxns_for_kinetics_lib": 11, "compare_thermo": 11, "species_for_thermo_lib": 11, "thermochem": 11, "compare_transport": 11, "species_for_transport_lib": 11, "load_rmg_databas": [11, 13], "species_dict": [11, 15, 16], "output_dict": 11, "process_arc_project": 11, "pressur": [11, 12, 25], "limit": [11, 12, 15, 16, 25, 26, 27], "analysi": 11, "process_bd": 11, "write_unconverged_log": 11, "unconverged_speci": 11, "unconverged_rxn": 11, "log_file_path": 11, "unconverg": [11, 30], "reactant": [12, 15], "r_speci": 12, "p_speci": 12, "ts_label": 12, "ts_xyz_guess": [12, 31], "reaction_dict": 12, "preserve_param_in_scan": [12, 16], "r2": 12, "unimolecular": 12, "surfac": 12, "made": [12, 22, 25, 26], "identif": [12, 16], "break": [12, 16], "famili": [12, 13, 16], "kineticsfamili": [12, 13], "family_own_revers": 12, "own": [12, 13], "ts_speci": 12, "dh_rxn298": [12, 13], "heat": [12, 13], "298k": 12, "rmg_kinet": 12, "long_kinetic_descript": 12, "associ": [12, 16, 25, 27, 30], "atom_map": 12, "done_opt_r_n_p": 12, "complet": [12, 15, 26, 31], "arc_species_from_rmg_react": 12, "electr": 12, "check_atom_bal": [12, 16], "ts_xyz": 12, "balanc": [12, 16], "unspecifi": [12, 16], "imbal": 12, "reactionerror": 12, "check_attribut": 12, "correctli": [12, 20, 26, 30], "check_done_opt_r_n_p": 12, "copy_e0_valu": 12, "other_rxn": 12, "determine_famili": [12, 13], "wrapper": [12, 13], "determine_reaction_famili": [12, 13], "retain": [12, 13, 16], "flip_react": 12, "flip": 12, "from_dict": [12, 16], "get_bond": 12, "get_element_mass": 12, "get_expected_changing_bond": 12, "r_label_dict": 12, "templat": [12, 26], "templatereact": 12, "get_number_of_atoms_in_reaction_zon": 12, "particip": [12, 15], "recip": 12, "get_products_xyz": 12, "return_format": [12, 16], "orient": [12, 29], "reactiv": [12, 16], "get_reactants_and_product": 12, "return_copi": 12, "rmgspeci": 12, "get_reactants_xyz": 12, "get_rxn_charg": 12, "get_rxn_multipl": 12, "get_rxn_smil": 12, "get_single_mapped_product_xyz": 12, "get_species_count": 12, "occurr": [12, 16], "is_isomer": 12, "isomer": 12, "remove_dup_speci": 12, "onc": [12, 20], "rmg_reaction_from_arc_speci": 12, "rmg_reaction_from_str": 12, "reaction_str": 12, "regener": [12, 16], "rmg_reaction_to_str": 12, "set_label_reactants_product": 12, "clean_rmg_database_object": 13, "db": 13, "clear": 13, "determine_rmg_kinet": 13, "298": 13, "get_famili": 13, "load_families_onli": 13, "kinetics_famili": 13, "thermo_librari": 13, "reaction_librari": 13, "load_thermo_lib": 13, "load_kinetic_lib": 13, "include_nist": 13, "nist": [13, 30], "loop_famili": 13, "degenerate_react": 13, "degener": 13, "make_rmg_database_object": 13, "clean": 13, "doi": [14, 20, 21], "1016": 14, "cpc": 14, "2016": 14, "09": 14, "004": 14, "duminda": [14, 23], "ranasingh": [14, 21, 23], "alon": [14, 23, 32], "grinberg": [14, 21, 23], "dana": [14, 21, 23, 27], "calculate_truhlar_scaling_factor": 14, "zpe_dict": 14, "FOR": [14, 27], "haoyu": 14, "yu": 14, "luca": 14, "fiedler": 14, "alecu": 14, "donald": 14, "depart": 14, "supercomput": 14, "institut": [14, 27], "univers": 14, "minnesota": 14, "55455": 14, "0431": 14, "citat": 14, "zheng": 14, "zhao": 14, "2010": 14, "2872": 14, "2887": 14, "1021": 14, "ct100326h": 14, "physic": 14, "commun": [14, 17, 22, 25, 26], "2017": 14, "210": 14, "132": [14, 30], "138": 14, "vibrat": [14, 15, 29], "lambda": 14, "determine_scaling_factor": 14, "init_log": 14, "fundament": 14, "standalon": [14, 25, 26, 31], "get_species_list": 14, "rename_level": 14, "summarize_result": 14, "lambda_zp": 14, "overall_tim": 14, "base_path": 14, "restart_dict": 15, "job_dict": 15, "label_1": 15, "job1": 15, "job2": 15, "tsg": 15, "job_name1": 15, "job_name2": 15, "label_2": 15, "job_type1": 15, "status1": 15, "job_type2": 15, "status2": 15, "geo": 15, "mo": [15, 25], "unique_species_label": 15, "subset": 15, "conformer3": 15, "opt_a123": 15, "server_job_id": 15, "save_restart": 15, "loss": [15, 32], "restart_path": 15, "add_label_to_unique_species_label": 15, "check_all_don": 15, "check_directed_scan": 15, "qa": 15, "smooth": [15, 18], "successful_rotor": 15, "unsuccessful_rotor": 15, "check_directed_scan_job": 15, "adjust": [15, 18], "merg": [15, 26, 27], "jobadapt": 15, "check_freq_job": 15, "check_irc_speci": 15, "check_max_simultaneous_jobs_limit": 15, "check_negative_freq": 15, "vibfreq": 15, "check_rxn_e0_by_spc": 15, "check_scan_job": 15, "check_sp_job": 15, "deduce_job_adapt": 15, "delete_all_species_job": 15, "determine_adaptive_level": 15, "original_level_of_theori": 15, "determine_most_likely_ts_conform": 15, "determine_most_stable_conform": [15, 18], "end_job": 15, "job_nam": [15, 18], "csv": 15, "generate_final_ts_guess_report": 15, "get_completed_incore_job": 15, "incor": 15, "get_server_job_id": 15, "specific_serv": 15, "initialize_output_dict": 15, "purpos": [15, 27], "make_reaction_labels_info_fil": 15, "parse_composite_geo": 15, "parse_conform": 15, "fot": 15, "tsguess": [15, 16], "parse_opt_e_elect": 15, "optfreq": 15, "parse_opt_geo": 15, "post_opt_geo_work": 15, "spc_label": 15, "few": [15, 20], "finish": 15, "post_sp_act": 15, "sp_path": 15, "action": [15, 27], "process_conform": 15, "process_directed_scan": 15, "restore_running_job": 15, "session": [15, 17, 28], "featur": [15, 22, 24, 25, 26, 28, 29, 30], "twice": 15, "run_composite_job": 15, "ot": 15, "run_conformer_job": 15, "subsequ": 15, "cheap": [15, 16], "b97d3": 15, "run_freq_job": 15, "hessian": 15, "run_irc_job": 15, "irc_direct": 15, "run_job": 15, "cpu_cor": [15, 18], "dihedral_incr": 15, "job_adapt": 15, "rotor_index": 15, "attempted_queu": [15, 18], "scan_trsh": 15, "times_rerun": 15, "tri": [15, 16, 18], "grid": [15, 18, 25, 26], "multispeci": 15, "alpha": 15, "beta": 15, "run_onedmin_job": 15, "run_opt_job": 15, "run_orbitals_job": 15, "visual": [15, 25, 29], "run_scan_job": 15, "run_sp_job": 15, "mrci": [15, 16], "run_ts_conformer_job": 15, "ts_guess": [15, 16], "save_e_elect": 15, "save_restart_dict": 15, "schedule_job": 15, "spawn_directed_scan_job": 15, "cont": 15, "brute_forc": 15, "differenti": [15, 26], "unexpect": 15, "schedulererror": 15, "illeg": [15, 16], "spawn_post_irc_job": 15, "spawn_post_opt_job": 15, "spawn_ts_job": 15, "switch_t": 15, "troubleshoot_conformer_isomorph": 15, "troubleshoot_ess": 15, "troubleshoot_negative_freq": 15, "troubleshoot_opt_job": 15, "had": 15, "didn": 15, "troubleshoot_scan_job": 15, "inc_r": [15, 18], "species_has_freq": 15, "species_output_dict": 15, "yml_path": [15, 16], "species_has_geo": 15, "species_has_sp": 15, "species_has_sp_and_freq": 15, "stationari": 16, "state": [16, 25, 30], "include_in_thermo_lib": 16, "e0_onli": 16, "irc_label": 16, "number_of_rad": 16, "occ": 16, "rmg_speci": 16, "run_tim": 16, "rxn_label": 16, "rxn_index": 16, "ts_number": 16, "keep_mol": 16, "number_of_running_job": 16, "invalidation_reason": 16, "times_dihedral_set": 16, "scan_path": 16, "max_": 16, "trsh_counter": 16, "trsh_method": 16, "cont_indic": 16, "singlet": [16, 30], "doublet": 16, "adjac": [16, 25, 29], "rxn_dict": 16, "latest": [16, 26], "bi": 16, "rad": [16, 19], "unrestrict": [16, 30], "decis": 16, "u": 16, "slow": 16, "drug": 16, "heteroatom": 16, "old": 16, "seri": 16, "interest": [16, 19, 31], "advanc": [16, 25, 26, 28, 29], "occupi": 16, "val": 16, "original_label": 16, "prior": 16, "forbidden": 16, "e_elect": 16, "chosen": 16, "kelvin": 16, "plu": 16, "cheap_conform": 16, "necessarili": [16, 20], "best": 16, "most_stable_conform": 16, "recent_md_conform": 16, "md": [16, 26], "detect": [16, 26], "_radiu": 16, "archiv": [16, 29, 30], "_number_of_atom": 16, "heatcapacitymodel": 16, "rmg_thermo": 16, "successful_method": 16, "unsuccessful_method": 16, "unsuccessfulli": 16, "chosen_t": 16, "chosen_ts_list": 16, "chosen_ts_method": 16, "ts_check": 16, "went": 16, "rxn_zone_atom_indic": 16, "ts_conf_spawn": 16, "tsg_spawn": 16, "ts_guesses_exhaust": 16, "luck": 16, "achiev": 16, "ts_report": 16, "rank": 16, "prevent": 16, "transport_data": 16, "placehold": 16, "transportdata": 16, "conf_is_isomorph": 16, "strictli": 16, "enforc": 16, "conformers_before_opt": 16, "tetrahydr": 16, "check_xyz_isomorph": 16, "compliant": 16, "necessit": 16, "cluster_tsg": 16, "determine_multipl": 16, "determine_multiplicity_from_descriptor": 16, "determine_multiplicity_from_xyz": 16, "from_yml_fil": 16, "later": [16, 31], "ed": 16, "conformers_level": 16, "get_cheap_conform": 16, "get_xyz": 16, "highest": 16, "retriev": 16, "initialize_directed_rotor": 16, "is_diatom": 16, "is_monoatom": 16, "label_atom": 16, "make_ts_report": 16, "mol_from_xyz": [16, 30], "get_cheap": 16, "number_of_atom": 16, "number_of_heavy_atom": 16, "populate_ts_check": 16, "process_completed_tsg_queue_job": 16, "process_xyz": 16, "xyz_list": [16, 24], "flexibl": [16, 24, 25, 26], "scissor": 16, "sort_atom_label": 16, "scission": 16, "_bde_index1_index2_x": 16, "set_dihedr": 16, "chk_rotor_list": 16, "rotorerror": 16, "set_mol_list": 16, "set_transport_data": 16, "lj_path": 16, "opt_path": 16, "freq_path": 16, "method_index": 16, "method_direct": 16, "arc_react": 16, "ts_dict": 16, "succeed": 16, "opt_xyz": 16, "imaginary_freq": 16, "conformer_index": 16, "successful_irc": 16, "ir": 16, "successful_normal_mod": 16, "experienc": [16, 30], "almost_equal_tsg": 16, "for_report": 16, "concis": 16, "final_ts_guess_report": 16, "tic": 16, "tok": 16, "are_coords_compliant_with_graph": 16, "entry_1": 16, "entry_2": 16, "entry1": 16, "entry2": 16, "check_label": 16, "fix": [16, 22, 26, 30, 31], "check_xyz": 16, "agreement": 16, "colliding_atom": 16, "55": 16, "too": 16, "radii": 16, "42": 16, "781": 16, "47": 16, "808": 16, "07": 16, "588": 16, "74": 16, "cyclic_index_i_minus_1": 16, "cyclic": [16, 30], "cyclic_index_i_plus_1": 16, "determine_occ": 16, "todo": 16, "determine_rotor_symmetri": 16, "rotor_path": 16, "return_num_wel": 16, "worst": 16, "peak": [16, 31], "vallei": 16, "criterion": 16, "messag": [16, 18, 26, 30], "return_len_peak": 16, "determine_rotor_typ": 16, "hinderedrotor": 16, "freerotor": 16, "enumerate_bond": 16, "kekul": 16, "split_mol": 16, "sshing": 17, "upload": 17, "scratch": 17, "nodexx": 17, "rm": 17, "dhdhdhd": 17, "job_numb": 17, "sshclient": 17, "address": [17, 26], "un": [17, 26], "rsa": [17, 25], "privat": 17, "_ssh": 17, "paramiko": 17, "_sftp": 17, "sftp": 17, "client": 17, "oper": 17, "sftp_client": 17, "sftpclient": 17, "remote_path": [17, 18], "status": 17, "_connect": 17, "servererror": 17, "download_fil": 17, "remote_file_path": 17, "find_packag": 17, "package_nam": 17, "list_available_nod": 17, "hostnam": 17, "list_dir": 17, "submiss": 17, "upload_fil": 17, "check_connect": 17, "callabl": 17, "decor": 17, "ls": 17, "respons": [17, 26, 28], "aliv": 17, "bad": 17, "reconnect": 17, "channel": 17, "check_job_status_in_stdout": 17, "delete_all_arc_job": 17, "server_list": 17, "determine_ess_statu": 18, "output_path": 18, "species_label": 18, "job_log": 18, "determine_job_log_memory_issu": 18, "scan_quality_check": 18, "scan_r": 18, "used_method": 18, "preserve_param": 18, "original_xyz": 18, "curv": 18, "unavail": 18, "criteria": 18, "violat": 18, "throughout": [18, 30], "trsh_conformer_isomorph": 18, "trsherror": 18, "memory_gb": 18, "is_h": 18, "did": 18, "disk": 18, "output_error": 18, "remove_checkfil": 18, "trsh_keyword": 18, "couldnt_trsh": 18, "trsh_job_on_serv": 18, "job_server_statu": 18, "server_nod": 18, "opt_a103": 18, "rerun": 18, "trsh_job_queu": 18, "max_tim": 18, "24": [18, 24], "provi": 18, "measur": 18, "trsh_keyword_cartesian": 18, "trsh_keyword_checkfil": 18, "trsh_keyword_intaccuraci": 18, "accuraci": 18, "trsh_keyword_nosymm": 18, "nosymm": 18, "trsh_keyword_scf": 18, "trsh_keyword_unconverg": 18, "trsh_negative_freq": 18, "weren": 18, "deg": [18, 19, 30], "less": 18, "trsh_scan_job": 18, "scan_list": 18, "trsh_special_rotor": 18, "special_rotor": 18, "problematic_": 18, "special_typ": 18, "help": [18, 26, 29], "check_scan_qu": 18, "manipul": [19, 20], "calculate_angl": 19, "vectorserror": 19, "calculate_dihedral_angl": 19, "calculate_dist": 19, "calculate_param": 19, "get_angl": 19, "v1": [19, 26], "v2": 19, "get_delta_angl": 19, "359": 19, "get_dihedr": 19, "v3": 19, "inspir": 19, "get_lp_vector": 19, "lp": 19, "approach": 19, "averag": 19, "attain": [19, 20], "get_norm": 19, "cross": 19, "get_vector": 19, "get_vector_length": 19, "v": [19, 25], "rotate_vector": 19, "point_a": 19, "point_b": 19, "theta": 19, "question": 19, "6802577": 19, "set_vector_length": 19, "unit_vector": 19, "methan": 20, "r_2": 20, "4_1": 20, "a_2": 20, "3_0": 20, "09125": 20, "78200": 20, "26439": 20, "gic": 20, "add_dummy_atom": 20, "atom_index": 20, "check_atom_a_constraint": 20, "third": 20, "zmaterror": 20, "check_atom_d_constraint": 20, "forth": 20, "check_atom_r_constraint": 20, "consolidate_zmat": 20, "determine_a_atom": 20, "a_constraint": 20, "d_constraint": 20, "a_constraint_typ": 20, "trivial_assign": 20, "mat": 20, "determine_d_atom": 20, "d_constraint_typ": 20, "specific_atom": 20, "determine_d_atoms_from_connect": 20, "allow_a_to_be_dummi": 20, "determine_d_atoms_without_connect": 20, "determine_r_atom": 20, "r_constraint": 20, "get_all_neighbor": 20, "get_atom_connectivity_from_mol": 20, "get_atom_indices_from_zmat_paramet": 20, "r_0_2": 20, "a_0_1_2": 20, "d_0_1_2_4": 20, "r_0": 20, "0_3": 20, "a_0": 20, "0_1": 20, "1_2": 20, "d_0": 20, "4_5": 20, "rx_0_2": 20, "get_atom_ord": 20, "constraints_dict": 20, "get_atom_order_from_mol": 20, "get_atom_order_from_xyz": 20, "get_connect": 20, "edg": 20, "get_parameter_from_atom_indic": 20, "xyz_index": 20, "1_2_5": 20, "a_0_2_4": 20, "d_0_2_4_9": 20, "is_atom_in_new_frag": 20, "skip_atom": 20, "hasn": 20, "is_dummi": 20, "zmat_index": 20, "map_index_to_int": 20, "x15": 20, "order_fragments_by_constraint": 20, "remove_1st_atom": 20, "remove_1st_atom_refer": 20, "5th": 20, "3rd": [20, 26], "4th": 20, "up_param": 20, "increment_list": 20, "update_zmat_with_new_atom": 20, "added_dummi": 20, "xyz_to_zmat": 20, "resolv": [20, 26], "lock": 20, "meaning": 20, "zmat_to_coord": 20, "skip_undefin": 20, "sn": 20, "nerf": 20, "parson": 20, "holm": 20, "roja": 20, "tsai": 20, "strauss": 20, "silico": 20, "protein": 20, "synthesi": 20, "journal": [20, 21], "2005": 20, "1063": 20, "1068": 20, "1002": 20, "jcc": 20, "20237": 20, "convertertest": 20, "zmattest": 20, "wu": [21, 23], "grambow": [21, 23], "dong": [21, 23], "goldman": [21, 23], "liu": [21, 23], "autom": 21, "github": [21, 22, 25, 26], "reactionmechanismgener": [21, 26], "5281": 21, "zenodo": 21, "3356849": 21, "bibtex": 21, "misc": 21, "author": [21, 27], "titl": 21, "year": 21, "2019": 21, "publish": [21, 27], "repositori": [21, 26, 32], "howpublish": 21, "url": 21, "arc": [22, 23, 24, 27, 29], "facilit": [22, 25], "our": [22, 25], "research": [22, 23, 25, 27], "benefit": [22, 25, 31], "hope": [22, 25], "welcom": [22, 25], "contributor": [22, 23], "guidelin": 22, "conduct": 22, "notifi": 22, "develop": [22, 23, 26], "bug": [22, 26, 30, 31], "roadmap": 22, "technion": [23, 27], "mit": [23, 25, 27, 28], "dr": 23, "xiaorui": 23, "colin": 23, "matt": 23, "kfir": 23, "kaplan": 23, "lead": 23, "mengji": 23, "calvin": 23, "pieter": 23, "oscar": 23, "haoyang": 23, "prof": 23, "william": 23, "excel": 24, "resourc": [24, 26], "demonstr": [24, 28, 31], "basic": 24, "task": [24, 32], "arc_demo_1": 24, "15888237": 24, "27653343": 24, "30527086": 24, "63650559": 24, "15873769": 24, "22478280": 24, "59108268": 24, "16116823": 24, "20729283": 24, "31343166": 24, "61755575": 24, "56336439": 24, "97181468": 24, "18699193": 24, "24372402": 24, "17178687": 24, "70952779": 24, "51930751": 24, "1s": 24, "c3h8o": 24, "c1": 24, "h4h": 24, "3h2": 24, "1h3": 24, "sp_method": 24, "sp_basis_set": 24, "opt_method": 24, "opt_basis_set": 24, "independ": 24, "hamiltonian": 24, "discuss": 24, "ran": 24, "jupyt": [24, 26, 31, 32], "would": [24, 26], "matplotlib": 24, "spc3": 24, "sai": 24, "bndtss": 24, "def2tzvpp": 24, "992": 24, "ts1": 24, "ts3": 24, "track": [25, 26, 30], "cp": 25, "progress": 25, "licenc": 25, "host": 25, "contribut": 25, "instal": [25, 31], "clone": 25, "setup": 25, "alias": [25, 31], "bashrc": 25, "control": [25, 26], "disabl": [25, 26], "batch": 25, "choos": [25, 26], "tool": [25, 26, 31], "perceive_xyz_": 25, "xyz_to_smil": 25, "media": 25, "introduct": 25, "releas": [25, 26], "credit": 25, "cite": 25, "desktop": 26, "laptop": 26, "awar": [26, 31], "linux": 26, "ubuntu": 26, "lt": 26, "mac": [26, 30], "smoothli": 26, "window": 26, "These": [26, 32], "access": 26, "sge": [26, 30], "properli": 26, "experi": 26, "anaconda": [26, 31], "platform": [26, 31], "haven": 26, "compil": 26, "sudo": 26, "apt": 26, "gcc": 26, "export": 26, "pythonpath": [26, 31], "environ": [26, 31], "cd": 26, "conda": 26, "env": 26, "explain": [26, 28], "document": [26, 27, 30], "parti": 26, "autotst": [26, 30], "west": 26, "et": 26, "al": 26, "van": 26, "de": 26, "vijver": 26, "gcn": 26, "pattanaik": 26, "repo": 26, "discov": 26, "home": 26, "base_fold": 26, "carefulli": 26, "those": 26, "wish": 26, "major": 26, "Such": 26, "minor": [26, 30], "patch": 26, "favorit": 26, "reserv": 26, "storag": 26, "group_nam": 26, "arc_project": [26, 29], "project_nam": [26, 29], "manual": 26, "job_total_memory_gb": 26, "job_cpu_cor": 26, "job_time_limit_hr": 26, "default_job_set": 26, "alter": 26, "job_max_server_node_memory_alloc": 26, "percentag": 26, "80": [26, 30], "curli": 26, "brace": 26, "abl": [26, 32], "fill": 26, "mention": 26, "global_ess_set": 26, "thu": 26, "intens": 26, "radar": 26, "familiar": 26, "interact": [26, 31], "thing": 26, "blindli": 26, "oracl": 26, "sun": 26, "engin": 26, "check_status_command": 26, "submit_command": 26, "delete_command": 26, "list_available_nodes_command": 26, "t_max_format": 26, "sbatch": 26, "slurm1": 26, "slurm2": 26, "recognis": 26, "unmodifi": 26, "stash": 26, "unstash": 26, "pop": 26, "reccommend": 26, "edit": 26, "nano": 26, "arc_path": 26, "alia": 26, "arcrestart": [26, 31], "arcod": 26, "frequent": 26, "enjoi": 26, "thereof": 26, "fetch": 26, "pull": 26, "checkout": 26, "tag": 26, "replic": 26, "much": 26, "happen": 26, "styleguid": 26, "onlin": 26, "introduc": 26, "new_branch_to_merge_lat": 26, "stage": 26, "oun": 26, "rid": 26, "unneed": 26, "unstag": 26, "soft": 26, "free": [27, 30], "licens": 27, "copyright": 27, "2023": 27, "israel": 27, "technolog": 27, "permiss": 27, "herebi": 27, "grant": 27, "person": 27, "obtain": 27, "restrict": 27, "sublicens": 27, "sell": 27, "permit": 27, "whom": 27, "furnish": 27, "subject": 27, "condit": 27, "shall": 27, "substanti": 27, "portion": 27, "THE": 27, "IS": 27, "AS": 27, "warranti": 27, "OF": 27, "kind": 27, "OR": 27, "impli": 27, "BUT": 27, "TO": 27, "merchant": 27, "AND": 27, "noninfring": 27, "IN": 27, "event": 27, "holder": 27, "BE": 27, "liabl": 27, "claim": 27, "damag": 27, "liabil": 27, "contract": 27, "tort": 27, "aris": 27, "WITH": 27, "januari": 28, "2020": 28, "workshop": 28, "held": 28, "zoom": 28, "covid19": 28, "social": 28, "june": 28, "crush": [29, 30], "tree": 29, "bold": 29, "face": 29, "ital": 29, "procedur": 29, "quick": 29, "record": 29, "constantli": 29, "chk": 29, "thermoproperti": 29, "h298": 29, "s298": 29, "thermo_parity_plot": 29, "pdf": 29, "rate_plot": 29, "species_nam": 29, "_arkane_input": 29, "_arkane_output": 29, "inp": 29, "chemkin": 29, "nasa": 29, "species_dictionari": 29, "avogadro": 29, "png": 29, "view": 29, "pivot1": 29, "pivot2": 29, "rxn": [29, 30], "log_and_restart_arch": 29, "58": 30, "63": 30, "66": 30, "improv": 30, "68": 30, "64": 30, "70": 30, "77": 30, "inconsistency_ab": 30, "78": 30, "couldn": 30, "79": 30, "catch": 30, "84": 30, "81": 30, "85": 30, "87": 30, "88": 30, "89": 30, "nonisomorph": 30, "91": 30, "manag": 30, "94": 30, "applyatomenergycorrect": 30, "95": 30, "96": 30, "97": 30, "102": 30, "104": 30, "stepsiz": 30, "108": 30, "98": 30, "birad": 30, "114": 30, "determine_qm_softwar": 30, "111": 30, "117": 30, "119": 30, "1d_rotor": 30, "121": 30, "123": 30, "124": 30, "125": 30, "127": 30, "128": 30, "134": 30, "handl": 30, "137": 30, "139": 30, "136": 30, "spot": 30, "140": 30, "reorgan": 30, "init": 30, "142": 30, "146": 30, "think": 30, "143": 30, "147": 30, "148": 30, "152": 30, "62": 30, "67": 30, "73": 30, "statement": 30, "101": 30, "lose": 30, "qw": 30, "103": 30, "overwrit": 30, "106": 30, "extra": 30, "parenthes": 30, "122": 30, "slightli": 30, "144": 30, "os": 30, "ds_store": 30, "145": 30, "sleep": 30, "habit": 30, "149": 30, "150": 30, "correcli": 30, "151": 30, "miscellan": 30, "gitignor": 30, "err": 30, "levels_ess": 30, "phrase": 30, "112": 30, "energet": 30, "min_list": 30, "133": 30, "141": 30, "ipi": 30, "scikit": 30, "learn": 30, "116": 30, "capabl": 30, "abstract": 30, "path_to_the_arc_fold": 31, "whatev": 31, "previous": 31, "past": 31, "collect": 31, "fact": 31, "noth": 31, "example1": 31, "example2": 31, "n2h4": 31, "nn": 31, "nh": 31, "n2h3": 31, "nh2": 31, "4465194713": 31, "6830090994": 31, "0932618217": 31, "4573825998": 31, "1483344874": 31, "8104886823": 31, "6773598975": 31, "3820642106": 31, "2197000290": 31, "2239012380": 31, "4695695875": 31, "0069891203": 31, "8039356973": 31, "5112019151": 31, "8166872835": 31, "7837217777": 31, "5685801608": 31, "8405154279": 31, "9039017235": 31, "1568337145": 31, "0766247796": 31, "7333130781": 31, "8468572038": 31, "6711695415": 31, "reach": 31, "come": 31, "live": 31, "demo": 31, "a_": 32, "unintent": 32, "choic": 32, "r_min": 32, "r_max": 32, "target": 32, "pam": 32}, "objects": {"arc": [[1, 0, 0, "-", "common"], [5, 0, 0, "-", "job"], [6, 0, 0, "-", "level"], [8, 0, 0, "-", "main"], [9, 0, 0, "-", "parser"], [10, 0, 0, "-", "plotter"], [11, 0, 0, "-", "processor"], [12, 0, 0, "-", "reaction"], [13, 0, 0, "-", "rmgdb"], [15, 0, 0, "-", "scheduler"]], "arc.common": [[1, 1, 1, "", "almost_equal_coords"], [1, 1, 1, "", "almost_equal_coords_lists"], [1, 1, 1, "", "almost_equal_lists"], [1, 1, 1, "", "calc_rmsd"], [1, 1, 1, "", "check_ess_settings"], [1, 1, 1, "", "check_that_all_entries_are_in_list"], [1, 1, 1, "", "check_torsion_change"], [1, 1, 1, "", "convert_list_index_0_to_1"], [1, 1, 1, "", "convert_to_hours"], [1, 1, 1, "", "delete_check_files"], [1, 1, 1, "", "determine_ess"], [1, 1, 1, "", "determine_symmetry"], [1, 1, 1, "", "determine_top_group_indices"], [1, 1, 1, "", "dfs"], [1, 1, 1, "", "estimate_orca_mem_cpu_requirement"], [1, 1, 1, "", "extremum_list"], [1, 1, 1, "", "from_yaml"], [1, 1, 1, "", "generate_resonance_structures"], [1, 1, 1, "", "get_angle_in_180_range"], [1, 1, 1, "", "get_atom_radius"], [1, 1, 1, "", "get_bonds_from_dmat"], [1, 1, 1, "", "get_close_tuple"], [1, 1, 1, "", "get_extremum_index"], [1, 1, 1, "", "get_git_branch"], [1, 1, 1, "", "get_git_commit"], [1, 1, 1, "", "get_logger"], [1, 1, 1, "", "get_number_with_ordinal_indicator"], [1, 1, 1, "", "get_ordered_intersection_of_two_lists"], [1, 1, 1, "", "get_ordinal_indicator"], [1, 1, 1, "", "get_single_bond_length"], [1, 1, 1, "", "globalize_path"], [1, 1, 1, "", "globalize_paths"], [1, 1, 1, "", "initialize_job_types"], [1, 1, 1, "", "initialize_log"], [1, 1, 1, "", "is_angle_linear"], [1, 1, 1, "", "is_notebook"], [1, 1, 1, "", "is_same_pivot"], [1, 1, 1, "", "is_same_sequence_sublist"], [1, 1, 1, "", "is_str_float"], [1, 1, 1, "", "is_str_int"], [1, 1, 1, "", "is_xyz_mol_match"], [1, 1, 1, "", "key_by_val"], [1, 1, 1, "", "log_footer"], [1, 1, 1, "", "log_header"], [1, 1, 1, "", "read_yaml_file"], [1, 1, 1, "", "rmg_mol_from_dict_repr"], [1, 1, 1, "", "rmg_mol_to_dict_repr"], [1, 1, 1, "", "safe_copy_file"], [1, 1, 1, "", "save_yaml_file"], [1, 1, 1, "", "sort_atoms_in_descending_label_order"], [1, 1, 1, "", "sort_two_lists_by_the_first"], [1, 1, 1, "", "string_representer"], [1, 1, 1, "", "sum_list_entries"], [1, 1, 1, "", "time_lapse"], [1, 1, 1, "", "timedelta_from_str"], [1, 1, 1, "", "to_yaml"], [1, 1, 1, "", "torsions_to_scans"]], "arc.job": [[7, 0, 0, "-", "local"], [17, 0, 0, "-", "ssh"], [18, 0, 0, "-", "trsh"]], "arc.job.local": [[7, 1, 1, "", "change_mode"], [7, 1, 1, "", "check_job_status"], [7, 1, 1, "", "check_running_jobs_ids"], [7, 1, 1, "", "delete_all_local_arc_jobs"], [7, 1, 1, "", "delete_job"], [7, 1, 1, "", "execute_command"], [7, 1, 1, "", "get_last_modified_time"], [7, 1, 1, "", "parse_running_jobs_ids"], [7, 1, 1, "", "rename_output"], [7, 1, 1, "", "submit_job"], [7, 1, 1, "", "write_file"]], "arc.job.ssh": [[17, 2, 1, "", "SSHClient"], [17, 1, 1, "", "check_connections"], [17, 1, 1, "", "check_job_status_in_stdout"], [17, 1, 1, "", "delete_all_arc_jobs"]], "arc.job.ssh.SSHClient": [[17, 3, 1, "", "_sftp"], [17, 3, 1, "", "_ssh"], [17, 3, 1, "", "address"], [17, 4, 1, "", "change_mode"], [17, 4, 1, "", "check_job_status"], [17, 4, 1, "", "check_running_jobs_ids"], [17, 4, 1, "", "close"], [17, 4, 1, "", "connect"], [17, 4, 1, "", "delete_job"], [17, 4, 1, "", "delete_jobs"], [17, 4, 1, "", "download_file"], [17, 4, 1, "", "find_package"], [17, 3, 1, "", "key"], [17, 4, 1, "", "list_available_nodes"], [17, 4, 1, "", "list_dir"], [17, 3, 1, "", "server"], [17, 4, 1, "", "submit_job"], [17, 3, 1, "", "un"], [17, 4, 1, "", "upload_file"]], "arc.job.trsh": [[18, 1, 1, "", "determine_ess_status"], [18, 1, 1, "", "determine_job_log_memory_issues"], [18, 1, 1, "", "scan_quality_check"], [18, 1, 1, "", "trsh_conformer_isomorphism"], [18, 1, 1, "", "trsh_ess_job"], [18, 1, 1, "", "trsh_job_on_server"], [18, 1, 1, "", "trsh_job_queue"], [18, 1, 1, "", "trsh_keyword_cartesian"], [18, 1, 1, "", "trsh_keyword_checkfile"], [18, 1, 1, "", "trsh_keyword_intaccuracy"], [18, 1, 1, "", "trsh_keyword_nosymm"], [18, 1, 1, "", "trsh_keyword_scf"], [18, 1, 1, "", "trsh_keyword_unconverged"], [18, 1, 1, "", "trsh_negative_freq"], [18, 1, 1, "", "trsh_scan_job"], [18, 1, 1, "", "trsh_special_rotor"]], "arc.level": [[6, 2, 1, "", "Level"], [6, 1, 1, "", "get_params_from_arkane_level_of_theory_as_str"]], "arc.level.Level": [[6, 4, 1, "", "as_dict"], [6, 4, 1, "", "build"], [6, 4, 1, "", "copy"], [6, 4, 1, "", "deduce_method_type"], [6, 4, 1, "", "deduce_software"], [6, 4, 1, "", "determine_compatible_ess"], [6, 4, 1, "", "lower"], [6, 4, 1, "", "simple"], [6, 4, 1, "", "to_arkane_level_of_theory"]], "arc.main": [[8, 2, 1, "", "ARC"], [8, 2, 1, "", "StatmechEnum"], [8, 1, 1, "", "process_adaptive_levels"]], "arc.main.ARC": [[8, 3, 1, "", "T_count"], [8, 3, 1, "", "T_max"], [8, 3, 1, "", "T_min"], [8, 3, 1, "", "adaptive_levels"], [8, 4, 1, "", "add_hydrogen_for_bde"], [8, 3, 1, "", "allow_nonisomorphic_2d"], [8, 3, 1, "", "arkane_level_of_theory"], [8, 4, 1, "", "as_dict"], [8, 3, 1, "", "bac_type"], [8, 4, 1, "", "backup_restart"], [8, 3, 1, "", "bath_gas"], [8, 3, 1, "", "calc_freq_factor"], [8, 4, 1, "", "check_arkane_level_of_theory"], [8, 4, 1, "", "check_freq_scaling_factor"], [8, 4, 1, "", "check_project_name"], [8, 3, 1, "", "compare_to_rmg"], [8, 3, 1, "", "composite_method"], [8, 3, 1, "", "compute_rates"], [8, 3, 1, "", "compute_thermo"], [8, 3, 1, "", "compute_transport"], [8, 3, 1, "", "conformer_level"], [8, 4, 1, "", "delete_leftovers"], [8, 4, 1, "", "determine_ess_settings"], [8, 4, 1, "", "determine_unique_species_labels"], [8, 3, 1, "", "dont_gen_confs"], [8, 3, 1, "", "e_confs"], [8, 3, 1, "", "ess_settings"], [8, 4, 1, "", "execute"], [8, 3, 1, "", "execution_time"], [8, 3, 1, "", "fine_only"], [8, 3, 1, "", "freq_level"], [8, 3, 1, "", "freq_scale_factor"], [8, 3, 1, "", "irc_level"], [8, 3, 1, "", "job_types"], [8, 3, 1, "", "keep_checks"], [8, 3, 1, "", "kinetics_adapter"], [8, 3, 1, "", "level_of_theory"], [8, 3, 1, "", "lib_long_desc"], [8, 3, 1, "", "max_job_time"], [8, 3, 1, "", "memory"], [8, 3, 1, "", "n_confs"], [8, 3, 1, "", "opt_level"], [8, 3, 1, "", "orbitals_level"], [8, 3, 1, "", "output"], [8, 3, 1, "", "output_multi_spc"], [8, 4, 1, "", "process_level_of_theory"], [8, 3, 1, "", "project"], [8, 3, 1, "", "project_directory"], [8, 3, 1, "", "reactions"], [8, 3, 1, "", "report_e_elect"], [8, 3, 1, "", "rmg_database"], [8, 3, 1, "", "running_jobs"], [8, 4, 1, "", "save_project_info_file"], [8, 3, 1, "", "scan_level"], [8, 4, 1, "", "set_levels_of_theory"], [8, 3, 1, "", "skip_nmd"], [8, 3, 1, "", "sp_level"], [8, 3, 1, "", "species"], [8, 3, 1, "", "specific_job_type"], [8, 4, 1, "", "standardize_output_paths"], [8, 4, 1, "", "summary"], [8, 3, 1, "", "t0"], [8, 3, 1, "", "thermo_adapter"], [8, 3, 1, "", "three_params"], [8, 3, 1, "", "trsh_ess_jobs"], [8, 3, 1, "", "ts_adapters"], [8, 3, 1, "", "ts_guess_level"], [8, 4, 1, "", "write_input_file"]], "arc.parser": [[9, 1, 1, "", "identify_ess"], [9, 1, 1, "", "parse_1d_scan_coords"], [9, 1, 1, "", "parse_1d_scan_energies"], [9, 1, 1, "", "parse_dipole_moment"], [9, 1, 1, "", "parse_e_elect"], [9, 1, 1, "", "parse_frequencies"], [9, 1, 1, "", "parse_geometry"], [9, 1, 1, "", "parse_ic_info"], [9, 1, 1, "", "parse_ic_values"], [9, 1, 1, "", "parse_nd_scan_energies"], [9, 1, 1, "", "parse_normal_mode_displacement"], [9, 1, 1, "", "parse_polarizability"], [9, 1, 1, "", "parse_scan_args"], [9, 1, 1, "", "parse_scan_conformers"], [9, 1, 1, "", "parse_str_blocks"], [9, 1, 1, "", "parse_t1"], [9, 1, 1, "", "parse_trajectory"], [9, 1, 1, "", "parse_xyz_from_file"], [9, 1, 1, "", "parse_zpe"], [9, 1, 1, "", "process_conformers_file"]], "arc.plotter": [[10, 1, 1, "", "augment_arkane_yml_file_with_mol_repr"], [10, 1, 1, "", "auto_label"], [10, 1, 1, "", "check_xyz_species_for_drawing"], [10, 1, 1, "", "clean_scan_results"], [10, 1, 1, "", "delete_multi_species_output_file"], [10, 1, 1, "", "draw_3d"], [10, 1, 1, "", "draw_kinetics_plots"], [10, 1, 1, "", "draw_parity_plot"], [10, 1, 1, "", "draw_structure"], [10, 1, 1, "", "draw_thermo_parity_plots"], [10, 1, 1, "", "get_text_positions"], [10, 1, 1, "", "log_bde_report"], [10, 1, 1, "", "log_kinetics"], [10, 1, 1, "", "log_thermo"], [10, 1, 1, "", "make_multi_species_output_file"], [10, 1, 1, "", "plot_1d_rotor_scan"], [10, 1, 1, "", "plot_2d_rotor_scan"], [10, 1, 1, "", "plot_2d_scan_bond_dihedral"], [10, 1, 1, "", "plot_3d_mol_as_scatter"], [10, 1, 1, "", "plot_torsion_angles"], [10, 1, 1, "", "plot_ts_guesses_by_e_and_method"], [10, 1, 1, "", "save_conformers_file"], [10, 1, 1, "", "save_geo"], [10, 1, 1, "", "save_irc_traj_animation"], [10, 1, 1, "", "save_kinetics_lib"], [10, 1, 1, "", "save_nd_rotor_yaml"], [10, 1, 1, "", "save_rotor_text_file"], [10, 1, 1, "", "save_thermo_lib"], [10, 1, 1, "", "save_transport_lib"], [10, 1, 1, "", "show_sticks"], [10, 1, 1, "", "text_plotter"]], "arc.processor": [[11, 1, 1, "", "clean_output_directory"], [11, 1, 1, "", "compare_rates"], [11, 1, 1, "", "compare_thermo"], [11, 1, 1, "", "compare_transport"], [11, 1, 1, "", "load_rmg_database"], [11, 1, 1, "", "process_arc_project"], [11, 1, 1, "", "process_bdes"], [11, 1, 1, "", "write_unconverged_log"]], "arc.reaction": [[12, 2, 1, "", "ARCReaction"], [12, 1, 1, "", "remove_dup_species"]], "arc.reaction.ARCReaction": [[12, 4, 1, "", "arc_species_from_rmg_reaction"], [12, 4, 1, "", "as_dict"], [12, 5, 1, "id0", "atom_map"], [12, 5, 1, "id1", "charge"], [12, 4, 1, "", "check_atom_balance"], [12, 4, 1, "", "check_attributes"], [12, 4, 1, "", "check_done_opt_r_n_p"], [12, 4, 1, "", "copy"], [12, 4, 1, "", "copy_e0_values"], [12, 4, 1, "", "determine_family"], [12, 3, 1, "", "dh_rxn298"], [12, 3, 1, "", "done_opt_r_n_p"], [12, 3, 1, "", "family"], [12, 3, 1, "", "family_own_reverse"], [12, 4, 1, "", "flip_reaction"], [12, 4, 1, "", "from_dict"], [12, 4, 1, "", "get_bonds"], [12, 4, 1, "", "get_element_mass"], [12, 4, 1, "", "get_expected_changing_bonds"], [12, 4, 1, "", "get_number_of_atoms_in_reaction_zone"], [12, 4, 1, "", "get_products_xyz"], [12, 4, 1, "", "get_reactants_and_products"], [12, 4, 1, "", "get_reactants_xyz"], [12, 4, 1, "", "get_rxn_charge"], [12, 4, 1, "", "get_rxn_multiplicity"], [12, 4, 1, "", "get_rxn_smiles"], [12, 4, 1, "", "get_single_mapped_product_xyz"], [12, 4, 1, "", "get_species_count"], [12, 3, 1, "", "index"], [12, 4, 1, "", "is_isomerization"], [12, 3, 1, "", "kinetics"], [12, 3, 1, "", "label"], [12, 3, 1, "", "long_kinetic_description"], [12, 5, 1, "id4", "multiplicity"], [12, 3, 1, "", "p_species"], [12, 3, 1, "", "preserve_param_in_scan"], [12, 3, 1, "", "products"], [12, 3, 1, "", "r_species"], [12, 3, 1, "", "reactants"], [12, 4, 1, "", "remove_dup_species"], [12, 3, 1, "", "rmg_kinetics"], [12, 3, 1, "", "rmg_reaction"], [12, 4, 1, "", "rmg_reaction_from_arc_species"], [12, 4, 1, "", "rmg_reaction_from_str"], [12, 4, 1, "", "rmg_reaction_to_str"], [12, 3, 1, "", "rmg_reactions"], [12, 4, 1, "", "set_label_reactants_products"], [12, 3, 1, "", "ts_label"], [12, 3, 1, "", "ts_species"], [12, 3, 1, "", "ts_xyz_guess"]], "arc.rmgdb": [[13, 1, 1, "", "clean_rmg_database_object"], [13, 1, 1, "", "determine_family"], [13, 1, 1, "", "determine_reaction_family"], [13, 1, 1, "", "determine_rmg_kinetics"], [13, 1, 1, "", "get_family"], [13, 1, 1, "", "load_families_only"], [13, 1, 1, "", "load_rmg_database"], [13, 1, 1, "", "loop_families"], [13, 1, 1, "", "make_rmg_database_object"]], "arc.scheduler": [[15, 2, 1, "", "Scheduler"], [15, 1, 1, "", "species_has_freq"], [15, 1, 1, "", "species_has_geo"], [15, 1, 1, "", "species_has_sp"], [15, 1, 1, "", "species_has_sp_and_freq"]], "arc.scheduler.Scheduler": [[15, 3, 1, "", "adaptive_levels"], [15, 4, 1, "", "add_label_to_unique_species_labels"], [15, 3, 1, "", "allow_nonisomorphic_2d"], [15, 3, 1, "", "bath_gas"], [15, 4, 1, "", "check_all_done"], [15, 4, 1, "", "check_directed_scan"], [15, 4, 1, "", "check_directed_scan_job"], [15, 4, 1, "", "check_freq_job"], [15, 4, 1, "", "check_irc_species"], [15, 4, 1, "", "check_max_simultaneous_jobs_limit"], [15, 4, 1, "", "check_negative_freq"], [15, 4, 1, "", "check_rxn_e0_by_spc"], [15, 4, 1, "", "check_scan_job"], [15, 4, 1, "", "check_sp_job"], [15, 3, 1, "", "composite_method"], [15, 3, 1, "", "conformer_level"], [15, 4, 1, "", "deduce_job_adapter"], [15, 4, 1, "", "delete_all_species_jobs"], [15, 4, 1, "", "determine_adaptive_level"], [15, 4, 1, "", "determine_most_likely_ts_conformer"], [15, 4, 1, "", "determine_most_stable_conformer"], [15, 3, 1, "", "dont_gen_confs"], [15, 3, 1, "", "e_confs"], [15, 4, 1, "", "end_job"], [15, 3, 1, "", "ess_settings"], [15, 3, 1, "", "fine_only"], [15, 3, 1, "", "freq_level"], [15, 3, 1, "", "freq_scale_factor"], [15, 4, 1, "", "generate_final_ts_guess_report"], [15, 4, 1, "", "get_completed_incore_jobs"], [15, 4, 1, "", "get_server_job_ids"], [15, 4, 1, "", "initialize_output_dict"], [15, 3, 1, "", "irc_level"], [15, 3, 1, "", "job_dict"], [15, 3, 1, "", "job_types"], [15, 3, 1, "", "kinetics_adapter"], [15, 4, 1, "", "make_reaction_labels_info_file"], [15, 3, 1, "", "max_job_time"], [15, 3, 1, "", "memory"], [15, 3, 1, "", "n_confs"], [15, 3, 1, "", "opt_level"], [15, 3, 1, "", "orbitals_level"], [15, 3, 1, "", "output"], [15, 3, 1, "", "output_multi_spc"], [15, 4, 1, "", "parse_composite_geo"], [15, 4, 1, "", "parse_conformer"], [15, 4, 1, "", "parse_opt_e_elect"], [15, 4, 1, "", "parse_opt_geo"], [15, 4, 1, "", "post_opt_geo_work"], [15, 4, 1, "", "post_sp_actions"], [15, 4, 1, "", "process_conformers"], [15, 4, 1, "", "process_directed_scans"], [15, 3, 1, "", "project"], [15, 3, 1, "", "project_directory"], [15, 3, 1, "", "report_e_elect"], [15, 3, 1, "", "restart_dict"], [15, 3, 1, "", "restart_path"], [15, 4, 1, "", "restore_running_jobs"], [15, 3, 1, "id0", "rmg_database"], [15, 4, 1, "", "run_composite_job"], [15, 4, 1, "", "run_conformer_jobs"], [15, 4, 1, "", "run_freq_job"], [15, 4, 1, "", "run_irc_job"], [15, 4, 1, "", "run_job"], [15, 4, 1, "", "run_onedmin_job"], [15, 4, 1, "", "run_opt_job"], [15, 4, 1, "", "run_orbitals_job"], [15, 4, 1, "", "run_scan_jobs"], [15, 4, 1, "", "run_sp_job"], [15, 4, 1, "", "run_ts_conformer_jobs"], [15, 3, 1, "", "running_jobs"], [15, 3, 1, "", "rxn_list"], [15, 4, 1, "", "save_e_elect"], [15, 3, 1, "", "save_restart"], [15, 4, 1, "", "save_restart_dict"], [15, 3, 1, "", "scan_level"], [15, 4, 1, "", "schedule_jobs"], [15, 3, 1, "", "server_job_ids"], [15, 3, 1, "", "servers"], [15, 3, 1, "", "skip_nmd"], [15, 3, 1, "", "sp_level"], [15, 4, 1, "", "spawn_directed_scan_jobs"], [15, 4, 1, "", "spawn_post_irc_jobs"], [15, 4, 1, "", "spawn_post_opt_jobs"], [15, 4, 1, "", "spawn_ts_jobs"], [15, 3, 1, "", "species_dict"], [15, 3, 1, "", "species_list"], [15, 4, 1, "", "switch_ts"], [15, 3, 1, "", "testing"], [15, 4, 1, "", "troubleshoot_conformer_isomorphism"], [15, 4, 1, "", "troubleshoot_ess"], [15, 4, 1, "", "troubleshoot_negative_freq"], [15, 4, 1, "", "troubleshoot_opt_jobs"], [15, 4, 1, "", "troubleshoot_scan_job"], [15, 3, 1, "", "trsh_ess_jobs"], [15, 3, 1, "", "ts_adapters"], [15, 3, 1, "", "ts_guess_level"], [15, 3, 1, "", "unique_species_labels"]], "arc.species": [[2, 0, 0, "-", "conformers"], [3, 0, 0, "-", "converter"], [16, 0, 0, "-", "species"], [19, 0, 0, "-", "vectors"], [20, 0, 0, "-", "zmat"]], "arc.species.conformers": [[2, 1, 1, "", "change_dihedrals_and_force_field_it"], [2, 1, 1, "", "cheat_sheet"], [2, 1, 1, "", "check_special_non_rotor_cases"], [2, 1, 1, "", "chirality_dict_to_tuple"], [2, 1, 1, "", "conformers_combinations_by_lowest_conformer"], [2, 1, 1, "", "deduce_new_conformers"], [2, 1, 1, "", "determine_chirality"], [2, 1, 1, "", "determine_dihedrals"], [2, 1, 1, "", "determine_number_of_conformers_to_generate"], [2, 1, 1, "", "determine_rotors"], [2, 1, 1, "", "determine_smallest_atom_index_in_scan"], [2, 1, 1, "", "determine_torsion_sampling_points"], [2, 1, 1, "", "determine_torsion_symmetry"], [2, 1, 1, "", "determine_well_width_tolerance"], [2, 1, 1, "", "embed_rdkit"], [2, 1, 1, "", "find_internal_rotors"], [2, 1, 1, "", "generate_all_combinations"], [2, 1, 1, "", "generate_conformer_combinations"], [2, 1, 1, "", "generate_conformers"], [2, 1, 1, "", "generate_diatomic_conformer"], [2, 1, 1, "", "generate_force_field_conformers"], [2, 1, 1, "", "generate_monoatomic_conformer"], [2, 1, 1, "", "get_force_field_energies"], [2, 1, 1, "", "get_lowest_confs"], [2, 1, 1, "", "get_lowest_diastereomers"], [2, 1, 1, "", "get_number_of_chiral_centers"], [2, 1, 1, "", "get_top_element_count"], [2, 1, 1, "", "get_torsion_angles"], [2, 1, 1, "", "get_wells"], [2, 1, 1, "", "identify_chiral_nitrogen_centers"], [2, 1, 1, "", "initialize_log"], [2, 1, 1, "", "inverse_chirality_symbol"], [2, 1, 1, "", "mix_rdkit_and_openbabel_force_field"], [2, 1, 1, "", "openbabel_force_field"], [2, 1, 1, "", "openbabel_force_field_on_rdkit_conformers"], [2, 1, 1, "", "prune_enantiomers_dict"], [2, 1, 1, "", "rdkit_force_field"], [2, 1, 1, "", "read_rdkit_embedded_conformer_i"], [2, 1, 1, "", "read_rdkit_embedded_conformers"], [2, 1, 1, "", "replace_n_with_c_in_mol"], [2, 1, 1, "", "replace_n_with_c_in_xyz"], [2, 1, 1, "", "to_group"], [2, 1, 1, "", "translate_group"], [2, 1, 1, "", "translate_groups"], [2, 1, 1, "", "update_mol"]], "arc.species.converter": [[3, 1, 1, "", "add_lone_pairs_by_atom_valance"], [3, 1, 1, "", "add_rads_by_atom_valance"], [3, 1, 1, "", "check_isomorphism"], [3, 1, 1, "", "check_xyz_dict"], [3, 1, 1, "", "check_zmat_dict"], [3, 1, 1, "", "cluster_confs_by_rmsd"], [3, 1, 1, "", "compare_confs"], [3, 1, 1, "", "compare_zmats"], [3, 1, 1, "", "displace_xyz"], [3, 1, 1, "", "elementize"], [3, 1, 1, "", "get_center_of_mass"], [3, 1, 1, "", "get_element_mass_from_xyz"], [3, 1, 1, "", "get_most_common_isotope_for_element"], [3, 1, 1, "", "get_xyz_radius"], [3, 1, 1, "", "get_zmat_param_value"], [3, 1, 1, "", "get_zmat_str_var_value"], [3, 1, 1, "", "hartree_to_si"], [3, 1, 1, "", "ics_to_scan_constraints"], [3, 1, 1, "", "modify_coords"], [3, 1, 1, "", "molecules_from_xyz"], [3, 1, 1, "", "order_atoms"], [3, 1, 1, "", "order_atoms_in_mol_list"], [3, 1, 1, "", "pybel_to_inchi"], [3, 1, 1, "", "rdkit_conf_from_mol"], [3, 1, 1, "", "relocate_zmat_dummy_atoms_to_the_end"], [3, 1, 1, "", "remove_dummies"], [3, 1, 1, "", "rmg_conformer_to_xyz"], [3, 1, 1, "", "rmg_mol_from_inchi"], [3, 1, 1, "", "s_bonds_mol_from_xyz"], [3, 1, 1, "", "set_multiplicity"], [3, 1, 1, "", "set_radicals_by_map"], [3, 1, 1, "", "set_rdkit_dihedrals"], [3, 1, 1, "", "sort_xyz_using_indices"], [3, 1, 1, "", "species_to_sdf_file"], [3, 1, 1, "", "split_str_zmat"], [3, 1, 1, "", "standardize_xyz_string"], [3, 1, 1, "", "str_to_xyz"], [3, 1, 1, "", "str_to_zmat"], [3, 1, 1, "", "to_rdkit_mol"], [3, 1, 1, "", "translate_to_center_of_mass"], [3, 1, 1, "", "translate_xyz"], [3, 1, 1, "", "update_molecule"], [3, 1, 1, "", "xyz_file_format_to_xyz"], [3, 1, 1, "", "xyz_from_data"], [3, 1, 1, "", "xyz_to_ase"], [3, 1, 1, "", "xyz_to_coords_and_element_numbers"], [3, 1, 1, "", "xyz_to_coords_list"], [3, 1, 1, "", "xyz_to_dmat"], [3, 1, 1, "", "xyz_to_kinbot_list"], [3, 1, 1, "", "xyz_to_np_array"], [3, 1, 1, "", "xyz_to_pybel_mol"], [3, 1, 1, "", "xyz_to_rmg_conformer"], [3, 1, 1, "", "xyz_to_str"], [3, 1, 1, "", "xyz_to_turbomol_format"], [3, 1, 1, "", "xyz_to_x_y_z"], [3, 1, 1, "", "xyz_to_xyz_file_format"], [3, 1, 1, "", "zmat_from_xyz"], [3, 1, 1, "", "zmat_to_str"], [3, 1, 1, "", "zmat_to_xyz"]], "arc.species.species": [[16, 2, 1, "", "ARCSpecies"], [16, 2, 1, "", "TSGuess"], [16, 1, 1, "", "are_coords_compliant_with_graph"], [16, 1, 1, "", "check_atom_balance"], [16, 1, 1, "", "check_label"], [16, 1, 1, "", "check_xyz"], [16, 1, 1, "", "colliding_atoms"], [16, 1, 1, "", "cyclic_index_i_minus_1"], [16, 1, 1, "", "cyclic_index_i_plus_1"], [16, 1, 1, "", "determine_occ"], [16, 1, 1, "", "determine_rotor_symmetry"], [16, 1, 1, "", "determine_rotor_type"], [16, 1, 1, "", "enumerate_bonds"], [16, 1, 1, "", "split_mol"]], "arc.species.species.ARCSpecies": [[16, 3, 1, "", "_number_of_atoms"], [16, 3, 1, "", "_radius"], [16, 3, 1, "", "arkane_file"], [16, 4, 1, "", "as_dict"], [16, 3, 1, "", "bdes"], [16, 3, 1, "", "bond_corrections"], [16, 3, 1, "", "charge"], [16, 3, 1, "", "cheap_conformer"], [16, 4, 1, "", "check_xyz_isomorphism"], [16, 3, 1, "", "checkfile"], [16, 3, 1, "", "chosen_ts"], [16, 3, 1, "", "chosen_ts_list"], [16, 3, 1, "", "chosen_ts_method"], [16, 4, 1, "", "cluster_tsgs"], [16, 3, 1, "", "compute_thermo"], [16, 3, 1, "", "conf_is_isomorphic"], [16, 3, 1, "", "conformer_energies"], [16, 3, 1, "", "conformers"], [16, 3, 1, "", "conformers_before_opt"], [16, 3, 1, "", "consider_all_diastereomers"], [16, 4, 1, "", "copy"], [16, 4, 1, "", "determine_multiplicity"], [16, 4, 1, "", "determine_multiplicity_from_descriptors"], [16, 4, 1, "", "determine_multiplicity_from_xyz"], [16, 4, 1, "", "determine_rotors"], [16, 4, 1, "", "determine_symmetry"], [16, 3, 1, "", "directed_rotors"], [16, 3, 1, "", "e0"], [16, 3, 1, "", "e0_only"], [16, 3, 1, "", "e_elect"], [16, 3, 1, "", "external_symmetry"], [16, 3, 1, "", "final_xyz"], [16, 3, 1, "", "force_field"], [16, 3, 1, "", "fragments"], [16, 4, 1, "", "from_dict"], [16, 4, 1, "", "from_yml_file"], [16, 4, 1, "", "generate_conformers"], [16, 4, 1, "", "get_cheap_conformer"], [16, 4, 1, "", "get_xyz"], [16, 3, 1, "", "include_in_thermo_lib"], [16, 3, 1, "", "initial_xyz"], [16, 4, 1, "", "initialize_directed_rotors"], [16, 3, 1, "", "irc_label"], [16, 4, 1, "", "is_diatomic"], [16, 4, 1, "", "is_isomorphic"], [16, 4, 1, "", "is_monoatomic"], [16, 3, 1, "", "is_ts"], [16, 3, 1, "", "keep_mol"], [16, 3, 1, "", "label"], [16, 4, 1, "", "label_atoms"], [16, 3, 1, "", "long_thermo_description"], [16, 4, 1, "", "make_ts_report"], [16, 3, 1, "", "mol"], [16, 4, 1, "", "mol_from_xyz"], [16, 3, 1, "", "mol_list"], [16, 3, 1, "", "most_stable_conformer"], [16, 3, 1, "", "multi_species"], [16, 3, 1, "", "multiplicity"], [16, 3, 1, "", "neg_freqs_trshed"], [16, 5, 1, "", "number_of_atoms"], [16, 5, 1, "", "number_of_heavy_atoms"], [16, 3, 1, "", "number_of_radicals"], [16, 3, 1, "", "number_of_rotors"], [16, 3, 1, "", "occ"], [16, 3, 1, "", "opt_level"], [16, 3, 1, "", "optical_isomers"], [16, 3, 1, "", "original_label"], [16, 4, 1, "", "populate_ts_checks"], [16, 3, 1, "", "preserve_param_in_scan"], [16, 4, 1, "", "process_completed_tsg_queue_jobs"], [16, 4, 1, "", "process_xyz"], [16, 3, 1, "", "project_directory"], [16, 5, 1, "", "radius"], [16, 3, 1, "", "recent_md_conformer"], [16, 3, 1, "", "rmg_species"], [16, 3, 1, "", "rmg_thermo"], [16, 3, 1, "", "rotors_dict"], [16, 3, 1, "", "run_time"], [16, 3, 1, "", "rxn_index"], [16, 3, 1, "", "rxn_label"], [16, 3, 1, "", "rxn_zone_atom_indices"], [16, 4, 1, "", "scissors"], [16, 4, 1, "", "set_dihedral"], [16, 4, 1, "", "set_mol_list"], [16, 4, 1, "", "set_transport_data"], [16, 3, 1, "", "successful_methods"], [16, 3, 1, "", "t1"], [16, 3, 1, "", "thermo"], [16, 3, 1, "", "transport_data"], [16, 3, 1, "", "ts_checks"], [16, 3, 1, "", "ts_conf_spawned"], [16, 3, 1, "", "ts_guesses"], [16, 3, 1, "", "ts_guesses_exhausted"], [16, 3, 1, "", "ts_number"], [16, 3, 1, "", "ts_report"], [16, 3, 1, "", "tsg_spawned"], [16, 3, 1, "", "unsuccessful_methods"], [16, 3, 1, "", "yml_path"], [16, 3, 1, "", "zmat"]], "arc.species.species.TSGuess": [[16, 4, 1, "", "almost_equal_tsgs"], [16, 3, 1, "", "arc_reaction"], [16, 4, 1, "", "as_dict"], [16, 3, 1, "", "cluster"], [16, 3, 1, "", "conformer_index"], [16, 3, 1, "", "energy"], [16, 3, 1, "", "errors"], [16, 3, 1, "", "execution_time"], [16, 3, 1, "", "family"], [16, 4, 1, "", "from_dict"], [16, 4, 1, "", "get_xyz"], [16, 3, 1, "", "imaginary_freqs"], [16, 3, 1, "", "index"], [16, 5, 1, "id0", "initial_xyz"], [16, 3, 1, "", "method"], [16, 3, 1, "", "method_direction"], [16, 3, 1, "", "method_index"], [16, 5, 1, "id1", "opt_xyz"], [16, 4, 1, "", "process_xyz"], [16, 3, 1, "", "rmg_reaction"], [16, 3, 1, "", "success"], [16, 3, 1, "", "successful_irc"], [16, 3, 1, "", "successful_normal_mode"], [16, 3, 1, "", "t0"], [16, 4, 1, "", "tic"], [16, 4, 1, "", "tok"]], "arc.species.vectors": [[19, 1, 1, "", "calculate_angle"], [19, 1, 1, "", "calculate_dihedral_angle"], [19, 1, 1, "", "calculate_distance"], [19, 1, 1, "", "calculate_param"], [19, 1, 1, "", "get_angle"], [19, 1, 1, "", "get_delta_angle"], [19, 1, 1, "", "get_dihedral"], [19, 1, 1, "", "get_lp_vector"], [19, 1, 1, "", "get_normal"], [19, 1, 1, "", "get_vector"], [19, 1, 1, "", "get_vector_length"], [19, 1, 1, "", "rotate_vector"], [19, 1, 1, "", "set_vector_length"], [19, 1, 1, "", "unit_vector"]], "arc.species.zmat": [[20, 1, 1, "", "add_dummy_atom"], [20, 1, 1, "", "check_atom_a_constraints"], [20, 1, 1, "", "check_atom_d_constraints"], [20, 1, 1, "", "check_atom_r_constraints"], [20, 1, 1, "", "consolidate_zmat"], [20, 1, 1, "", "determine_a_atoms"], [20, 1, 1, "", "determine_d_atoms"], [20, 1, 1, "", "determine_d_atoms_from_connectivity"], [20, 1, 1, "", "determine_d_atoms_without_connectivity"], [20, 1, 1, "", "determine_r_atoms"], [20, 1, 1, "", "get_all_neighbors"], [20, 1, 1, "", "get_atom_connectivity_from_mol"], [20, 1, 1, "", "get_atom_indices_from_zmat_parameter"], [20, 1, 1, "", "get_atom_order"], [20, 1, 1, "", "get_atom_order_from_mol"], [20, 1, 1, "", "get_atom_order_from_xyz"], [20, 1, 1, "", "get_connectivity"], [20, 1, 1, "", "get_parameter_from_atom_indices"], [20, 1, 1, "", "is_atom_in_new_fragment"], [20, 1, 1, "", "is_dummy"], [20, 1, 1, "", "map_index_to_int"], [20, 1, 1, "", "order_fragments_by_constraints"], [20, 1, 1, "", "remove_1st_atom"], [20, 1, 1, "", "remove_1st_atom_references"], [20, 1, 1, "", "up_param"], [20, 1, 1, "", "update_zmat_with_new_atom"], [20, 1, 1, "", "xyz_to_zmat"], [20, 1, 1, "", "zmat_to_coords"]], "arc.utils": [[14, 0, 0, "-", "scale"]], "arc.utils.scale": [[14, 1, 1, "", "calculate_truhlar_scaling_factors"], [14, 1, 1, "", "determine_scaling_factors"], [14, 1, 1, "", "get_species_list"], [14, 1, 1, "", "rename_level"], [14, 1, 1, "", "summarize_results"]]}, "objtypes": {"0": "py:module", "1": "py:function", "2": "py:class", "3": "py:attribute", "4": "py:method", "5": "py:property"}, "objnames": {"0": ["py", "module", "Python module"], "1": ["py", "function", "Python function"], "2": ["py", "class", "Python class"], "3": ["py", "attribute", "Python attribute"], "4": ["py", "method", "Python method"], "5": ["py", "property", "Python property"]}, "titleterms": {"advanc": 0, "featur": 0, "flexibl": 0, "coordin": 0, "xyz": [0, 32], "input": [0, 31], "specifi": 0, "specif": 0, "job": [0, 5, 7, 17, 18, 32], "type": 0, "execut": 0, "level": [0, 6], "theori": 0, "adapt": 0, "control": 0, "memori": 0, "alloc": 0, "us": [0, 31], "fine": 0, "dft": 0, "grid": 0, "optim": [0, 24], "rotor": 0, "scan": [0, 32], "nd": 0, "electron": 0, "structur": 0, "softwar": [0, 26], "set": 0, "troubleshoot": 0, "ess": [0, 32], "check": 0, "file": [0, 31], "frequenc": [0, 32], "scale": [0, 14, 32], "factor": [0, 32], "isomorph": 0, "non": 0, "default": 0, "project": 0, "directori": 0, "visual": [0, 32], "molecular": 0, "orbit": 0, "mo": 0, "consid": 0, "diastereom": 0, "don": 0, "t": 0, "gener": [0, 26], "conform": [0, 2, 32], "speci": [0, 2, 3, 16, 19, 20], "write": 0, "an": [0, 31], "arc": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 25, 26, 28, 30, 31, 32], "api": [0, 4, 31], "calcul": [0, 24, 25], "bde": 0, "bond": 0, "dissoci": 0, "energi": 0, "disabl": 0, "comparison": 0, "rmg": 0, "databas": 0, "solvent": 0, "correct": 0, "batch": 0, "delet": [0, 32], "choos": 0, "modifi": 0, "classic": 0, "arrheniu": 0, "equat": 0, "form": 0, "rate": [0, 25], "coeffici": 0, "fit": 0, "common": 1, "todo": [2, 12, 15, 17, 18], "convert": 3, "s": 4, "local": 7, "main": 8, "parser": 9, "plotter": 10, "processor": 11, "reaction": 12, "rmgdb": 13, "util": 14, "schedul": 15, "ssh": [17, 26], "trsh": 18, "vector": 19, "zmat": 20, "how": [21, 28], "cite": 21, "contribut": 22, "credit": 23, "exampl": 24, "thermodynam": 24, "properti": 24, "transit": 24, "state": 24, "autom": 25, "v1": 25, "1": [25, 30], "0": [25, 30], "document": 25, "content": 25, "indic": 25, "tabl": 25, "instal": 26, "instruct": 26, "clone": 26, "setup": 26, "path": 26, "depend": 26, "creat": 26, "folder": 26, "option": 26, "recommend": 26, "rsa": 26, "kei": 26, "defin": 26, "server": 26, "associ": 26, "cluster": 26, "definit": 26, "test": 26, "add": 26, "alias": 26, "your": 26, "bashrc": 26, "conveni": 26, "updat": 26, "licenc": 27, "media": 28, "introduct": 28, "output": 29, "releas": 30, "note": 30, "version": 30, "style": 30, "run": 31, "standalon": 32, "tool": 32, "diagnost": 32, "all": 32, "determin": 32, "harmon": 32, "extern": 32, "symmetri": 32, "optic": 32, "isom": 32, "onedmin": 32, "script": 32, "perceive_xyz_": 32, "xyz_to_smil": 32, "plot": 32, "1d": 32, "torsion": 32, "2d": 32}, "envversion": {"sphinx.domains.c": 2, "sphinx.domains.changeset": 1, "sphinx.domains.citation": 1, "sphinx.domains.cpp": 6, "sphinx.domains.index": 1, "sphinx.domains.javascript": 2, "sphinx.domains.math": 2, "sphinx.domains.python": 3, "sphinx.domains.rst": 2, "sphinx.domains.std": 2, "sphinx.ext.viewcode": 1, "sphinx.ext.todo": 2, "sphinx": 56}}) \ No newline at end of file +Search.setIndex({"docnames": ["advanced", "api/common", "api/conformers", "api/converter", "api/index", "api/job", "api/level", "api/local", "api/main", "api/parser", "api/plotter", "api/processor", "api/reaction", "api/rmgdb", "api/scale", "api/scheduler", "api/species", "api/ssh", "api/trsh", "api/vectors", "api/zmat", "cite", "contribute", "credits", "examples", "index", "installation", "licence", "media", "output", "release", "running", "tools"], "filenames": ["advanced.rst", "api/common.rst", "api/conformers.rst", "api/converter.rst", "api/index.rst", "api/job.rst", "api/level.rst", "api/local.rst", "api/main.rst", "api/parser.rst", "api/plotter.rst", "api/processor.rst", "api/reaction.rst", "api/rmgdb.rst", "api/scale.rst", "api/scheduler.rst", "api/species.rst", "api/ssh.rst", "api/trsh.rst", "api/vectors.rst", "api/zmat.rst", "cite.rst", "contribute.rst", "credits.rst", "examples.rst", "index.rst", "installation.rst", "licence.rst", "media.rst", "output.rst", "release.rst", "running.rst", "tools.rst"], "titles": ["Advanced Features", "arc.common", "arc.species.conformers", "arc.species.converter", "ARC\u2019s API", "arc.job", "arc.level", "arc.job.local", "arc.main", "arc.parser", "arc.plotter", "arc.processor", "arc.reaction", "arc.rmgdb", "arc.utils.scale", "arc.scheduler", "arc.species.species", "arc.job.ssh", "arc.job.trsh", "arc.species.vectors", "arc.species.zmat", "How to cite ARC", "Contribute", "Credits", "Examples", "ARC - Automated Rate Calculator v1.1.0", "Installation instructions", "Licence", "Media", "Output", "Release notes", "Running ARC", "Standalone tools"], "terms": {"The": [0, 1, 2, 3, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 24, 25, 26, 27, 29, 32], "attribut": [0, 1, 2, 3, 6, 8, 10, 12, 13, 15, 16], "arcspeci": [0, 3, 8, 10, 11, 12, 15, 16, 18, 24, 30, 31], "object": [0, 1, 2, 3, 6, 8, 9, 10, 11, 12, 13, 15, 16, 20, 31], "whether": [0, 1, 2, 3, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 27], "ts": [0, 1, 2, 3, 8, 10, 12, 15, 16, 18, 20, 24, 26, 29, 30, 31], "extrem": [0, 10, 16], "It": [0, 15, 17, 22, 26, 28, 29, 30], "could": [0, 1, 2, 3, 6, 8, 9, 12, 15, 16, 17, 18, 20, 24, 26, 31], "multilin": [0, 1, 3, 8, 10, 11], "string": [0, 1, 2, 3, 6, 7, 8, 9, 10, 12, 14, 15, 16, 17, 20, 26], "contain": [0, 1, 2, 3, 9, 10, 12, 15, 16, 17, 20, 24, 29, 31], "list": [0, 1, 2, 3, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 24, 25, 26, 29, 30, 31], "sever": [0, 16, 18, 24, 26], "also": [0, 1, 2, 3, 15, 16, 17, 20, 24, 26, 29, 31, 32], "valid": [0, 2, 3, 8, 15, 20, 30, 31], "path": [0, 1, 2, 3, 7, 8, 9, 10, 11, 14, 15, 16, 17, 18, 25, 29, 31], "output": [0, 1, 3, 6, 7, 8, 9, 10, 11, 12, 15, 16, 17, 18, 24, 25, 30, 31], "format": [0, 1, 2, 3, 7, 8, 9, 10, 11, 12, 14, 15, 16, 19, 26, 29, 31], "s": [0, 1, 2, 3, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 22, 23, 24, 25, 26, 29, 30, 31, 32], "befor": [0, 2, 10, 16, 17, 26, 30, 32], "after": [0, 1, 3, 10, 15, 16, 20, 24, 26, 29], "see": [0, 2, 3, 6, 10, 11, 22, 24, 26, 29, 30, 31], "exampl": [0, 1, 2, 3, 8, 16, 18, 19, 20, 25, 26, 30, 31], "To": [0, 8, 24, 26, 31], "run": [0, 1, 2, 3, 7, 8, 9, 15, 16, 17, 18, 25, 26, 29, 30, 32], "particular": [0, 27], "onli": [0, 1, 2, 3, 8, 9, 10, 12, 15, 16, 18, 20, 26, 30], "specific_job_typ": [0, 1, 8], "you": [0, 7, 17, 22, 24, 26, 29, 31, 32], "want": 0, "current": [0, 1, 2, 3, 8, 15, 16, 18, 26, 32], "support": [0, 1, 2, 3, 8, 9, 10, 15, 16, 18, 26, 30], "follow": [0, 1, 2, 9, 10, 15, 18, 20, 24, 25, 26, 27, 29], "opt": [0, 8, 9, 15, 16, 18, 24, 30], "freq": [0, 6, 8, 9, 14, 15, 18, 24, 29, 30], "sp": [0, 8, 9, 15, 16, 18, 24, 30], "onedmin": [0, 8, 15, 16, 25], "irc": [0, 8, 10, 15, 16], "note": [0, 2, 3, 7, 16, 20, 24, 25, 26, 29], "take": [0, 1, 2, 3, 10, 16, 18], "higher": [0, 26, 30], "preced": [0, 10], "than": [0, 1, 3, 6, 8, 9, 13, 15, 16, 18, 19, 20, 24, 26, 30, 31], "job_typ": [0, 1, 6, 8, 15, 18, 24, 30], "If": [0, 1, 2, 3, 7, 8, 9, 10, 11, 12, 14, 15, 16, 17, 18, 19, 20, 26, 29, 30, 31], "both": [0, 2, 3, 10, 13, 15, 16, 17, 26], "dismiss": 0, "given": [0, 1, 2, 3, 6, 8, 10, 12, 13, 14, 15, 16, 18, 19, 20, 26, 28, 32], "popul": [0, 2, 6, 8, 12, 13, 16], "dictionari": [0, 1, 2, 3, 6, 8, 9, 10, 11, 12, 14, 15, 16, 18, 20, 26, 29, 30], "For": [0, 2, 8, 15, 16, 18, 24, 26], "two": [0, 1, 2, 3, 8, 11, 12, 15, 16, 19, 20, 26, 32], "ar": [0, 1, 2, 3, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 23, 24, 25, 26, 30, 31, 32], "equival": [0, 3, 16], "1": [0, 1, 2, 3, 7, 8, 9, 10, 11, 12, 14, 15, 16, 18, 19, 20, 21, 24, 26, 29, 31, 32], "fals": [0, 1, 2, 3, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 20, 24], "true": [0, 1, 2, 3, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 20, 24, 30], "2": [0, 1, 2, 3, 7, 8, 12, 14, 15, 16, 18, 19, 20, 24, 26, 32], "class": [0, 1, 6, 8, 12, 15, 16, 17, 31], "meant": 0, "allow": [0, 3, 6, 8, 15, 16, 20, 26, 30, 31], "detail": [0, 24, 26, 29, 31], "comprehens": [0, 1, 6], "user": [0, 2, 3, 7, 8, 12, 15, 16, 17, 18, 25, 26, 28, 30, 31, 32], "per": [0, 2, 3, 15, 16, 30], "some": [0, 1, 3, 7, 12, 16, 17, 20, 25, 26, 29, 30], "shortcut": [0, 8, 12], "describ": [0, 16, 20, 25, 29], "below": [0, 2, 8, 10, 15, 16, 24, 26], "which": [0, 1, 2, 3, 6, 7, 8, 9, 10, 11, 12, 14, 15, 16, 17, 18, 19, 20, 24, 25, 26, 29, 31], "mai": [0, 3, 15, 20, 22, 24, 25, 26, 29], "otherwis": [0, 1, 2, 8, 10, 15, 16, 20, 24, 27], "assum": [0, 2, 3, 10, 16, 20, 26, 31], "valu": [0, 1, 2, 3, 6, 7, 8, 9, 10, 11, 12, 14, 15, 16, 19, 20, 24, 26, 29], "conformer_level": [0, 8, 15, 24], "ts_guess_level": [0, 8, 15], "opt_level": [0, 8, 15, 16, 24], "freq_level": [0, 8, 15, 16, 24], "sp_level": [0, 8, 11, 15], "composite_method": [0, 8, 15], "scan_level": [0, 8, 15, 24], "irc_level": [0, 8, 15], "orbitals_level": [0, 8, 15], "each": [0, 1, 2, 3, 8, 9, 10, 12, 15, 16, 20, 26, 29], "defin": [0, 1, 2, 3, 6, 8, 9, 12, 14, 15, 19, 20, 24, 25, 30, 31, 32], "either": [0, 1, 2, 3, 6, 7, 8, 9, 10, 12, 13, 14, 15, 16, 17, 18, 19, 26], "method": [0, 2, 3, 6, 8, 9, 10, 12, 14, 15, 16, 17, 18, 24, 26, 30, 32], "basi": [0, 6, 24, 30], "where": [0, 1, 2, 7, 8, 10, 15, 16, 18, 25, 26, 29], "applic": [0, 12, 16], "e": [0, 1, 2, 3, 6, 7, 8, 10, 11, 12, 15, 16, 18, 20, 24, 25, 26, 29, 31], "g": [0, 1, 2, 3, 6, 7, 8, 10, 11, 14, 15, 16, 18, 20, 24, 25, 26, 29, 31], "cb": [0, 8, 15, 24], "qb3": [0, 8, 15, 24], "wb97xd": [0, 6, 8, 24], "def2": [0, 6, 8], "tzvp": [0, 6, 8], "addit": [0, 2, 6, 8, 11, 15, 16, 19, 26, 29, 30, 31], "argument": [0, 3, 6, 8, 9, 10, 15, 16], "auxiliary_basi": [0, 6], "dispers": [0, 6, 24], "cab": [0, 6], "complementari": [0, 6], "auxiliari": [0, 6, 24], "f12": [0, 6, 8, 24], "software_vers": [0, 6], "solvation_method": [0, 6], "solvation_scheme_level": [0, 6], "arg": [0, 3, 6], "b3lyp": [0, 6, 8, 24], "6": [0, 1, 6, 8, 14, 15, 16, 20, 24], "31g": [0, 6, 8], "d": [0, 1, 2, 3, 7, 8, 14, 15, 18, 20, 21, 24, 26], "p": [0, 6, 7, 8, 11, 15, 24], "empiricaldispers": [0, 24], "gd3bj": [0, 24], "model": [0, 6, 25, 30], "chemistri": [0, 6, 14, 20, 30], "along": [0, 3, 18, 28, 31], "d3": 0, "version": [0, 1, 6, 14, 16, 21, 25, 26], "grimm": 0, "beck": 0, "johnson": [0, 21, 23], "damp": 0, "requir": [0, 1, 2, 3, 15, 16, 18, 26], "gaussian": [0, 3, 6, 8, 9, 10, 16, 18, 24, 26, 29, 30], "In": [0, 1, 2, 10, 20, 24, 26, 31], "differ": [0, 1, 3, 6, 8, 12, 15, 16, 19, 20, 24, 26, 29, 31, 32], "have": [0, 1, 2, 3, 8, 12, 15, 16, 18, 19, 20, 22, 24, 25, 26, 31, 32], "variou": [0, 3, 9, 15, 24, 31, 32], "make": [0, 1, 3, 7, 8, 12, 13, 15, 16, 17, 18, 26, 30, 31, 32], "sure": [0, 1, 7, 8, 12, 16, 17, 26, 31, 32], "pass": [0, 1, 10, 16, 20, 26], "base": [0, 1, 2, 3, 10, 11, 14, 16, 18, 20, 26], "intend": [0, 3], "should": [0, 1, 2, 3, 7, 8, 10, 14, 15, 16, 18, 20, 26, 30], "anoth": [0, 2, 10, 12, 16, 31], "dlpno": [0, 8], "ccsd": [0, 8, 15, 16, 24], "cc": [0, 8, 24], "pvtz": [0, 8, 24], "aug": [0, 8], "c": [0, 2, 3, 16, 20, 21, 24, 27], "keyword": [0, 15, 18, 26, 31], "opt_converg": 0, "tightopt": 0, "orca": [0, 1, 3, 9, 26], "singl": [0, 1, 3, 8, 9, 11, 12, 14, 15, 16, 26], "point": [0, 2, 3, 8, 9, 10, 11, 14, 15, 16, 18, 19, 30], "THe": [0, 15], "definit": [0, 18, 25], "apfd": [0, 24], "def2tzvp": [0, 24], "pm6": 0, "effect": 0, "implement": [0, 3, 9, 16, 20, 22], "futur": [0, 26], "automat": [0, 2, 3, 8, 16, 24, 25, 26, 31], "determin": [0, 1, 2, 3, 6, 7, 8, 9, 12, 13, 14, 15, 16, 18, 20, 25, 26, 29, 30], "unless": [0, 3, 12, 24, 26], "level_of_theori": [0, 8, 10, 15, 18, 24], "simultan": [0, 2, 16, 26], "def2svp": 0, "doe": [0, 1, 2, 3, 8, 10, 16, 17, 18, 20, 26, 28, 32], "delimin": 0, "interpret": 0, "all": [0, 1, 2, 3, 6, 7, 8, 9, 10, 12, 13, 15, 16, 17, 18, 20, 25, 26, 27, 29, 30, 31], "ani": [0, 1, 2, 6, 9, 10, 12, 15, 16, 17, 18, 20, 26, 27, 31], "neither": [0, 2, 3, 10, 20, 26], "nor": [0, 2, 3, 10, 16, 20, 26], "composit": [0, 3, 6, 8, 9, 15, 20, 24], "semi": [0, 6], "empir": [0, 6], "wa": [0, 1, 3, 6, 7, 8, 10, 13, 15, 16, 18, 20, 25, 26, 28, 31], "am1": 0, "must": [0, 2, 3, 6, 10, 12, 16, 18, 26], "etc": [0, 9, 20], "rather": [0, 1, 3, 20, 26], "geometri": [0, 2, 3, 8, 9, 10, 15, 16, 18, 20, 29, 30, 31], "pleas": [0, 22], "avoid": [0, 1, 3, 8, 10, 12, 15, 16, 17, 22, 26], "conflict": [0, 26], "confus": 0, "rais": [0, 1, 2, 3, 6, 8, 9, 10, 12, 15, 16, 17, 18, 19, 20], "inputerror": [0, 1, 2, 3, 9, 10, 15, 16, 17, 18], "A": [0, 1, 2, 3, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 26, 27, 29, 30, 31], "notabl": 0, "nest": [0, 16, 26], "direct": [0, 1, 3, 10, 15, 16, 19, 24, 26, 30, 31], "There": 0, "kei": [0, 1, 2, 3, 6, 8, 9, 10, 11, 14, 15, 16, 17, 20, 25], "first": [0, 1, 2, 3, 8, 15, 16, 17, 20, 26, 30, 31], "block": [0, 1, 3, 9, 15], "entri": [0, 1, 2, 3, 6, 8, 9, 10, 11, 12, 13, 14, 15, 16, 18, 20], "under": [0, 7, 15, 17, 25, 26, 27, 29, 32], "ad": [0, 2, 3, 10, 16, 20, 26, 30, 31], "line": [0, 2, 3, 7, 10, 15, 17, 18, 24, 26], "while": [0, 2, 7, 16, 17, 26, 29], "treat": [0, 2, 15, 16, 30, 31], "correspond": [0, 1, 2, 3, 8, 10, 12, 13, 14, 15, 16, 20], "well": [0, 2, 3, 9, 10, 12, 15, 16, 18, 20, 22, 25, 26], "intern": [0, 2, 3, 9, 15, 16, 18, 20, 31], "encourag": [0, 26], "can": [0, 1, 2, 3, 6, 7, 8, 14, 15, 16, 17, 20, 26, 29, 30, 31, 32], "deduc": [0, 2, 6, 15], "heurist": 0, "yet": [0, 8, 15, 16, 20, 25, 30], "sinc": [0, 1, 2, 3, 15, 16, 20], "depend": [0, 20, 25, 30], "highli": [0, 26], "recommend": [0, 2, 15, 16, 22, 25, 29, 31], "option": [0, 1, 2, 3, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 25, 29], "incompat": 0, "conveni": [0, 25, 31], "sting": 0, "internallt": 0, "convert": [0, 1, 2, 4, 6, 14, 16, 20, 25, 30], "scf": [0, 18], "dryrun": 0, "n": [0, 2, 3, 16, 20, 29, 31], "end": [0, 3, 19], "iop": 0, "99": [0, 30], "33": 0, "append": [0, 15, 18, 26], "respect": [0, 1, 2, 3, 6, 8, 9, 10, 12, 15, 16, 20, 26, 29, 32], "size": [0, 2, 9, 10, 26], "molecul": [0, 1, 2, 3, 8, 9, 10, 12, 16, 18, 19, 20, 30], "do": [0, 2, 3, 7, 8, 15, 17, 20, 26, 27, 32], "so": [0, 1, 2, 7, 14, 15, 17, 20, 24, 26, 27], "adaptive_level": [0, 8, 15], "rang": [0, 1, 8, 15, 19], "number": [0, 1, 2, 3, 8, 9, 10, 11, 12, 15, 16, 18, 20, 26, 30, 32], "heavi": [0, 1, 2, 8, 15, 16, 18, 20, 30], "hydrogen": [0, 1, 2, 3, 8, 10, 16, 18, 30], "atom": [0, 1, 2, 3, 8, 9, 10, 12, 13, 15, 16, 18, 19, 20, 29, 30], "tupl": [0, 1, 2, 3, 7, 8, 9, 10, 11, 12, 13, 15, 16, 17, 18, 19, 20], "min_num_atom": [0, 8, 15], "max_num_atom": [0, 8, 15], "forget": 0, "bound": 0, "entir": [0, 3, 10, 15, 20], "between": [0, 1, 2, 3, 7, 8, 10, 11, 12, 15, 16, 18, 19], "inf": [0, 8, 15], "aren": [0, 3, 12, 18, 29], "gap": [0, 16], "5": [0, 1, 2, 8, 10, 15, 16, 18, 20, 24, 26], "311": [0, 8, 24], "2d": [0, 2, 8, 10, 15, 16, 19, 20, 25, 30], "2p": [0, 8], "15": [0, 1, 2, 8, 10, 20], "cbsb7": [0, 8], "16": [0, 8], "30": [0, 2, 7, 8, 18], "31": [0, 8, 15], "separ": [0, 3, 15, 16], "via": [0, 9, 16, 17, 24, 26, 28], "amount": [0, 1, 2, 26], "job_memori": [0, 8], "posit": [0, 1, 10], "integ": [0, 1, 2, 3, 15], "unit": [0, 1, 3, 10, 19, 26], "gb": [0, 8, 15, 18, 26], "total": [0, 1, 8, 15, 16, 18, 26], "node": [0, 7, 17, 18, 26], "server": [0, 1, 7, 8, 14, 15, 17, 18, 25, 29, 30, 32], "py": [0, 3, 15, 16, 20, 24, 26, 29, 30, 31], "thi": [0, 1, 2, 3, 7, 8, 9, 10, 11, 12, 13, 15, 16, 17, 18, 20, 26, 27, 28, 29, 30, 31, 32], "maximum": [0, 1, 2, 8, 10, 11, 16, 17, 26], "relat": [0, 3, 15, 17, 18, 20, 32], "request": [0, 1, 2, 3, 14, 15, 16, 18, 20, 26, 28, 30], "more": [0, 1, 3, 13, 15, 16, 18, 20, 26, 30], "initi": [0, 1, 2, 8, 9, 14, 15, 16, 18, 30], "14": [0, 3, 8, 15, 26], "case": [0, 1, 2, 8, 15, 16, 18, 20, 26, 29], "crash": [0, 7, 18, 26, 31], "due": [0, 26, 31], "insuffici": 0, "try": [0, 1, 2, 15, 17, 18, 20, 22, 26], "resubmit": 0, "ask": [0, 29], "up": [0, 1, 2, 24, 26], "maxim": [0, 1, 8, 15], "turn": 0, "like": [0, 3, 15, 16, 24, 26, 31], "off": [0, 30], "spawn": [0, 7, 8, 12, 15, 16, 17, 31, 32], "one": [0, 1, 2, 3, 8, 10, 13, 15, 16, 17, 18, 24, 26], "converg": [0, 2, 8, 15, 16, 18, 29], "now": [0, 1, 16, 30], "alreadi": [0, 2, 3, 6, 15, 16, 18, 20, 26, 30], "possibl": [0, 2, 7, 13, 16, 17], "instruct": [0, 25, 31], "instead": [0, 2, 3, 7, 8, 10, 15, 16, 20, 26, 30], "begin": [0, 1, 3], "call": [0, 1, 2, 3, 7, 8, 9, 14, 15, 16, 17], "although": [0, 26], "practic": [0, 20], "ultrafin": [0, 18], "studi": 0, "import": [0, 1, 2, 15, 16, 24, 29], "add": [0, 1, 2, 10, 15, 16, 20, 25], "tight": 0, "integr": [0, 18], "acc2": 0, "12": [0, 10, 18], "qchem": [0, 3, 9, 15, 24, 26], "geom_opt_tol_gradi": 0, "geom_opt_tol_displac": 0, "60": [0, 2], "geom_opt_tol_energi": 0, "xc_grid": 0, "3": [0, 1, 2, 3, 7, 9, 15, 16, 18, 19, 20, 24, 25, 26], "terachem": [0, 9, 26], "dftgrid": 0, "4": [0, 1, 2, 3, 16, 18, 19, 20, 24], "dynamicgrid": 0, "ye": 0, "perform": [0, 3, 15, 17, 24, 26, 29, 32], "1d": [0, 9, 10, 16, 25], "dimension": 0, "uniqu": [0, 1, 2, 6, 8, 12, 15, 16, 18], "resolut": [0, 1, 2, 10, 15, 16, 18, 32], "8": [0, 10, 16, 18, 26], "degre": [0, 1, 2, 3, 9, 10, 15, 16, 18, 19, 20], "360": [0, 3, 18, 19, 30], "overal": [0, 1, 8, 14, 16], "chang": [0, 1, 2, 3, 7, 15, 16, 17, 18, 20, 26, 30, 32], "rotor_scan_resolut": [0, 16], "paramet": [0, 1, 2, 3, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 26, 31], "invalid": [0, 9, 10, 17, 18, 20], "thermo": [0, 10, 11, 12, 16, 29], "least": [0, 1], "barrier": [0, 16, 18], "abov": [0, 2, 3, 8, 10, 15, 16, 24, 26, 27, 29, 31], "threshold": [0, 1, 2, 8, 10, 15, 16], "40": 0, "kj": [0, 2, 3, 8, 9, 10, 11, 15, 16, 18], "mol": [0, 1, 2, 3, 8, 9, 10, 11, 12, 13, 14, 15, 16, 18, 19, 20, 30], "inconsist": 0, "consecut": [0, 2], "anf": 0, "final": [0, 2, 8, 15, 16, 18], "seven": 0, "a1": [0, 3, 19], "brute": [0, 10, 16], "forc": [0, 2, 6, 8, 10, 15, 16, 32], "diagon": [0, 15], "a2": [0, 19], "constraint": [0, 3, 16, 20], "deriv": [0, 3, 20], "from": [0, 1, 2, 3, 6, 7, 8, 9, 10, 11, 12, 13, 15, 16, 17, 18, 19, 20, 22, 24, 25, 26, 27, 29, 30, 31, 32], "previou": [0, 15, 16, 18], "continu": [0, 15, 16], "let": 0, "guid": 0, "b": [0, 16, 19, 20, 26], "dihedr": [0, 2, 3, 9, 10, 12, 15, 16, 18, 19, 20, 32], "combin": [0, 2, 12, 20, 26, 32], "result": [0, 1, 3, 9, 10, 11, 12, 14, 15, 16, 18, 20, 26, 32], "across": [0, 1], "dimens": [0, 16], "seventh": 0, "similar": [0, 26, 29], "princip": [0, 3, 16, 25, 26], "directli": [0, 2, 16, 20, 26], "primari": [0, 16], "brute_force_sp": [0, 15, 16], "brute_force_opt": [0, 15, 16], "cont_opt": [0, 15, 16], "submit": [0, 7, 8, 15, 16, 17, 26, 29, 30, 31], "relev": [0, 6, 10, 15, 16, 25, 26], "wait": [0, 1, 16, 29, 31], "termin": [0, 1, 7, 8, 15, 16, 17, 26, 29, 31], "its": [0, 1, 2, 3, 8, 10, 12, 13, 15, 16, 18, 19, 20, 25, 26, 31], "guess": [0, 1, 2, 8, 10, 12, 15, 16, 24, 30, 31], "next": [0, 15, 16], "three": [0, 8, 11, 16, 19, 20, 26], "_diagon": [0, 16], "secondari": [0, 16], "therefor": [0, 16, 20, 29], "brute_force_sp_diagon": [0, 15, 16], "brute_force_opt_diagon": [0, 15, 16], "cont_opt_diagon": [0, 15, 16], "increment": [0, 3, 15, 16, 18, 20], "togeth": [0, 3, 16], "pivot": [0, 1, 2, 10, 11, 12, 15, 16, 18, 19, 29, 32], "mix": [0, 16], "9": [0, 1, 2, 14, 16, 20], "them": [0, 1, 2, 3, 10, 15, 16, 26, 31], "indic": [0, 1, 2, 3, 8, 9, 10, 12, 15, 16, 17, 18, 19, 20], "index": [0, 1, 2, 3, 9, 10, 12, 15, 16, 18, 19, 20, 25, 29], "trigger": [0, 16, 26], "rotat": [0, 2, 3, 16, 19, 20], "torsion": [0, 1, 2, 3, 9, 10, 15, 16, 18, 19, 20, 25, 29], "within": [0, 1, 3, 7, 14, 16, 17, 20, 26], "second": [0, 1, 10, 16, 20], "identifi": [0, 1, 2, 3, 9, 16, 18, 26], "care": [0, 2, 16], "constrain": [0, 3, 16, 20], "directed_rotor": [0, 16], "spc1": [0, 8, 24], "label": [0, 1, 2, 3, 8, 10, 11, 12, 13, 14, 15, 16, 18, 19, 24, 29, 30, 31], "some_label": 0, "smile": [0, 12, 16, 24, 25, 30, 31, 32], "species_smil": 0, "conjug": 0, "here": [0, 1, 2, 3, 9, 10, 15, 16, 24, 26], "c4o2": 0, "o": [0, 3, 7, 15, 16, 24], "cccc": 0, "still": [0, 7, 17, 25, 26, 31], "incorpor": [0, 2], "partit": 0, "function": [0, 1, 2, 3, 6, 7, 8, 9, 10, 11, 12, 13, 15, 16, 17, 18, 20, 26, 30, 32], "affect": [0, 8], "part": [0, 2, 3, 20], "warn": [0, 2, 6, 7, 15, 16, 18, 29, 32], "arrai": [0, 1, 2, 3, 7, 10, 19], "been": [0, 2, 18, 20], "mani": [0, 2, 16, 25, 26], "individu": [0, 10, 20], "being": [0, 9, 15, 20, 26], "your": [0, 17, 25], "queue": [0, 7, 15, 16, 17, 18, 29], "system": [0, 3, 16, 26], "molpro": [0, 3, 9, 15, 16, 18, 24, 26, 30], "lennard": [0, 15, 16, 30], "jone": [0, 15, 16, 30], "transport": [0, 8, 10, 11, 16], "gromac": 0, "dynam": [0, 15, 26], "simul": 0, "find": [0, 1, 3, 8, 16, 17, 18, 20, 22, 25, 26, 32], "ess_set": [0, 1, 8, 14, 15, 24, 26, 30], "server1": [0, 24, 26], "server2": [0, 24, 26], "ha": [0, 1, 2, 3, 8, 9, 10, 12, 15, 16, 18, 19, 20, 25, 26, 29, 30, 31], "fairli": 0, "good": [0, 2, 18], "auto": [0, 12, 16, 26], "howev": [0, 18, 26, 31], "time": [0, 1, 2, 7, 8, 9, 12, 14, 15, 16, 17, 18, 26, 29, 30], "might": [0, 3, 18, 20, 26, 31, 32], "know": [0, 2, 7, 12, 17], "simpli": [0, 18, 24, 30, 31], "initial_trsh": 0, "trsh": [0, 4, 9, 10, 15, 16, 25], "stand": [0, 26, 32], "18": [0, 7, 26], "shift": [0, 15, 18], "0": [0, 1, 2, 3, 7, 8, 9, 10, 11, 12, 15, 16, 18, 19, 20, 21, 24, 26, 31], "geom_opt_max_cycl": 0, "250": 0, "copi": [0, 1, 2, 3, 6, 8, 12, 16, 17, 26, 27, 30], "when": [0, 1, 2, 3, 6, 7, 8, 12, 14, 15, 16, 17, 20, 26, 30], "same": [0, 1, 2, 3, 10, 12, 15, 16, 18, 19, 20, 24, 26, 30, 31], "attempt": [0, 8, 15, 16, 18, 20], "download": [0, 15, 17, 26, 29, 30], "checkfil": [0, 1, 8, 16, 18], "remot": [0, 8, 17, 18, 26, 29], "remain": [0, 11], "behaviour": 0, "keep": [0, 1, 2, 3, 8, 16, 20, 26], "keep_check": [0, 1, 8], "look": [0, 3, 6, 24, 26, 29, 31], "appropri": [0, 12, 15, 16, 26], "avail": [0, 2, 8, 14, 15, 17, 18, 22, 25, 26, 31, 32], "arkan": [0, 1, 6, 8, 9, 10, 11, 15, 16, 26, 29, 30], "isn": [0, 1, 2, 3, 9, 15, 24, 26], "truhlar": [0, 8, 14, 32], "involv": 0, "dataset": 0, "small": [0, 2], "known": [0, 1, 3, 6, 8], "freq_scale_factor": [0, 8, 11, 15, 24], "calc_freq_factor": [0, 8], "graph": [0, 1, 2, 8, 15, 16, 19, 20, 25], "i": [0, 2, 3, 12, 14, 15, 16, 20, 26, 32], "adjlist": [0, 16], "inchi": [0, 3, 16, 24, 25], "perceiv": [0, 2, 3, 10, 16], "3d": [0, 1, 2, 3, 8, 10, 15, 16, 19, 20, 31, 32], "further": [0, 26], "sometim": [0, 26], "percept": [0, 16, 32], "algorithm": [0, 1, 3, 16, 20], "doesn": [0, 2, 16], "work": [0, 3, 6, 8, 13, 15, 16, 22, 26], "expect": [0, 12, 25, 26, 29], "issu": [0, 3, 15, 18, 22, 25, 26, 31], "charg": [0, 1, 2, 3, 10, 12, 16, 27], "triplet": 0, "allow_nonisomorphic_2d": [0, 8, 15, 16], "restart": [0, 1, 6, 8, 12, 15, 16, 26, 29, 30, 31], "folder": [0, 1, 2, 7, 10, 11, 14, 15, 16, 18, 24, 25, 29, 30, 31, 32], "locat": [0, 2, 7, 10, 15, 17, 26, 29], "becom": [0, 29], "name": [0, 1, 6, 7, 8, 9, 10, 11, 14, 15, 17, 18, 26, 29, 30, 31, 32], "creat": [0, 3, 6, 8, 10, 12, 15, 16, 20, 25, 29, 31, 32], "behavior": 0, "desir": [0, 1, 2, 3, 13, 16, 19, 26], "project_directori": [0, 1, 3, 8, 10, 11, 15, 16], "exist": [0, 2, 3, 7, 8, 12, 15, 16, 17, 20], "parent": [0, 1, 3, 11], "necessari": [0, 26, 30, 32], "wai": [0, 3, 30, 31], "One": 0, "open": [0, 3, 22, 25, 26], "gaussview": [0, 24, 29], "high": [0, 10, 11, 12, 17, 25], "qualiti": [0, 15, 16, 18], "print_orbit": 0, "nbo": 0, "fcheck": 0, "default_levels_of_theori": 0, "iqmol": [0, 15], "post": [0, 15], "process": [0, 1, 2, 3, 8, 9, 10, 11, 12, 15, 16, 19, 20, 25, 26], "save": [0, 1, 2, 3, 8, 10, 14, 15, 16, 17, 20, 30], "imag": [0, 2, 10, 29, 32], "modul": [0, 1, 2, 3, 6, 7, 8, 9, 10, 11, 12, 13, 15, 16, 17, 18, 19, 20, 25], "enantiomer": 0, "mirror": [0, 2], "chiral": [0, 1, 2, 16], "tetrahedr": [0, 16], "carbon": [0, 2, 16], "invers": [0, 2, 16], "mode": [0, 2, 7, 8, 9, 11, 15, 16, 17, 29, 31], "nitrogen": [0, 2, 16, 19], "ci": [0, 16], "tran": [0, 16], "doubl": [0, 2, 16], "consider_all_diastereom": [0, 16], "flag": [0, 1, 10, 12, 16, 24, 30], "code": [0, 22, 25, 26], "caus": [0, 3, 15, 18, 20, 26, 31, 32], "r": [0, 2, 3, 7, 16, 20], "z": [0, 2, 3, 16, 20], "hypothet": 0, "spc1_xyz": 0, "cl": [0, 2], "47566594": 0, "36900082": 0, "86260264": 0, "34833561": 0, "76407680": 0, "29252133": 0, "46682130": 0, "58010226": 0, "70920153": 0, "81289268": 0, "14477878": 0, "61006147": 0, "90276866": 0, "07697610": 0, "80213588": 0, "09903967": 0, "08314581": 0, "61641835": 0, "64512811": 0, "43845470": 0, "53602810": 0, "65975628": 0, "45946534": 0, "67414755": 0, "h": [0, 2, 3, 8, 14, 16, 18, 20, 21, 23, 24, 25, 31], "89577875": 0, "19512286": 0, "56141944": 0, "97218270": 0, "93173379": 0, "74977707": 0, "30829197": 0, "62970434": 0, "46110152": 0, "36555034": 0, "38002993": 0, "74764205": 0, "51837776": 0, "46405162": 0, "01733990": 0, "93198350": 0, "01693209": 0, "75630452": 0, "57828825": 0, "63692499": 0, "43000638": 0, "60256180": 0, "33896163": 0, "32130952": 0, "25218225": 0, "98524107": 0, "80024046": 0, "91263085": 0, "50255031": 0, "85455686": 0, "18255121": 0, "26238957": 0, "24010821": 0, "lowest": [0, 2, 8, 10, 15, 16], "goal": 0, "cours": [0, 26, 31], "just": [0, 1, 2, 7, 8, 12, 20, 24, 26], "arbitrari": [0, 29, 30], "preserv": [0, 1, 2, 12, 16, 18, 26, 30], "global": [0, 13, 26], "select": [0, 7, 15, 16, 32], "dont_gen_conf": [0, 8, 15], "arc_demo_selective_conf": 0, "propanol": [0, 24], "propan": [0, 24], "ccc": [0, 24], "0000000": 0, "5863560": 0, "2624760": 0, "2596090": 0, "8743630": 0, "2380970": 0, "1562580": 0, "3624930": 0, "8805340": 0, "2981830": 0, "9010030": 0, "ccco": 0, "4392250": 0, "2137610": 0, "7359250": 0, "0958270": 0, "7679350": 0, "4668240": 0, "1155780": 0, "4886150": 0, "2983600": 0, "9711060": 0, "8557990": 0, "8788010": 0, "5245130": 0, "1136730": 0, "8740840": 0, "4095940": 0, "1667640": 0, "8815110": 0, "5267840": 0, "0696580": 0, "compar": [0, 1, 3, 10, 11, 16], "against": [0, 3, 11], "most": [0, 2, 3, 15, 20, 26], "stabl": [0, 2, 15, 26, 30], "rest": 0, "regardless": [0, 1, 2], "sourc": [0, 1, 2, 3, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 25, 26, 29], "other": [0, 1, 2, 3, 9, 15, 16, 18, 20, 22, 25, 26, 27, 29, 31], "hand": 0, "yaml": [0, 1, 8, 9, 10, 11, 12, 15, 16, 29, 30, 31, 32], "veri": [0, 16, 26, 31], "intuit": 0, "especi": 0, "without": [0, 8, 10, 12, 15, 16, 18, 20, 27, 32], "editor": 0, "dump": [0, 8, 12, 16], "read": [0, 1, 2, 3, 9, 16, 31], "common": [0, 3, 4, 18, 20, 24, 25], "save_yaml_fil": [0, 1], "input_dict": 0, "dict": [0, 1, 2, 3, 6, 8, 9, 10, 11, 12, 14, 15, 16, 18, 19, 20, 30], "demo_project_input_file_from_api": 0, "lennard_jon": 0, "NO": [0, 27], "adj1": 0, "multipl": [0, 1, 2, 3, 10, 12, 15, 16, 19, 24, 26, 30], "u0": 0, "p0": 0, "c0": 0, "u1": 0, "p2": [0, 12], "xyz2": [0, 1, 3], "35170118": [0, 24], "00275231": [0, 24], "48283333": [0, 24], "67437022": [0, 24], "01989281": [0, 24], "16029161": [0, 24], "62797113": [0, 24], "03193934": [0, 24], "15151370": [0, 24], "14812497": [0, 24], "95492850": [0, 24], "42742905": [0, 24], "27300665": [0, 24], "88397696": [0, 24], "14797321": [0, 24], "11582953": [0, 24], "94384729": [0, 24], "10134685": [0, 24], "49847909": [0, 24], "87864716": [0, 24], "21971764": [0, 24], "69134542": [0, 24], "01812252": [0, 24], "05076812": [0, 24], "64534929": [0, 24], "00412787": [0, 24], "04279617": [0, 24], "19713983": [0, 24], "90988817": [0, 24], "40350584": [0, 24], "28488154": [0, 24], "84437992": [0, 24], "22108130": [0, 24], "02953840": [0, 24], "95815005": [0, 24], "41011413": [0, 24], "spc2": [0, 8, 24], "vinoxi": [0, 24], "spc_list": 0, "spc": 0, "as_dict": [0, 6, 8, 12, 16], "yml": [0, 9, 15, 26, 29, 31], "content": [0, 1, 3, 7, 10, 16, 17, 18, 26], "e0": [0, 12, 15, 16], "null": 0, "arkane_fil": [0, 16], "bond_correct": [0, 16], "external_symmetri": [0, 16], "force_field": [0, 2, 16], "mmff94": [0, 2, 16], "generate_thermo": 0, "is_t": [0, 1, 3, 10, 16, 24], "long_thermo_descript": [0, 16], "p1": [0, 12], "neg_freqs_trsh": [0, 16, 18], "number_of_rotor": [0, 16], "optical_isom": [0, 16], "rotors_dict": [0, 15, 16], "t1": [0, 9, 16], "conformer_energi": [0, 10, 15, 16], "repres": [0, 1, 2, 3, 6, 8, 10, 11, 12, 14, 15, 16, 18, 20, 29], "label1": 0, "xyz1": [0, 1, 3], "accept": [0, 3, 15, 20, 25], "all_h": [0, 16], "ethanol": [0, 31], "includ": [0, 1, 2, 6, 8, 9, 12, 13, 15, 16, 18, 20, 24, 27, 29, 32], "ethanol_bd": 0, "cco": [0, 31], "20823797": 0, "43654321": 0, "79046266": 0, "38565457": 0, "37473766": 0, "03466399": 0, "94122817": 0, "32248828": 0, "24592109": 0, "89282946": 0, "53292877": 0, "99112072": 0, "23767951": 0, "34108205": 0, "45660206": 0, "79278514": 0, "30029213": 0, "71598886": 0, "43922693": 0, "50288055": 0, "71249177": 0, "60098471": 0, "27712988": 0, "87920708": 0, "04982343": 0, "03632579": 0, "90734524": 0, "ethanol_bdes_specific_geometri": 0, "successfulli": [0, 8, 15, 16], "fragment": [0, 3, 12, 16, 20], "report": [0, 3, 8, 10, 11, 15, 18, 30, 32], "log": [0, 1, 2, 7, 8, 9, 10, 11, 15, 16, 18, 29, 30], "design": [0, 17], "bde_report": [0, 10], "By": [0, 2, 3, 26], "thermochemistri": 0, "kinet": [0, 8, 10, 11, 12, 13, 15, 16, 25, 29, 30], "estim": [0, 1, 10, 11], "assist": [0, 1, 6, 26, 32], "human": [0, 6], "realiti": [0, 12], "pariti": [0, 8, 10, 29], "plot": [0, 2, 8, 10, 15, 16, 25, 29, 30], "though": [0, 26, 30], "except": [0, 12, 15], "encount": [0, 7], "sens": [0, 15], "deal": [0, 27], "cannot": [0, 1, 2, 3, 16, 17, 18, 19], "becaus": [0, 13], "presenc": 0, "circumst": 0, "load": [0, 11, 12, 13, 15, 16, 30], "compare_to_rmg": [0, 8, 11], "With": 0, "solvat": [0, 6], "none": [0, 1, 2, 3, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 20, 30], "place": 0, "solut": [0, 18], "caviti": 0, "reaction": [0, 4, 8, 10, 11, 13, 15, 16, 25, 29, 30, 31], "field": [0, 2, 6, 8, 15, 16, 32], "pcm": 0, "cpcm": 0, "dipol": [0, 9], "ipcm": 0, "scipcm": 0, "water": 0, "diethyleth": 0, "http": [0, 2, 6, 19, 20, 21, 26], "com": [0, 6, 7, 19, 21, 26], "scrf": [0, 6], "danger": 0, "zone": [0, 12, 16], "understand": [0, 32], "what": [0, 2, 7, 9, 17, 25, 26, 28, 32], "re": [0, 2, 3, 7, 15, 16, 17, 18, 24, 26, 30, 31], "script": [0, 7, 17, 25, 26, 30], "data": [0, 1, 2, 3, 8, 10, 11, 15, 16, 29, 32], "lost": 0, "activ": [0, 15, 16, 26, 30, 31], "arc_env": [0, 26], "python": [0, 1, 7, 25, 26, 31], "util": [0, 4, 25, 30, 31], "project1": 0, "altern": [0, 12, 15, 16], "long": [0, 15], "alwai": [0, 3], "shown": [0, 2, 3, 16], "full": [0, 1, 2, 3, 7, 8], "statu": [0, 7, 8, 15, 17, 18, 29, 30], "suppli": [0, 3, 10, 31], "id": [0, 1, 7, 12, 15, 16, 17, 18], "NOT": [0, 8, 27, 29], "j": [0, 3, 8, 13, 14, 15, 20, 26], "a_54836": 0, "statist": [0, 11], "mechan": [0, 2, 11], "packag": [0, 17], "comput": [0, 1, 8, 10, 11, 14, 15, 16, 20, 26], "chemic": [0, 2, 12, 16, 25, 30], "quantum": [0, 6], "statmech": [0, 3, 8, 11, 15, 16, 30], "program": [0, 8, 14], "k": [0, 8, 10, 11, 13, 29], "left": 0, "frac": 0, "t_0": 0, "right": [0, 27], "exp": 0, "e_a": 0, "rt": 0, "three_param": [0, 8, 11], "use_classical_arrhenius_eqn_for_rate_calc_demo": 0, "recomput": 0, "share": [1, 2], "As": 1, "specif": [1, 2, 3, 7, 8, 9, 10, 13, 15, 17, 18, 20, 25, 26, 29], "ones": [1, 2, 32], "us": [1, 2, 3, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 24, 25, 26, 27, 28, 29, 30, 32], "logger": [1, 2, 14], "circular": [1, 20], "semant": [1, 30], "almost_equal_coord": 1, "rtol": [1, 3], "float": [1, 2, 3, 6, 8, 9, 10, 11, 12, 13, 14, 15, 16, 18, 19, 20], "1e": 1, "05": 1, "atol": [1, 3], "08": [1, 7], "bool": [1, 2, 3, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 20], "helper": [1, 2, 3, 7, 8, 10, 11, 12, 13, 15, 16, 17, 20], "check": [1, 2, 3, 7, 8, 10, 11, 12, 15, 16, 17, 18, 20, 25, 26, 29, 30], "xyz": [1, 2, 3, 8, 9, 10, 12, 14, 15, 16, 19, 20, 24, 25, 29, 30], "almost": [1, 3, 20], "equal": [1, 2, 3, 20, 24], "symbol": [1, 2, 3, 7, 16, 17, 20], "cartesian": [1, 3, 9, 12, 16, 18, 20], "coordin": [1, 2, 3, 9, 10, 12, 15, 16, 18, 19, 20, 24, 25, 29, 32], "rel": [1, 2, 3, 15, 16, 18, 20], "toler": [1, 2, 3, 18, 20], "absolut": [1, 3, 16, 20], "return": [1, 2, 3, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 32], "thei": [1, 2, 3, 8, 12, 15, 16, 20, 26, 29, 30, 31], "almost_equal_coords_list": 1, "union": [1, 2, 3, 6, 7, 8, 9, 10, 12, 13, 14, 15, 16, 17, 18, 19, 20], "test": [1, 15, 16, 18, 20, 25, 30], "input": [1, 3, 8, 9, 13, 15, 16, 17, 18, 19, 24, 25, 26, 29, 30], "an": [1, 2, 3, 6, 7, 8, 9, 10, 11, 12, 13, 15, 16, 17, 18, 19, 20, 22, 24, 25, 26, 27, 28, 29, 30], "almost_equal_list": 1, "iter1": 1, "ndarrai": [1, 3, 9, 15, 16], "iter2": 1, "iter": [1, 2, 3, 6, 12, 16], "np": [1, 3, 9, 10], "calc_rmsd": 1, "x": [1, 3, 16, 20, 21], "y": [1, 3, 14], "root": [1, 3], "mean": [1, 2, 3, 12], "squar": [1, 3], "deviat": [1, 3], "matric": [1, 3, 20], "matrix": [1, 3, 16, 20], "rmsd": [1, 3], "score": [1, 3], "type": [1, 2, 3, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 24, 25, 26, 29, 30, 31], "check_ess_set": 1, "troubleshoot": [1, 8, 15, 16, 18, 25, 26, 30], "job": [1, 4, 6, 8, 9, 10, 11, 12, 15, 16, 24, 25, 26, 29, 30, 31], "ess": [1, 3, 6, 8, 9, 14, 15, 16, 18, 25, 26, 30], "set": [1, 2, 3, 6, 8, 12, 15, 16, 17, 19, 24, 25, 26, 30, 32], "updat": [1, 2, 3, 8, 15, 16, 18, 20, 25, 29, 30, 31], "check_that_all_entries_are_in_list": 1, "list_1": 1, "list_2": 1, "length": [1, 2, 3, 10, 12, 16, 18, 19, 20], "order": [1, 2, 3, 12, 13, 16, 19, 20, 26], "int": [1, 2, 3, 6, 7, 8, 9, 10, 11, 12, 15, 16, 17, 18, 19, 20], "anyth": 1, "check_torsion_chang": 1, "datafram": [1, 9], "index_1": 1, "str": [1, 2, 3, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20], "index_2": 1, "20": [1, 2, 7, 8, 26], "delta": 1, "larger": 1, "consist": [1, 2, 3, 7, 16, 18, 26, 30], "significantli": [1, 10], "pd": [1, 9], "conform": [1, 3, 4, 8, 9, 10, 15, 16, 18, 24, 25, 29, 30], "signific": 1, "pair": [1, 2, 3, 10, 19, 26], "tor": 1, "scan": [1, 2, 3, 7, 8, 9, 10, 15, 16, 18, 25, 26, 29, 30], "convert_list_index_0_to_1": 1, "_list": 1, "vice": 1, "versa": 1, "ensur": 1, "valueerror": [1, 8, 12, 16], "new": [1, 2, 3, 13, 15, 16, 18, 19, 20, 26, 30], "neg": [1, 15, 16, 18, 20], "convert_to_hour": 1, "time_str": 1, "walltim": [1, 18], "hh": 1, "mm": 1, "ss": 1, "hour": [1, 8, 15, 18, 26], "delete_check_fil": 1, "delet": [1, 7, 8, 10, 11, 15, 17, 25], "usual": [1, 3, 15, 26], "lot": 1, "space": [1, 2, 3, 10, 16, 18, 19, 20], "need": [1, 8, 13, 15, 16, 18, 20, 26], "file": [1, 2, 3, 6, 7, 8, 9, 10, 11, 12, 14, 15, 16, 17, 18, 24, 25, 26, 27, 29, 30, 32], "project": [1, 3, 8, 10, 11, 15, 16, 24, 25, 26, 29, 30, 31, 32], "determine_ess": 1, "log_fil": [1, 18], "belong": [1, 9, 16], "determine_symmetri": [1, 16], "extern": [1, 16, 25, 26], "symmetri": [1, 2, 3, 8, 16, 18, 25, 30], "optic": [1, 16, 25], "isom": [1, 16, 25], "speci": [1, 4, 8, 9, 10, 11, 12, 14, 15, 18, 24, 25, 29, 30, 31, 32], "center": [1, 2, 3, 16, 32], "present": [1, 15, 16, 20, 29], "determine_top_group_indic": 1, "atom1": [1, 2, 20], "atom2": [1, 2], "top": [1, 2, 3, 10, 16, 18], "group": [1, 2, 3, 16, 19, 20, 23, 27], "connect": [1, 2, 3, 12, 16, 17, 19, 20, 27, 30, 31], "exclud": [1, 2], "atom_list_to_explor": 1, "loop": [1, 13], "through": [1, 2, 8, 12, 13, 16, 26], "t": [1, 2, 3, 7, 8, 9, 12, 15, 16, 17, 18, 20, 24, 25, 26, 29, 30], "explor": 1, "convent": [1, 26], "df": 1, "start": [1, 2, 3, 7, 15, 17, 19, 32], "sort_result": 1, "depth": 1, "search": [1, 2, 6, 8, 9, 12, 15, 16, 17, 25, 32], "travers": 1, "instanc": [1, 3, 6, 8, 12, 13, 14, 15, 16, 17, 26], "sort": [1, 2, 3, 12, 16], "visit": 1, "estimate_orca_mem_cpu_requir": 1, "num_heavy_atom": [1, 18], "consider_server_limit": 1, "memori": [1, 7, 8, 15, 18, 25, 26, 30], "cpu": [1, 15, 18, 26, 30], "give": [1, 3, 10, 12, 17, 29], "realist": 1, "mb": 1, "core": [1, 15, 16, 18, 25, 26], "extremum_list": 1, "lst": 1, "return_min": 1, "extremum": 1, "minimum": [1, 3, 8, 10, 11, 15, 16, 18], "default": [1, 2, 3, 7, 8, 9, 10, 11, 12, 13, 15, 16, 18, 19, 20, 24, 25, 26, 30], "minim": [1, 6, 26], "from_yaml": 1, "yaml_str": 1, "decod": 1, "param": [1, 20], "generate_resonance_structur": 1, "object_": 1, "keep_isomorph": 1, "filter_structur": [1, 3], "save_ord": [1, 12, 13], "safe": 1, "gener": [1, 2, 3, 8, 9, 10, 11, 12, 14, 15, 16, 18, 20, 24, 25, 30, 31, 32], "reson": [1, 2, 3, 16, 30], "structur": [1, 2, 3, 9, 10, 15, 16, 18, 25, 26, 29, 30], "rmg": [1, 2, 3, 8, 10, 11, 12, 13, 15, 16, 20, 25, 26, 28, 29, 30], "isomorph": [1, 3, 8, 15, 16, 18, 25, 30], "filter": [1, 3, 10], "store": [1, 3, 10, 12, 16], "get_angle_in_180_rang": 1, "angl": [1, 2, 3, 9, 10, 15, 16, 18, 19, 20], "round_to": 1, "get": [1, 2, 3, 6, 9, 10, 12, 13, 15, 16, 17, 18, 19, 20, 26], "180": [1, 2, 20], "decim": 1, "figur": [1, 10, 18], "round": [1, 3], "get_atom_radiu": 1, "coval": [1, 16], "radiu": [1, 3, 16], "angstrom": [1, 3, 9, 16], "typeerror": [1, 2, 3, 10, 16, 19, 20], "wrong": [1, 2, 3, 10, 15, 16, 19, 20], "found": [1, 6, 8, 9, 12, 13, 15, 16, 18, 26, 29], "get_bonds_from_dmat": 1, "dmat": 1, "element": [1, 2, 3, 12, 16, 30], "bond_lone_hydrogen": 1, "distanc": [1, 2, 3, 12, 16, 18, 19, 20, 28, 32], "represent": [1, 2, 3, 6, 8, 10, 12, 14, 15, 16, 17, 19, 20, 25, 30, 32], "nxn": 1, "formal": [1, 16], "factor": [1, 3, 8, 9, 11, 14, 15, 25, 30], "bond": [1, 2, 3, 8, 10, 11, 12, 16, 20, 25], "multipli": 1, "assign": [1, 3, 6, 12, 13, 15, 16, 18, 20, 26], "were": [1, 2, 3, 10, 11, 13, 15, 16, 18, 20, 26, 29], "closest": [1, 32], "consid": [1, 2, 3, 6, 8, 10, 12, 15, 16, 18, 20, 25, 29, 30, 31], "get_close_tupl": 1, "key_1": 1, "raise_error": [1, 6, 9, 12], "close": [1, 16, 17], "even": [1, 8, 15, 26, 30], "item": 1, "match": [1, 3, 6, 9, 12, 13, 30], "wasn": [1, 15], "get_extremum_index": 1, "skip_valu": 1, "skip": [1, 8, 11, 15, 20, 30], "extermum": 1, "get_git_branch": 1, "git": [1, 26, 30], "branch": [1, 26], "get_git_commit": 1, "recent": [1, 16, 26], "commit": [1, 26], "empti": [1, 3, 16], "hash": 1, "date": [1, 24, 26, 29], "head": [1, 9, 26, 30], "get_logg": 1, "get_number_with_ordinal_ind": 1, "ordin": 1, "get_ordered_intersection_of_two_list": 1, "l1": 1, "l2": 1, "order_by_first_list": 1, "return_uniqu": 1, "intersect": 1, "appear": 1, "get_ordinal_ind": 1, "get_single_bond_length": 1, "symbol_1": [1, 2], "symbol_2": [1, 2], "charge_1": 1, "charge_2": 1, "approxim": 1, "partial": [1, 3, 15, 26, 30], "globalize_path": 1, "rebas": 1, "machin": [1, 7, 26], "directori": [1, 3, 7, 8, 10, 11, 15, 16, 17, 25, 26, 29], "upon": 1, "file_path": [1, 7, 9], "initialize_job_typ": 1, "miss": [1, 3, 26], "boolean": [1, 8, 15, 16, 18], "execut": [1, 7, 8, 14, 15, 16, 17, 24, 25, 26, 29, 31, 32], "legal": [1, 8, 16, 31], "initialize_log": [1, 2], "verbos": [1, 2, 3, 8, 16], "specifi": [1, 2, 3, 6, 7, 10, 16, 17, 18, 20, 24, 25, 26, 30, 31, 32], "text": [1, 2, 10, 21], "seen": [1, 2], "is_angle_linear": 1, "is_notebook": 1, "ipython": [1, 24, 26, 30, 31, 32], "notebook": [1, 24, 26, 30, 31, 32], "is_same_pivot": 1, "torsion1": 1, "torsion2": 1, "four": [1, 2, 3, 15, 16, 18, 20], "is_same_sequence_sublist": 1, "child_list": 1, "parent_list": 1, "sublist": 1, "ident": [1, 3, 12, 20], "child": 1, "sequenc": 1, "rubric": 1, "pattern": [1, 9], "is_str_float": 1, "is_str_int": 1, "is_xyz_mol_match": 1, "rmgpy": [1, 3], "_scissor": 1, "cut": [1, 16], "product": [1, 12, 15], "molecular": [1, 2, 3, 8, 10, 15, 16, 25, 30], "formula": 1, "key_by_v": 1, "certain": [1, 19], "unic": 1, "log_foot": 1, "execution_tim": [1, 8, 16], "level": [1, 3, 4, 8, 10, 11, 14, 15, 16, 17, 18, 24, 25, 29, 30, 32], "footer": 1, "log_head": 1, "header": 1, "inform": [1, 2, 3, 9, 12, 15, 16, 20, 29], "about": [1, 2, 26, 30], "read_yaml_fil": 1, "variabl": [1, 2, 3, 10, 20, 26], "rmg_mol_from_dict_repr": 1, "rmg_mol_to_dict_repr": 1, "reset_atom_id": [1, 12, 16], "reset": [1, 12, 16, 26], "duplic": [1, 12, 15, 16, 18, 22], "dure": [1, 9, 15, 28, 30], "determinist": [1, 2], "safe_copy_fil": 1, "destin": 1, "10": [1, 2, 7, 8, 10, 14, 15, 16, 20, 21], "max_cycl": 1, "cycl": 1, "sort_atoms_in_descending_label_ord": 1, "reassign": [1, 20], "32": 1, "7": [1, 2, 16, 25, 26], "sort_two_lists_by_the_first": 1, "list1": 1, "list2": 1, "increas": [1, 15, 18, 20, 26], "ignor": [1, 20], "written": [1, 7, 14, 25], "pyton": 1, "zip": 1, "style": [1, 3, 10, 25], "accommod": 1, "error": [1, 6, 7, 8, 9, 12, 15, 16, 17, 18, 20, 29, 30], "string_represent": 1, "dumper": 1, "custom": 1, "liter": 1, "sum_list_entri": 1, "sum": 1, "time_laps": 1, "t0": [1, 8, 16], "elaps": 1, "pyi": 1, "count": [1, 2, 16], "timedelta_from_str": 1, "datetim": [1, 7, 16], "timedelta": [1, 16], "to_yaml": 1, "py_cont": 1, "torsions_to_scan": 1, "descriptor": [1, 16, 20], "we": [1, 2, 3, 15, 16, 18, 22, 24, 25, 26], "non": [2, 3, 8, 15, 16, 18, 20, 24, 25, 26, 32], "boat": 2, "chair": 2, "en": 2, "wikipedia": 2, "org": [2, 20], "wiki": 2, "cyclohexane_conform": 2, "energi": [2, 3, 6, 8, 9, 10, 11, 14, 15, 16, 18, 25, 30], "account": [2, 16], "secretari": 2, "problem": [2, 16], "stochast": 2, "confirm": [2, 16], "bottleneck": 2, "ff": [2, 10, 16], "torsion_dihedr": 2, "workflow": 2, "generate_conform": [2, 16], "generate_force_field_conform": 2, "get_force_field_energi": 2, "rdkit_force_field": 2, "openbabel_force_field_on_rdkit_conform": 2, "determine_dihedr": 2, "deduce_new_conform": 2, "get_torsion_angl": 2, "determine_torsion_symmetri": 2, "determine_torsion_sampling_point": 2, "change_dihedrals_and_force_field_it": 2, "get_lowest_conf": 2, "add_missing_symmetric_torsion_valu": 2, "top1": 2, "mol_list": [2, 3, 16], "torsion_scan": 2, "rotor": [2, 8, 10, 11, 12, 15, 16, 18, 24, 25, 29, 30], "effici": [2, 3], "side": [2, 12, 26], "modifi": [2, 3, 7, 8, 11, 15, 16, 25, 26, 27], "symmetr": [2, 16], "new_dihedr": 2, "optim": [2, 3, 8, 9, 10, 12, 14, 15, 16, 18, 20, 25, 30], "accord": [2, 3, 10, 12, 15, 16, 26], "90": [2, 8, 10, 30], "120": [2, 3, 16, 20, 26, 30], "300": 2, "270": 2, "calcul": [2, 6, 8, 9, 10, 11, 12, 14, 15, 16, 19, 21, 29, 30, 32], "origin": [2, 3, 7, 9, 15, 16, 18, 20, 26], "accordingli": [2, 26], "newli": [2, 3, 15, 26], "kept": 2, "cheat_sheet": 2, "cheat": 2, "sheet": 2, "correct": [2, 3, 6, 8, 11, 16, 25, 30], "li": 2, "check_special_non_rotor_cas": 2, "top2": 2, "special": [2, 18], "ch": 2, "cyano": 2, "azid": 2, "inc": 2, "inde": [2, 15, 18], "chirality_dict_to_tupl": 2, "chirality_dict": 2, "enantiomers_dict": 2, "conformererror": 2, "conformers_combinations_by_lowest_conform": 2, "base_xyz": 2, "multiple_tor": 2, "multiple_sampling_point": 2, "len_conform": 2, "max_combination_iter": 2, "25": [2, 3], "torsion_angl": [2, 10], "multiple_sampling_points_dict": 2, "wells_dict": [2, 10], "de_threshold": [2, 10], "plot_path": [2, 10, 16], "until": 2, "sampl": [2, 3, 10, 24, 31], "max": [2, 9, 16, 18, 30], "num": 2, "sigma": [2, 3], "smeared_scan_r": 2, "combination_threshold": 2, "1000": [2, 29], "diastereom": [2, 16, 25], "don": [2, 8, 15, 16, 25, 26, 30], "collid": [2, 16], "smear": 2, "determine_chir": 2, "cahn": 2, "ingold": 2, "prelog": 2, "cip": 2, "rdkit": [2, 3, 16], "rdmol": [2, 3], "overrid": [2, 26], "nr": 2, "ns": 2, "determine_number_of_conformers_to_gener": 2, "heavy_atom": [2, 15], "torsion_num": 2, "minimalist": 2, "potenti": [2, 16], "fit": [2, 16, 25, 27], "determine_rotor": [2, 16], "hinder": [2, 16], "local": [2, 4, 8, 16, 17, 24, 25, 26, 29, 30], "determine_smallest_atom_index_in_scan": 2, "smallest": 2, "whose": [2, 3, 20], "neighbor": [2, 3, 19, 20], "how": [2, 24, 25, 30], "start_idx": [2, 10], "end_idx": [2, 10], "start_angl": [2, 10], "end_angl": [2, 10], "attach": [2, 10], "actual": [2, 3, 8, 10, 16, 18, 29, 31, 32], "plan": [2, 22, 26], "determine_well_width_toler": 2, "mean_width": 2, "width": [2, 10], "nearli": 2, "polynomi": [2, 29], "trend": 2, "100": [2, 30], "11": [2, 7], "13": [2, 3], "50": [2, 7, 8, 10, 11], "59": [2, 30], "embed_rdkit": 2, "num_conf": 2, "unoptim": 2, "random": 2, "embed": [2, 16], "find_internal_rotor": [2, 16], "everi": [2, 26], "generate_all_combin": 2, "Will": 2, "generate_conformer_combin": 2, "hypothetical_num_comb": 2, "collis": [2, 16], "num_confs_to_gener": 2, "n_conf": [2, 8, 15, 16], "e_conf": [2, 8, 15, 16], "return_all_conform": 2, "print_log": 2, "taken": [2, 3, 7, 10, 15, 26], "uff": [2, 16], "gaff": [2, 16], "tru": 2, "print": [2, 3, 8, 10, 14, 15, 26], "stdout": [2, 7, 17], "outsid": 2, "someth": [2, 24], "goe": 2, "generate_diatomic_conform": 2, "diatom": [2, 16], "cccbdb": 2, "openbabel": 2, "net": [2, 3, 12, 16], "spin": [2, 3, 12, 15, 16], "generate_monoatomic_conform": 2, "monoatom": [2, 16], "try_uff": 2, "try_ob": 2, "suppress_warn": 2, "fail": [2, 8, 15, 17, 18, 20, 26, 30], "suppress": 2, "conf": [2, 3], "get_lowest_diastereom": 2, "enantiom": 2, "invert": 2, "form": [2, 10, 12, 16, 20, 21, 24, 25], "diastereomer": 2, "get_number_of_chiral_cent": 2, "just_get_the_numb": 2, "site": [2, 12, 16], "get_top_element_count": 2, "isotop": [2, 3, 18, 20], "extract": [2, 10], "get_wel": 2, "blank": [2, 16], "distinct": [2, 3], "identify_chiral_nitrogen_cent": 2, "umbrella": 2, "analyz": 2, "simpl": [2, 6, 14, 15, 25, 26, 31], "inverse_chirality_symbol": 2, "charact": [2, 16], "recogn": [2, 3, 17], "mix_rdkit_and_openbabel_force_field": 2, "ghemic": 2, "enough": [2, 3], "openbabel_force_field": 2, "divers": 2, "descript": [2, 8, 10, 11, 12, 16, 18], "dev": 2, "api": [2, 8, 24, 25, 26, 29, 30], "group__conform": 2, "shtml": 2, "rd_mol": [2, 3], "fallback": 2, "prune_enantiomers_dict": 2, "screen": [2, 16], "out": [2, 7, 9, 15, 16, 18, 19, 27, 29, 30], "leav": 2, "remov": [2, 3, 9, 10, 11, 12, 16, 18, 20, 30], "exact": 2, "prune": [2, 18], "editablemol": 2, "www": 2, "doc": 2, "chem": [2, 14, 29], "rdforcefieldhelp": 2, "html": 2, "uffoptimizemoleculeconf": 2, "read_rdkit_embedded_conformer_i": 2, "rd_index_map": 2, "map": [2, 3, 10, 12, 20, 32], "reorder": [2, 3, 30], "read_rdkit_embedded_conform": 2, "replace_n_with_c_in_mol": 2, "chiral_nitrogen_cent": 2, "replac": [2, 31], "pre": [2, 31], "lone": [2, 3, 19], "electron": [2, 3, 8, 9, 10, 12, 15, 16, 18, 19, 25, 26], "halogen": 2, "radic": [2, 3, 16], "insert": 2, "replace_n_with_c_in_xyz": 2, "elements_to_insert": 2, "f": [2, 16, 26], "to_group": 2, "atom_indic": 2, "translate_group": 2, "anchor": [2, 19], "vector": [2, 3, 4, 25], "translat": [2, 3, 19, 20], "toward": [2, 19], "onward": 2, "constant": [2, 16], "around": [2, 19], "ring": [2, 3], "exchang": 2, "exactli": [2, 15, 32], "dummi": [2, 3, 20], "update_mol": 2, "convers": [3, 15, 20], "add_lone_pairs_by_atom_val": 3, "carben": 3, "nitren": 3, "add_rads_by_atom_val": 3, "assumpt": 3, "problemat": [3, 15, 18, 30], "aromat": [3, 16], "undefin": [3, 20], "check_isomorph": 3, "mol1": 3, "mol2": 3, "convert_to_single_bond": 3, "Then": [3, 15, 31], "isisomorph": 3, "appli": [3, 7, 15, 16, 17, 18], "filtrat": 3, "comparison": [3, 8, 12, 15, 16, 25], "check_xyz_dict": 3, "enter": 3, "xyz_dict": 3, "xyz_from_data": 3, "convertererror": 3, "coord": [3, 19, 20], "check_zmat_dict": 3, "zmat": [3, 4, 16, 25], "trivial": [3, 12], "var": [3, 20], "cluster_confs_by_rmsd": 3, "rmsd_threshold": 3, "01": 3, "cluster": [3, 7, 9, 10, 15, 16, 25], "pool": 3, "suitabl": 3, "scenario": 3, "Not": [3, 6, 15], "saddl": 3, "larg": 3, "rmse": 3, "realli": [3, 16], "compare_conf": 3, "rmsd_score": 3, "ab": 3, "compare_zmat": 3, "z1": 3, "z2": 3, "r_tol": 3, "a_tol": 3, "d_tol": 3, "symmetric_tors": 3, "done": [3, 7, 15, 16, 17, 18, 20, 26], "readili": 3, "better": 3, "robust": [3, 30], "reason": [3, 10, 12, 15, 16, 18, 30], "displace_xyz": 3, "displac": [3, 8, 9, 11, 15, 18], "amplitud": 3, "use_weight": 3, "mass": [3, 12, 32], "weight": 3, "scale": [3, 4, 8, 9, 11, 15, 25, 30], "s4d": 3, "get_center_of_mass": 3, "standardize_xyz_str": 3, "precis": 3, "get_element_mass_from_xyz": 3, "amu": 3, "get_most_common_isotope_for_el": 3, "element_symbol": 3, "get_xyz_radiu": 3, "largest": [3, 16, 18], "get_zmat_param_valu": 3, "similarli": 3, "modify_coord": [3, 20], "get_zmat_str_var_valu": 3, "zmat_str": 3, "hartree_to_si": 3, "kilo": 3, "hartre": 3, "ics_to_scan_constraint": 3, "ic": [3, 9], "softwar": [3, 6, 7, 8, 9, 10, 11, 15, 18, 25, 27], "info": [3, 6, 8, 9, 10, 15, 16, 29, 30], "new_valu": 3, "modification_typ": 3, "prefer": [3, 26], "back": 3, "again": [3, 26], "modif": [3, 16, 26, 30], "fold": 3, "unfold": 3, "1st": [3, 20], "mandatori": [3, 26], "vdw": [3, 16, 20], "reflect": [3, 26], "molecules_from_xyz": 3, "molgraph": 3, "perceive_smil": 3, "order_atom": 3, "ref_mol": 3, "refer": [3, 14, 20], "sanitizationerror": 3, "order_atoms_in_mol_list": 3, "success": [3, 10, 16, 18], "pybel_to_inchi": 3, "pybel_mol": 3, "has_h": 3, "babel": 3, "obmol": 3, "rdkit_conf_from_mol": 3, "relocate_zmat_dummy_atoms_to_the_end": 3, "zmat_map": 3, "reloc": 3, "remove_dummi": 3, "w": [3, 7, 15, 16, 21], "rmg_conformer_to_xyz": 3, "properti": [3, 8, 11, 12, 16, 25, 30], "rmg_mol_from_inchi": 3, "s_bonds_mol_from_xyz": 3, "connect_the_dot": 3, "set_multipl": 3, "radical_map": 3, "ll": [3, 26], "specieserror": [3, 16], "infer": 3, "set_radicals_by_map": 3, "set_rdkit_dihedr": 3, "deg_incr": [3, 16], "deg_ab": [3, 16], "sort_xyz_using_indic": 3, "species_to_sdf_fil": 3, "write": [3, 7, 11, 16, 17, 25, 26], "sdf": 3, "split_str_zmat": 3, "split": [3, 16, 20], "section": [3, 26], "els": [3, 7, 16], "xyz_str": 3, "isotope_format": 3, "abund": 3, "standard": [3, 7, 8, 14, 18, 30], "str_to_xyz": 3, "pars": [3, 7, 9, 15, 16, 18, 30], "iso": 3, "6616514836": 3, "4027481525": 3, "4847382281": 3, "6039793084": 3, "6637270105": 3, "0671637135": 3, "4226865648": 3, "4973210697": 3, "2238712255": 3, "4993010635": 3, "6531020442": 3, "0853092315": 3, "2115796924": 3, "4529256762": 3, "4144516252": 3, "8113671395": 3, "3268900681": 3, "1468957003": 3, "str_to_zmat": 3, "typic": [3, 26], "r1": [3, 12], "d1": 3, "d2": 3, "109": [3, 30], "4712": 3, "0000": 3, "240": [3, 20], "0912": 3, "r_1_0": [3, 20], "r_2_1": 3, "a_2_1_0": 3, "r_3_2": 3, "a_3_2_0": 3, "d_3_2_0_1": [3, 20], "r_4_3": 3, "a_4_3_0": 3, "d_4_3_0_2": [3, 20], "782": 3, "35": [3, 20], "2644": 3, "to_rdkit_mol": 3, "remove_h": 3, "sanit": 3, "adopt": [3, 31], "translate_to_center_of_mass": 3, "translate_xyz": 3, "update_molecul": 3, "to_single_bond": 3, "xyz_file_format_to_xyz": 3, "xyz_fil": 3, "raw": 3, "nuclear": 3, "xyz_to_as": 3, "ASE": [3, 19], "xyz_to_coords_and_element_numb": 3, "xyz_to_coords_list": 3, "mutabl": 3, "xyz_to_dmat": 3, "xyz_to_kinbot_list": 3, "kinbot": [3, 26], "symbol0": 3, "x0": 3, "y0": 3, "z0": 3, "symbol1": 3, "x1": 3, "y1": 3, "xyz_to_np_arrai": 3, "numpi": 3, "xyz_to_pybel_mol": 3, "xyz_to_rmg_conform": 3, "xyz_to_str": 3, "xyz_to_turbomol_format": 3, "unpair": 3, "turbomol": 3, "eht": 3, "xyz_to_x_y_z": 3, "xyz_to_xyz_file_format": 3, "comment": [3, 10, 15, 25], "2nd": [3, 20], "zmat_from_xyz": 3, "consolid": [3, 20], "consolidation_tol": [3, 20], "r_atom": [3, 20], "r_group": [3, 20], "a_atom": [3, 20], "a_group": [3, 20], "d_atom": [3, 20], "d_group": [3, 20], "matter": [3, 20], "_atom": [3, 20], "last": [3, 7, 15, 16, 20], "_group": [3, 20], "zmat_to_str": 3, "zmat_format": 3, "vari": 3, "cfour": 3, "psi4": [3, 26], "zmat_to_xyz": 3, "keep_dummi": [3, 20], "xyz_isotop": 3, "main": [4, 15, 24, 25, 26, 30, 31], "schedul": [4, 8, 11, 16, 25, 26, 30], "ssh": [4, 25], "parser": [4, 25], "plotter": [4, 25, 32], "processor": [4, 16, 25, 30], "rmgdb": [4, 12, 25, 30], "theori": [6, 8, 10, 11, 14, 15, 16, 18, 24, 25, 29, 30, 32], "repr": 6, "method_typ": 6, "compatible_ess": 6, "solvent": [6, 25], "leveloftheori": [6, 8], "correl": 6, "dft": [6, 15, 16, 24, 25], "wavefunct": 6, "provid": [6, 8, 10, 11, 12, 18, 26, 27, 30], "compat": [6, 30], "reconstruct": 6, "build": 6, "deduce_method_typ": 6, "deduce_softwar": 6, "determine_compatible_ess": 6, "lower": [6, 8, 10, 15, 20], "lowercas": 6, "readabl": [6, 9], "to_arkane_level_of_theori": 6, "variant": 6, "bac_typ": [6, 8, 11], "queri": 6, "aec": [6, 8], "bec": 6, "bac": [6, 8, 11, 16], "m": [6, 8, 11, 14, 20, 21], "get_params_from_arkane_level_of_theory_as_str": 6, "arkane_level": 6, "transit": [7, 16, 25, 30], "subprocess": 7, "change_mod": [7, 17], "file_nam": [7, 17], "recurs": [7, 17], "octal": [7, 17], "command": [7, 17, 26, 31], "check_job_statu": [7, 17], "job_id": [7, 17, 18], "before_submiss": [7, 17], "xx": [7, 17], "og": [7, 26], "540420": 7, "45326": 7, "xq1340b": 7, "user_nam": 7, "26": [7, 20], "2018": [7, 27], "long1": 7, "node18": 7, "slurm": [7, 26, 30], "14428": 7, "debug": 7, "xq1371m2": 7, "04": [7, 26], "46": 7, "node06": 7, "pb": [7, 26], "zeldo": 7, "dow": 7, "req": 7, "elap": 7, "usernam": [7, 17, 26], "jobnam": 7, "sessid": 7, "nd": [7, 9, 15, 16, 18, 19, 25], "tsk": 7, "2016614": 7, "u780444": 7, "workq": 7, "75380": 7, "730": 7, "00": 7, "2016616": 7, "htcondor": [7, 26], "condor_q": 7, "3261": 7, "28161": 7, "a2719": 7, "56": 7, "3263": 7, "a2721": 7, "23": 7, "3268": 7, "a2726": 7, "3269": 7, "a2727": 7, "17": 7, "3270": 7, "a2728": 7, "check_running_jobs_id": [7, 17], "delete_all_local_arc_job": 7, "digit": [7, 17], "unrel": [7, 17], "won": [7, 15, 16, 17], "ghost": [7, 17], "delete_job": [7, 17], "execute_command": 7, "shell": [7, 26], "no_fail": 7, "situat": [7, 26], "send": [7, 17], "bash": 7, "bin": 7, "sh": 7, "stream": 7, "get_last_modified_tim": 7, "file_path_1": 7, "file_path_2": 7, "parse_running_jobs_id": 7, "cluster_soft": [7, 26], "rename_output": 7, "local_file_path": [7, 17], "renam": [7, 14, 29], "submit_job": [7, 17], "submit_cmd": 7, "submit_filenam": [7, 26], "filenam": [7, 10], "job_statu": [7, 18], "write_fil": 7, "file_str": [7, 17], "arcdemo": 8, "spc0": 8, "arkane_level_of_theori": 8, "bath_ga": [8, 15, 16], "compute_r": [8, 11], "compute_thermo": [8, 11, 16], "compute_transport": [8, 11], "kinetics_adapt": [8, 11, 15], "max_job_tim": [8, 15, 24], "output_multi_spc": [8, 15], "arcreact": [8, 10, 11, 12, 13, 15, 16, 31], "running_job": [8, 15], "t_min": [8, 10, 11], "t_max": [8, 10, 11], "t_count": [8, 10, 11], "thermo_adapt": [8, 11], "trsh_ess_job": [8, 15, 18], "ts_adapt": [8, 15], "report_e_elect": [8, 15], "skip_nmd": [8, 11, 15], "f12a": 8, "3df": 8, "3pd": 8, "notic": [8, 27], "slash": 8, "zindo": 8, "mp2": 8, "frequenc": [8, 9, 10, 11, 14, 15, 16, 18, 24, 25, 29, 30], "orbit": [8, 15, 16, 19, 25, 30], "petersson": [8, 11], "meliu": [8, 11], "temperatur": [8, 10, 11], "500": [8, 10, 11], "3000": [8, 10, 11], "fraction": [8, 15], "alloc": [8, 15, 25, 26], "bath": [8, 15, 16, 32], "ga": [8, 15, 16, 32], "calc": [8, 15, 16, 29], "l": [8, 14, 15], "he": [8, 15], "ne": [8, 15], "kr": [8, 15], "h2": [8, 15], "n2": [8, 15], "o2": [8, 15], "sub": [8, 16], "adapt": [8, 14, 15, 25, 30], "regular": [8, 9, 19], "harmon": [8, 11, 14, 15, 25], "databas": [8, 11, 13, 15, 25, 30], "thermodynam": [8, 11, 13, 16, 25, 30], "rate": [8, 10, 11, 12, 15, 21, 29, 30], "coeffici": [8, 10, 11, 12, 15, 25, 29, 30], "arrheniu": [8, 11, 12, 25], "equat": [8, 11, 25], "classic": [8, 11, 25], "qm": [8, 15, 16], "multi": [8, 10, 15, 16], "preciou": 8, "normal": [8, 9, 11, 15, 16, 19], "lib_long_desc": [8, 10, 11], "librari": [8, 10, 11, 12, 13, 16, 29], "rmg_databas": [8, 11, 12, 15], "rmgdatabas": [8, 11, 12, 13, 15], "fine_onli": [8, 15], "self": [8, 12, 15, 16, 17, 30], "fine": [8, 15, 18, 24, 25, 26, 30], "add_hydrogen_for_bd": 8, "bde": [8, 10, 11, 16, 25], "backup_restart": 8, "backup": [8, 26], "check_arkane_level_of_theori": 8, "check_freq_scaling_factor": 8, "check_project_nam": 8, "delete_leftov": 8, "leftov": 8, "determine_ess_set": 8, "diagnost": [8, 16, 25, 26], "determine_unique_species_label": 8, "process_level_of_theori": 8, "save_project_info_fil": 8, "set_levels_of_theori": 8, "standardize_output_path": 8, "summari": 8, "write_input_fil": 8, "statmechenum": 8, "finit": 8, "process_adaptive_level": 8, "identify_ess": 9, "parse_1d_scan_coord": 9, "parse_1d_scan_energi": 9, "initial_angl": 9, "parse_dipole_mo": 9, "moment": 9, "deby": 9, "parse_e_elect": 9, "zpe_scale_factor": 9, "zpe": [9, 14, 15, 16, 30], "parse_frequ": 9, "cm": 9, "parse_geometri": 9, "parse_ic_info": 9, "intermedi": [9, 18], "notimplementederror": 9, "parse_ic_valu": 9, "ic_block": 9, "parse_nd_scan_energi": 9, "return_original_dihedr": 9, "directed_scan_typ": [9, 10, 15, 16], "fig": [9, 10], "directed_scan": [9, 10, 16], "2f": [9, 10], "is_isomorph": [9, 10, 16], "ess_trsh_method": [9, 10, 15, 18], "parse_normal_mode_displac": 9, "parse_polariz": 9, "polariz": 9, "parse_scan_arg": 9, "frozen": [9, 18], "step": [9, 15, 26], "freez": [9, 15, 18], "step_siz": 9, "n_atom": 9, "parse_scan_conform": 9, "tabul": 9, "redund": [9, 11], "parse_str_block": 9, "head_pat": 9, "tail_pat": 9, "regex": 9, "tail_count": 9, "block_count": 9, "tail": 9, "express": [9, 27], "expres": 9, "repeat": [9, 19, 26], "parse_t1": 9, "coupl": [9, 26], "parse_trajectori": 9, "trajectori": [9, 10, 18], "parsererror": 9, "parse_xyz_from_fil": 9, "gjf": [9, 10, 24, 29], "parse_zp": 9, "zero": [9, 14], "process_conformers_fil": 9, "conformers_path": 9, "tss": [9, 12, 15, 16, 29], "conformers_before_optim": [9, 29], "conformers_after_optim": [9, 29], "augment_arkane_yml_file_with_mol_repr": 10, "output_directori": [10, 11], "auto_label": 10, "rect": 10, "ts_result": 10, "ax": 10, "bar": 10, "displai": [10, 24, 31], "height": [10, 18], "check_xyz_species_for_draw": 10, "draw": 10, "xy": 10, "cheapli": [10, 16], "clean_scan_result": 10, "nois": 10, "distribut": [10, 27], "occasion": 10, "mistak": 10, "snan": 10, "delete_multi_species_output_fil": 10, "species_list": [10, 12, 15], "multi_species_path_dict": 10, "slice": 10, "fromth": 10, "big": 10, "multi_speci": [10, 16], "multi_species_path": 10, "draw_3d": 10, "save_onli": 10, "ball": 10, "draw_kinetics_plot": 10, "rxn_list": [10, 15], "rmg_reaction": [10, 12, 16], "draw_parity_plot": 10, "var_arc": 10, "var_rmg": 10, "var_label": 10, "var_unit": 10, "pp": 10, "pdfpage": 10, "page": [10, 22, 25], "pfd": 10, "draw_structur": 10, "show_stick": 10, "show_atom_indic": 10, "scatter": 10, "draw_thermo_parity_plot": 10, "get_text_posit": 10, "x_data": 10, "y_data": 10, "txt_width": 10, "txt_height": 10, "annot": 10, "overlap": 10, "stackoverflow": [10, 19], "log_bde_report": 10, "spc_dict": 10, "prettifi": 10, "dissoci": [10, 11, 16, 25], "log_kinet": 10, "log_thermo": 10, "thermodata": [10, 16], "make_multi_species_output_fil": 10, "down": [10, 26], "plot_1d_rotor_scan": 10, "original_dihedr": [10, 16], "pe": [10, 12, 18], "vs": [10, 16, 29], "radian": [10, 19], "plot_2d_rotor_scan": 10, "cmap": 10, "blue": 10, "mark_lowest_conform": 10, "color": [10, 32], "produc": 10, "marker": 10, "mark": [10, 16, 23, 26], "red": 10, "dot": 10, "accent": 10, "accent_r": 10, "blues_r": 10, "brbg": 10, "brbg_r": 10, "bugn": 10, "bugn_r": 10, "bupu": 10, "bupu_r": 10, "cmrmap": 10, "cmrmap_r": 10, "dark2": 10, "dark2_r": 10, "gnbu": 10, "gnbu_r": 10, "green": [10, 21, 23], "greens_r": 10, "grei": 10, "greys_r": 10, "orrd": 10, "orrd_r": 10, "orang": 10, "oranges_r": 10, "prgn": 10, "prgn_r": 10, "paired_r": 10, "pastel1": 10, "pastel1_r": 10, "pastel2": 10, "pastel2_r": 10, "piyg": 10, "piyg_r": 10, "pubu": 10, "pubugn": 10, "pubugn_r": 10, "pubu_r": 10, "puor": 10, "puor_r": 10, "purd": 10, "purd_r": 10, "purpl": 10, "purples_r": 10, "rdbu": 10, "rdbu_r": 10, "rdgy": 10, "rdgy_r": 10, "rdpu": 10, "rdpu_r": 10, "rdylbu": 10, "rdylbu_r": 10, "rdylgn": 10, "rdylgn_r": 10, "reds_r": 10, "set1": 10, "set1_r": 10, "set2": 10, "set2_r": 10, "set3": 10, "set3_r": 10, "spectral": 10, "spectral_r": 10, "wistia": 10, "wistia_r": 10, "ylgn": 10, "ylgnbu": 10, "ylgnbu_r": 10, "ylgn_r": 10, "ylorbr": 10, "ylorbr_r": 10, "ylorrd": 10, "ylorrd_r": 10, "afmhot": 10, "afmhot_r": 10, "autumn": 10, "autumn_r": 10, "binari": 10, "binary_r": 10, "bone": 10, "bone_r": 10, "brg": 10, "brg_r": 10, "bwr": 10, "bwr_r": 10, "cividi": 10, "cividis_r": 10, "cool": 10, "cool_r": 10, "coolwarm": 10, "coolwarm_r": 10, "copper": 10, "copper_r": 10, "cubehelix": 10, "cubehelix_r": 10, "flag_r": 10, "gist_earth": 10, "gist_earth_r": 10, "gist_grai": 10, "gist_gray_r": 10, "gist_heat": 10, "gist_heat_r": 10, "gist_ncar": 10, "gist_ncar_r": 10, "gist_rainbow": 10, "gist_rainbow_r": 10, "gist_stern": 10, "gist_stern_r": 10, "gist_yarg": 10, "gist_yarg_r": 10, "gnuplot": 10, "gnuplot2": 10, "gnuplot2_r": 10, "gnuplot_r": 10, "grai": 10, "gray_r": 10, "hot": 10, "hot_r": 10, "hsv": 10, "hsv_r": 10, "inferno": 10, "inferno_r": 10, "jet": 10, "jet_r": 10, "magma": 10, "magma_r": 10, "nipy_spectr": 10, "nipy_spectral_r": 10, "ocean": 10, "ocean_r": 10, "pink": 10, "pink_r": 10, "plasma": 10, "plasma_r": 10, "prism": 10, "prism_r": 10, "rainbow": 10, "rainbow_r": 10, "seismic": 10, "seismic_r": 10, "spring": 10, "spring_r": 10, "summer": 10, "summer_r": 10, "tab10": 10, "tab10_r": 10, "tab20": 10, "tab20_r": 10, "tab20b": 10, "tab20b_r": 10, "tab20c": 10, "tab20c_r": 10, "terrain": 10, "terrain_r": 10, "viridi": 10, "viridis_r": 10, "winter": 10, "winter_r": 10, "plot_2d_scan_bond_dihedr": 10, "font_siz": 10, "figsiz": 10, "sfont": 10, "plot_3d_mol_as_scatt": 10, "plot_h": 10, "show_plot": 10, "show": [10, 24, 25, 28, 32], "plot_torsion_angl": 10, "torsions_sampling_point": 10, "e_conform": 10, "dash": 10, "horizont": 10, "plot_ts_guesses_by_e_and_method": 10, "imaginari": [10, 15, 16], "save_conformers_fil": 10, "ts_method": 10, "im_freq": 10, "log_cont": 10, "save_geo": 10, "format_": 10, "final_xyz": [10, 12, 15, 16], "initial_xyz": [10, 15, 16], "over": 10, "suffix": 10, "Or": 10, "save_irc_traj_anim": 10, "irc_f_path": 10, "irc_r_path": 10, "out_path": 10, "anim": 10, "forward": [10, 15], "revers": [10, 12, 13, 15, 19], "save_kinetics_lib": 10, "long_desc": 10, "save_nd_rotor_yaml": 10, "summar": 10, "save_rotor_text_fil": 10, "save_thermo_lib": 10, "save_transport_lib": 10, "stick": 10, "text_plott": 10, "text_posit": 10, "axi": [10, 19], "arrow": 10, "clean_output_directori": 11, "organ": [11, 30], "txt": [11, 29, 30], "move": [11, 30], "compare_r": 11, "rxns_for_kinetics_lib": 11, "compare_thermo": 11, "species_for_thermo_lib": 11, "thermochem": 11, "compare_transport": 11, "species_for_transport_lib": 11, "load_rmg_databas": [11, 13], "species_dict": [11, 15, 16], "output_dict": 11, "process_arc_project": 11, "pressur": [11, 12, 25], "limit": [11, 12, 15, 16, 25, 26, 27], "analysi": 11, "process_bd": 11, "write_unconverged_log": 11, "unconverged_speci": 11, "unconverged_rxn": 11, "log_file_path": 11, "unconverg": [11, 30], "reactant": [12, 15], "r_speci": 12, "p_speci": 12, "ts_label": 12, "ts_xyz_guess": [12, 31], "reaction_dict": 12, "preserve_param_in_scan": [12, 16], "r2": 12, "unimolecular": 12, "surfac": 12, "made": [12, 22, 25, 26], "identif": [12, 16], "break": [12, 16], "famili": [12, 13, 16], "kineticsfamili": [12, 13], "family_own_revers": 12, "own": [12, 13], "ts_speci": 12, "dh_rxn298": [12, 13], "heat": [12, 13], "298k": 12, "rmg_kinet": 12, "long_kinetic_descript": 12, "associ": [12, 16, 25, 27, 30], "atom_map": 12, "done_opt_r_n_p": 12, "complet": [12, 15, 26, 31], "arc_species_from_rmg_react": 12, "electr": 12, "check_atom_bal": [12, 16], "ts_xyz": 12, "balanc": [12, 16], "unspecifi": [12, 16], "imbal": 12, "reactionerror": 12, "check_attribut": 12, "correctli": [12, 20, 26, 30], "check_done_opt_r_n_p": 12, "copy_e0_valu": 12, "other_rxn": 12, "determine_famili": [12, 13], "wrapper": [12, 13], "determine_reaction_famili": [12, 13], "retain": [12, 13, 16], "flip_react": 12, "flip": 12, "from_dict": [12, 16], "get_bond": 12, "get_element_mass": 12, "get_expected_changing_bond": 12, "r_label_dict": 12, "templat": [12, 26], "templatereact": 12, "get_number_of_atoms_in_reaction_zon": 12, "particip": [12, 15], "recip": 12, "get_products_xyz": 12, "return_format": [12, 16], "orient": [12, 29], "reactiv": [12, 16], "get_reactants_and_product": 12, "return_copi": 12, "rmgspeci": 12, "get_reactants_xyz": 12, "get_rxn_charg": 12, "get_rxn_multipl": 12, "get_rxn_smil": 12, "get_single_mapped_product_xyz": 12, "get_species_count": 12, "occurr": [12, 16], "is_isomer": 12, "isomer": 12, "remove_dup_speci": 12, "onc": [12, 20], "rmg_reaction_from_arc_speci": 12, "rmg_reaction_from_str": 12, "reaction_str": 12, "regener": [12, 16], "rmg_reaction_to_str": 12, "set_label_reactants_product": 12, "clean_rmg_database_object": 13, "db": 13, "clear": 13, "determine_rmg_kinet": 13, "298": 13, "get_famili": 13, "load_families_onli": 13, "kinetics_famili": 13, "thermo_librari": 13, "reaction_librari": 13, "load_thermo_lib": 13, "load_kinetic_lib": 13, "include_nist": 13, "nist": [13, 30], "loop_famili": 13, "degenerate_react": 13, "degener": 13, "make_rmg_database_object": 13, "clean": 13, "doi": [14, 20, 21], "1016": 14, "cpc": 14, "2016": 14, "09": 14, "004": 14, "duminda": [14, 23], "ranasingh": [14, 21, 23], "alon": [14, 23, 32], "grinberg": [14, 21, 23], "dana": [14, 21, 23, 27], "calculate_truhlar_scaling_factor": 14, "zpe_dict": 14, "FOR": [14, 27], "haoyu": 14, "yu": 14, "luca": 14, "fiedler": 14, "alecu": 14, "donald": 14, "depart": 14, "supercomput": 14, "institut": [14, 27], "univers": 14, "minnesota": 14, "55455": 14, "0431": 14, "citat": 14, "zheng": 14, "zhao": 14, "2010": 14, "2872": 14, "2887": 14, "1021": 14, "ct100326h": 14, "physic": 14, "commun": [14, 17, 22, 25, 26], "2017": 14, "210": 14, "132": [14, 30], "138": 14, "vibrat": [14, 15, 29], "lambda": 14, "determine_scaling_factor": 14, "init_log": 14, "fundament": 14, "standalon": [14, 25, 26, 31], "get_species_list": 14, "rename_level": 14, "summarize_result": 14, "lambda_zp": 14, "overall_tim": 14, "base_path": 14, "restart_dict": 15, "job_dict": 15, "label_1": 15, "job1": 15, "job2": 15, "tsg": 15, "job_name1": 15, "job_name2": 15, "label_2": 15, "job_type1": 15, "status1": 15, "job_type2": 15, "status2": 15, "geo": 15, "mo": [15, 25], "unique_species_label": 15, "subset": 15, "conformer3": 15, "opt_a123": 15, "server_job_id": 15, "save_restart": 15, "loss": [15, 32], "restart_path": 15, "add_label_to_unique_species_label": 15, "check_all_don": 15, "check_directed_scan": 15, "qa": 15, "smooth": [15, 18], "successful_rotor": 15, "unsuccessful_rotor": 15, "check_directed_scan_job": 15, "adjust": [15, 18], "merg": [15, 26, 27], "jobadapt": 15, "check_freq_job": 15, "check_irc_speci": 15, "check_max_simultaneous_jobs_limit": 15, "check_negative_freq": 15, "vibfreq": 15, "check_rxn_e0_by_spc": 15, "check_scan_job": 15, "check_sp_job": 15, "deduce_job_adapt": 15, "delete_all_species_job": 15, "determine_adaptive_level": 15, "original_level_of_theori": 15, "determine_most_likely_ts_conform": 15, "determine_most_stable_conform": [15, 18], "end_job": 15, "job_nam": [15, 18], "csv": 15, "generate_final_ts_guess_report": 15, "get_completed_incore_job": 15, "incor": 15, "get_server_job_id": 15, "specific_serv": 15, "initialize_output_dict": 15, "purpos": [15, 27], "make_reaction_labels_info_fil": 15, "parse_composite_geo": 15, "parse_conform": 15, "fot": 15, "tsguess": [15, 16], "parse_opt_e_elect": 15, "optfreq": 15, "parse_opt_geo": 15, "post_opt_geo_work": 15, "spc_label": 15, "few": [15, 20], "finish": 15, "post_sp_act": 15, "sp_path": 15, "action": [15, 27], "process_conform": 15, "process_directed_scan": 15, "restore_running_job": 15, "session": [15, 17, 28], "featur": [15, 22, 24, 25, 26, 28, 29, 30], "twice": 15, "run_composite_job": 15, "ot": 15, "run_conformer_job": 15, "subsequ": 15, "cheap": [15, 16], "b97d3": 15, "run_freq_job": 15, "hessian": 15, "run_irc_job": 15, "irc_direct": 15, "run_job": 15, "cpu_cor": [15, 18], "dihedral_incr": 15, "job_adapt": 15, "rotor_index": 15, "attempted_queu": [15, 18], "scan_trsh": 15, "times_rerun": 15, "tri": [15, 16, 18], "grid": [15, 18, 25, 26], "multispeci": 15, "alpha": 15, "beta": 15, "run_onedmin_job": 15, "run_opt_job": 15, "run_orbitals_job": 15, "visual": [15, 25, 29], "run_scan_job": 15, "run_sp_job": 15, "mrci": [15, 16], "run_ts_conformer_job": 15, "ts_guess": [15, 16], "save_e_elect": 15, "save_restart_dict": 15, "schedule_job": 15, "spawn_directed_scan_job": 15, "cont": 15, "brute_forc": 15, "differenti": [15, 26], "unexpect": 15, "schedulererror": 15, "illeg": [15, 16], "spawn_post_irc_job": 15, "spawn_post_opt_job": 15, "spawn_ts_job": 15, "switch_t": 15, "troubleshoot_conformer_isomorph": 15, "troubleshoot_ess": 15, "troubleshoot_negative_freq": 15, "troubleshoot_opt_job": 15, "had": 15, "didn": 15, "troubleshoot_scan_job": 15, "inc_r": [15, 18], "species_has_freq": 15, "species_output_dict": 15, "yml_path": [15, 16], "species_has_geo": 15, "species_has_sp": 15, "species_has_sp_and_freq": 15, "stationari": 16, "state": [16, 25, 30], "include_in_thermo_lib": 16, "e0_onli": 16, "irc_label": 16, "number_of_rad": 16, "occ": 16, "rmg_speci": 16, "run_tim": 16, "rxn_label": 16, "rxn_index": 16, "ts_number": 16, "keep_mol": 16, "number_of_running_job": 16, "invalidation_reason": 16, "times_dihedral_set": 16, "scan_path": 16, "max_": 16, "trsh_counter": 16, "trsh_method": 16, "cont_indic": 16, "singlet": [16, 30], "doublet": 16, "adjac": [16, 25, 29], "rxn_dict": 16, "latest": [16, 26], "bi": 16, "rad": [16, 19], "unrestrict": [16, 30], "decis": 16, "u": 16, "slow": 16, "drug": 16, "heteroatom": 16, "old": 16, "seri": 16, "interest": [16, 19, 31], "advanc": [16, 25, 26, 28, 29], "occupi": 16, "val": 16, "original_label": 16, "prior": 16, "forbidden": 16, "e_elect": 16, "chosen": 16, "kelvin": 16, "plu": 16, "cheap_conform": 16, "necessarili": [16, 20], "best": 16, "most_stable_conform": 16, "recent_md_conform": 16, "md": [16, 26], "detect": [16, 26], "_radiu": 16, "archiv": [16, 29, 30], "_number_of_atom": 16, "heatcapacitymodel": 16, "rmg_thermo": 16, "successful_method": 16, "unsuccessful_method": 16, "unsuccessfulli": 16, "chosen_t": 16, "chosen_ts_list": 16, "chosen_ts_method": 16, "ts_check": 16, "went": 16, "rxn_zone_atom_indic": 16, "ts_conf_spawn": 16, "tsg_spawn": 16, "ts_guesses_exhaust": 16, "luck": 16, "achiev": 16, "ts_report": 16, "rank": 16, "prevent": 16, "transport_data": 16, "placehold": 16, "transportdata": 16, "conf_is_isomorph": 16, "strictli": 16, "enforc": 16, "conformers_before_opt": 16, "tetrahydr": 16, "check_xyz_isomorph": 16, "compliant": 16, "necessit": 16, "cluster_tsg": 16, "determine_multipl": 16, "determine_multiplicity_from_descriptor": 16, "determine_multiplicity_from_xyz": 16, "from_yml_fil": 16, "later": [16, 31], "ed": 16, "conformers_level": 16, "get_cheap_conform": 16, "get_xyz": 16, "highest": 16, "retriev": 16, "initialize_directed_rotor": 16, "is_diatom": 16, "is_monoatom": 16, "label_atom": 16, "make_ts_report": 16, "mol_from_xyz": [16, 30], "get_cheap": 16, "number_of_atom": 16, "number_of_heavy_atom": 16, "populate_ts_check": 16, "process_completed_tsg_queue_job": 16, "process_xyz": 16, "xyz_list": [16, 24], "flexibl": [16, 24, 25, 26], "scissor": 16, "sort_atom_label": 16, "scission": 16, "_bde_index1_index2_x": 16, "set_dihedr": 16, "chk_rotor_list": 16, "rotorerror": 16, "set_mol_list": 16, "set_transport_data": 16, "lj_path": 16, "opt_path": 16, "freq_path": 16, "method_index": 16, "method_direct": 16, "arc_react": 16, "ts_dict": 16, "succeed": 16, "opt_xyz": 16, "imaginary_freq": 16, "conformer_index": 16, "successful_irc": 16, "ir": 16, "successful_normal_mod": 16, "experienc": [16, 30], "almost_equal_tsg": 16, "for_report": 16, "concis": 16, "final_ts_guess_report": 16, "tic": 16, "tok": 16, "are_coords_compliant_with_graph": 16, "entry_1": 16, "entry_2": 16, "entry1": 16, "entry2": 16, "check_label": 16, "fix": [16, 22, 26, 30, 31], "check_xyz": 16, "agreement": 16, "colliding_atom": 16, "55": 16, "too": 16, "radii": 16, "42": 16, "781": 16, "47": 16, "808": 16, "07": 16, "588": 16, "74": 16, "cyclic_index_i_minus_1": 16, "cyclic": [16, 30], "cyclic_index_i_plus_1": 16, "determine_occ": 16, "todo": 16, "determine_rotor_symmetri": 16, "rotor_path": 16, "return_num_wel": 16, "worst": 16, "peak": [16, 31], "vallei": 16, "criterion": 16, "messag": [16, 18, 26, 30], "return_len_peak": 16, "determine_rotor_typ": 16, "hinderedrotor": 16, "freerotor": 16, "enumerate_bond": 16, "kekul": 16, "split_mol": 16, "sshing": 17, "upload": 17, "scratch": 17, "nodexx": 17, "rm": 17, "dhdhdhd": 17, "job_numb": 17, "sshclient": 17, "address": [17, 26], "un": [17, 26], "rsa": [17, 25], "privat": 17, "_ssh": 17, "paramiko": 17, "_sftp": 17, "sftp": 17, "client": 17, "oper": 17, "sftp_client": 17, "sftpclient": 17, "remote_path": [17, 18], "status": 17, "_connect": 17, "servererror": 17, "download_fil": 17, "remote_file_path": 17, "find_packag": 17, "package_nam": 17, "list_available_nod": 17, "hostnam": 17, "list_dir": 17, "submiss": 17, "upload_fil": 17, "check_connect": 17, "callabl": 17, "decor": 17, "ls": 17, "respons": [17, 26, 28], "aliv": 17, "bad": 17, "reconnect": 17, "channel": 17, "check_job_status_in_stdout": 17, "delete_all_arc_job": 17, "server_list": 17, "determine_ess_statu": 18, "output_path": 18, "species_label": 18, "job_log": 18, "determine_job_log_memory_issu": 18, "scan_quality_check": 18, "scan_r": 18, "used_method": 18, "preserve_param": 18, "original_xyz": 18, "curv": 18, "unavail": 18, "criteria": 18, "violat": 18, "throughout": [18, 30], "trsh_conformer_isomorph": 18, "trsherror": 18, "memory_gb": 18, "is_h": 18, "did": 18, "disk": 18, "output_error": 18, "remove_checkfil": 18, "trsh_keyword": 18, "couldnt_trsh": 18, "trsh_job_on_serv": 18, "job_server_statu": 18, "server_nod": 18, "opt_a103": 18, "rerun": 18, "trsh_job_queu": 18, "max_tim": 18, "24": [18, 24], "provi": 18, "measur": 18, "trsh_keyword_cartesian": 18, "trsh_keyword_checkfil": 18, "trsh_keyword_intaccuraci": 18, "accuraci": 18, "trsh_keyword_nosymm": 18, "nosymm": 18, "trsh_keyword_scf": 18, "trsh_keyword_unconverg": 18, "trsh_negative_freq": 18, "weren": 18, "deg": [18, 19, 30], "less": 18, "trsh_scan_job": 18, "scan_list": 18, "trsh_special_rotor": 18, "special_rotor": 18, "problematic_": 18, "special_typ": 18, "help": [18, 26, 29], "check_scan_qu": 18, "manipul": [19, 20], "calculate_angl": 19, "vectorserror": 19, "calculate_dihedral_angl": 19, "calculate_dist": 19, "calculate_param": 19, "get_angl": 19, "v1": [19, 26], "v2": 19, "get_delta_angl": 19, "359": 19, "get_dihedr": 19, "v3": 19, "inspir": 19, "get_lp_vector": 19, "lp": 19, "approach": 19, "averag": 19, "attain": [19, 20], "get_norm": 19, "cross": 19, "get_vector": 19, "get_vector_length": 19, "v": [19, 25], "rotate_vector": 19, "point_a": 19, "point_b": 19, "theta": 19, "question": 19, "6802577": 19, "set_vector_length": 19, "unit_vector": 19, "methan": 20, "r_2": 20, "4_1": 20, "a_2": 20, "3_0": 20, "09125": 20, "78200": 20, "26439": 20, "gic": 20, "add_dummy_atom": 20, "atom_index": 20, "check_atom_a_constraint": 20, "third": 20, "zmaterror": 20, "check_atom_d_constraint": 20, "forth": 20, "check_atom_r_constraint": 20, "consolidate_zmat": 20, "determine_a_atom": 20, "a_constraint": 20, "d_constraint": 20, "a_constraint_typ": 20, "trivial_assign": 20, "mat": 20, "determine_d_atom": 20, "d_constraint_typ": 20, "specific_atom": 20, "determine_d_atoms_from_connect": 20, "allow_a_to_be_dummi": 20, "determine_d_atoms_without_connect": 20, "determine_r_atom": 20, "r_constraint": 20, "get_all_neighbor": 20, "get_atom_connectivity_from_mol": 20, "get_atom_indices_from_zmat_paramet": 20, "r_0_2": 20, "a_0_1_2": 20, "d_0_1_2_4": 20, "r_0": 20, "0_3": 20, "a_0": 20, "0_1": 20, "1_2": 20, "d_0": 20, "4_5": 20, "rx_0_2": 20, "get_atom_ord": 20, "constraints_dict": 20, "get_atom_order_from_mol": 20, "get_atom_order_from_xyz": 20, "get_connect": 20, "edg": 20, "get_parameter_from_atom_indic": 20, "xyz_index": 20, "1_2_5": 20, "a_0_2_4": 20, "d_0_2_4_9": 20, "is_atom_in_new_frag": 20, "skip_atom": 20, "hasn": 20, "is_dummi": 20, "zmat_index": 20, "map_index_to_int": 20, "x15": 20, "order_fragments_by_constraint": 20, "remove_1st_atom": 20, "remove_1st_atom_refer": 20, "5th": 20, "3rd": [20, 26], "4th": 20, "up_param": 20, "increment_list": 20, "update_zmat_with_new_atom": 20, "added_dummi": 20, "xyz_to_zmat": 20, "resolv": [20, 26], "lock": 20, "meaning": 20, "zmat_to_coord": 20, "skip_undefin": 20, "sn": 20, "nerf": 20, "parson": 20, "holm": 20, "roja": 20, "tsai": 20, "strauss": 20, "silico": 20, "protein": 20, "synthesi": 20, "journal": [20, 21], "2005": 20, "1063": 20, "1068": 20, "1002": 20, "jcc": 20, "20237": 20, "convertertest": 20, "zmattest": 20, "wu": [21, 23], "grambow": [21, 23], "dong": [21, 23], "goldman": [21, 23], "liu": [21, 23], "autom": 21, "github": [21, 22, 25, 26], "reactionmechanismgener": [21, 26], "5281": 21, "zenodo": 21, "3356849": 21, "bibtex": 21, "misc": 21, "author": [21, 27], "titl": 21, "year": 21, "2019": 21, "publish": [21, 27], "repositori": [21, 26, 32], "howpublish": 21, "url": 21, "arc": [22, 23, 24, 27, 29], "facilit": [22, 25], "our": [22, 25], "research": [22, 23, 25, 27], "benefit": [22, 25, 31], "hope": [22, 25], "welcom": [22, 25], "contributor": [22, 23], "guidelin": 22, "conduct": 22, "notifi": 22, "develop": [22, 23, 26], "bug": [22, 26, 30, 31], "roadmap": 22, "technion": [23, 27], "mit": [23, 25, 27, 28], "dr": 23, "xiaorui": 23, "colin": 23, "matt": 23, "kfir": 23, "kaplan": 23, "lead": 23, "mengji": 23, "calvin": 23, "pieter": 23, "oscar": 23, "haoyang": 23, "prof": 23, "william": 23, "excel": 24, "resourc": [24, 26], "demonstr": [24, 28, 31], "basic": 24, "task": [24, 32], "arc_demo_1": 24, "15888237": 24, "27653343": 24, "30527086": 24, "63650559": 24, "15873769": 24, "22478280": 24, "59108268": 24, "16116823": 24, "20729283": 24, "31343166": 24, "61755575": 24, "56336439": 24, "97181468": 24, "18699193": 24, "24372402": 24, "17178687": 24, "70952779": 24, "51930751": 24, "1s": 24, "c3h8o": 24, "c1": 24, "h4h": 24, "3h2": 24, "1h3": 24, "sp_method": 24, "sp_basis_set": 24, "opt_method": 24, "opt_basis_set": 24, "independ": 24, "hamiltonian": 24, "discuss": 24, "ran": 24, "jupyt": [24, 26, 31, 32], "would": [24, 26], "matplotlib": 24, "spc3": 24, "sai": 24, "bndtss": 24, "def2tzvpp": 24, "992": 24, "ts1": 24, "ts3": 24, "track": [25, 26, 30], "cp": 25, "progress": 25, "licenc": 25, "host": 25, "contribut": 25, "instal": [25, 31], "clone": 25, "setup": 25, "alias": [25, 31], "bashrc": 25, "control": [25, 26], "disabl": [25, 26], "batch": 25, "choos": [25, 26], "tool": [25, 26, 31], "perceive_xyz_": 25, "xyz_to_smil": 25, "media": 25, "introduct": 25, "releas": [25, 26], "credit": 25, "cite": 25, "desktop": 26, "laptop": 26, "awar": [26, 31], "linux": 26, "ubuntu": 26, "lt": 26, "mac": [26, 30], "smoothli": 26, "window": 26, "These": [26, 32], "access": 26, "sge": [26, 30], "properli": 26, "experi": 26, "anaconda": [26, 31], "platform": [26, 31], "haven": 26, "compil": 26, "sudo": 26, "apt": 26, "gcc": 26, "export": 26, "pythonpath": [26, 31], "environ": [26, 31], "cd": 26, "conda": 26, "env": 26, "explain": [26, 28], "document": [26, 27, 30], "parti": 26, "autotst": [26, 30], "west": 26, "et": 26, "al": 26, "van": 26, "de": 26, "vijver": 26, "gcn": 26, "pattanaik": 26, "repo": 26, "discov": 26, "home": 26, "base_fold": 26, "carefulli": 26, "those": 26, "wish": 26, "major": 26, "Such": 26, "minor": [26, 30], "patch": 26, "favorit": 26, "reserv": 26, "storag": 26, "group_nam": 26, "arc_project": [26, 29], "project_nam": [26, 29], "manual": 26, "job_total_memory_gb": 26, "job_cpu_cor": 26, "job_time_limit_hr": 26, "default_job_set": 26, "alter": 26, "job_max_server_node_memory_alloc": 26, "percentag": 26, "80": [26, 30], "curli": 26, "brace": 26, "abl": [26, 32], "fill": 26, "mention": 26, "global_ess_set": 26, "thu": 26, "intens": 26, "radar": 26, "familiar": 26, "interact": [26, 31], "thing": 26, "blindli": 26, "oracl": 26, "sun": 26, "engin": 26, "check_status_command": 26, "submit_command": 26, "delete_command": 26, "list_available_nodes_command": 26, "t_max_format": 26, "sbatch": 26, "slurm1": 26, "slurm2": 26, "recognis": 26, "unmodifi": 26, "stash": 26, "unstash": 26, "pop": 26, "reccommend": 26, "edit": 26, "nano": 26, "arc_path": 26, "alia": 26, "arcrestart": [26, 31], "arcod": 26, "frequent": 26, "enjoi": 26, "thereof": 26, "fetch": 26, "pull": 26, "checkout": 26, "tag": 26, "replic": 26, "much": 26, "happen": 26, "styleguid": 26, "onlin": 26, "introduc": 26, "new_branch_to_merge_lat": 26, "stage": 26, "oun": 26, "rid": 26, "unneed": 26, "unstag": 26, "soft": 26, "free": [27, 30], "licens": 27, "copyright": 27, "2023": 27, "israel": 27, "technolog": 27, "permiss": 27, "herebi": 27, "grant": 27, "person": 27, "obtain": 27, "restrict": 27, "sublicens": 27, "sell": 27, "permit": 27, "whom": 27, "furnish": 27, "subject": 27, "condit": 27, "shall": 27, "substanti": 27, "portion": 27, "THE": 27, "IS": 27, "AS": 27, "warranti": 27, "OF": 27, "kind": 27, "OR": 27, "impli": 27, "BUT": 27, "TO": 27, "merchant": 27, "AND": 27, "noninfring": 27, "IN": 27, "event": 27, "holder": 27, "BE": 27, "liabl": 27, "claim": 27, "damag": 27, "liabil": 27, "contract": 27, "tort": 27, "aris": 27, "WITH": 27, "januari": 28, "2020": 28, "workshop": 28, "held": 28, "zoom": 28, "covid19": 28, "social": 28, "june": 28, "crush": [29, 30], "tree": 29, "bold": 29, "face": 29, "ital": 29, "procedur": 29, "quick": 29, "record": 29, "constantli": 29, "chk": 29, "thermoproperti": 29, "h298": 29, "s298": 29, "thermo_parity_plot": 29, "pdf": 29, "rate_plot": 29, "species_nam": 29, "_arkane_input": 29, "_arkane_output": 29, "inp": 29, "chemkin": 29, "nasa": 29, "species_dictionari": 29, "avogadro": 29, "png": 29, "view": 29, "pivot1": 29, "pivot2": 29, "rxn": [29, 30], "log_and_restart_arch": 29, "58": 30, "63": 30, "66": 30, "improv": 30, "68": 30, "64": 30, "70": 30, "77": 30, "inconsistency_ab": 30, "78": 30, "couldn": 30, "79": 30, "catch": 30, "84": 30, "81": 30, "85": 30, "87": 30, "88": 30, "89": 30, "nonisomorph": 30, "91": 30, "manag": 30, "94": 30, "applyatomenergycorrect": 30, "95": 30, "96": 30, "97": 30, "102": 30, "104": 30, "stepsiz": 30, "108": 30, "98": 30, "birad": 30, "114": 30, "determine_qm_softwar": 30, "111": 30, "117": 30, "119": 30, "1d_rotor": 30, "121": 30, "123": 30, "124": 30, "125": 30, "127": 30, "128": 30, "134": 30, "handl": 30, "137": 30, "139": 30, "136": 30, "spot": 30, "140": 30, "reorgan": 30, "init": 30, "142": 30, "146": 30, "think": 30, "143": 30, "147": 30, "148": 30, "152": 30, "62": 30, "67": 30, "73": 30, "statement": 30, "101": 30, "lose": 30, "qw": 30, "103": 30, "overwrit": 30, "106": 30, "extra": 30, "parenthes": 30, "122": 30, "slightli": 30, "144": 30, "os": 30, "ds_store": 30, "145": 30, "sleep": 30, "habit": 30, "149": 30, "150": 30, "correcli": 30, "151": 30, "miscellan": 30, "gitignor": 30, "err": 30, "levels_ess": 30, "phrase": 30, "112": 30, "energet": 30, "min_list": 30, "133": 30, "141": 30, "ipi": 30, "scikit": 30, "learn": 30, "116": 30, "capabl": 30, "abstract": 30, "path_to_the_arc_fold": 31, "whatev": 31, "previous": 31, "past": 31, "collect": 31, "fact": 31, "noth": 31, "example1": 31, "example2": 31, "n2h4": 31, "nn": 31, "nh": 31, "n2h3": 31, "nh2": 31, "4465194713": 31, "6830090994": 31, "0932618217": 31, "4573825998": 31, "1483344874": 31, "8104886823": 31, "6773598975": 31, "3820642106": 31, "2197000290": 31, "2239012380": 31, "4695695875": 31, "0069891203": 31, "8039356973": 31, "5112019151": 31, "8166872835": 31, "7837217777": 31, "5685801608": 31, "8405154279": 31, "9039017235": 31, "1568337145": 31, "0766247796": 31, "7333130781": 31, "8468572038": 31, "6711695415": 31, "reach": 31, "come": 31, "live": 31, "demo": 31, "a_": 32, "unintent": 32, "choic": 32, "r_min": 32, "r_max": 32, "target": 32, "pam": 32}, "objects": {"arc": [[1, 0, 0, "-", "common"], [5, 0, 0, "-", "job"], [6, 0, 0, "-", "level"], [8, 0, 0, "-", "main"], [9, 0, 0, "-", "parser"], [10, 0, 0, "-", "plotter"], [11, 0, 0, "-", "processor"], [12, 0, 0, "-", "reaction"], [13, 0, 0, "-", "rmgdb"], [15, 0, 0, "-", "scheduler"]], "arc.common": [[1, 1, 1, "", "almost_equal_coords"], [1, 1, 1, "", "almost_equal_coords_lists"], [1, 1, 1, "", "almost_equal_lists"], [1, 1, 1, "", "calc_rmsd"], [1, 1, 1, "", "check_ess_settings"], [1, 1, 1, "", "check_that_all_entries_are_in_list"], [1, 1, 1, "", "check_torsion_change"], [1, 1, 1, "", "convert_list_index_0_to_1"], [1, 1, 1, "", "convert_to_hours"], [1, 1, 1, "", "delete_check_files"], [1, 1, 1, "", "determine_ess"], [1, 1, 1, "", "determine_symmetry"], [1, 1, 1, "", "determine_top_group_indices"], [1, 1, 1, "", "dfs"], [1, 1, 1, "", "estimate_orca_mem_cpu_requirement"], [1, 1, 1, "", "extremum_list"], [1, 1, 1, "", "from_yaml"], [1, 1, 1, "", "generate_resonance_structures"], [1, 1, 1, "", "get_angle_in_180_range"], [1, 1, 1, "", "get_atom_radius"], [1, 1, 1, "", "get_bonds_from_dmat"], [1, 1, 1, "", "get_close_tuple"], [1, 1, 1, "", "get_extremum_index"], [1, 1, 1, "", "get_git_branch"], [1, 1, 1, "", "get_git_commit"], [1, 1, 1, "", "get_logger"], [1, 1, 1, "", "get_number_with_ordinal_indicator"], [1, 1, 1, "", "get_ordered_intersection_of_two_lists"], [1, 1, 1, "", "get_ordinal_indicator"], [1, 1, 1, "", "get_single_bond_length"], [1, 1, 1, "", "globalize_path"], [1, 1, 1, "", "globalize_paths"], [1, 1, 1, "", "initialize_job_types"], [1, 1, 1, "", "initialize_log"], [1, 1, 1, "", "is_angle_linear"], [1, 1, 1, "", "is_notebook"], [1, 1, 1, "", "is_same_pivot"], [1, 1, 1, "", "is_same_sequence_sublist"], [1, 1, 1, "", "is_str_float"], [1, 1, 1, "", "is_str_int"], [1, 1, 1, "", "is_xyz_mol_match"], [1, 1, 1, "", "key_by_val"], [1, 1, 1, "", "log_footer"], [1, 1, 1, "", "log_header"], [1, 1, 1, "", "read_yaml_file"], [1, 1, 1, "", "rmg_mol_from_dict_repr"], [1, 1, 1, "", "rmg_mol_to_dict_repr"], [1, 1, 1, "", "safe_copy_file"], [1, 1, 1, "", "save_yaml_file"], [1, 1, 1, "", "sort_atoms_in_descending_label_order"], [1, 1, 1, "", "sort_two_lists_by_the_first"], [1, 1, 1, "", "string_representer"], [1, 1, 1, "", "sum_list_entries"], [1, 1, 1, "", "time_lapse"], [1, 1, 1, "", "timedelta_from_str"], [1, 1, 1, "", "to_yaml"], [1, 1, 1, "", "torsions_to_scans"]], "arc.job": [[7, 0, 0, "-", "local"], [17, 0, 0, "-", "ssh"], [18, 0, 0, "-", "trsh"]], "arc.job.local": [[7, 1, 1, "", "change_mode"], [7, 1, 1, "", "check_job_status"], [7, 1, 1, "", "check_running_jobs_ids"], [7, 1, 1, "", "delete_all_local_arc_jobs"], [7, 1, 1, "", "delete_job"], [7, 1, 1, "", "execute_command"], [7, 1, 1, "", "get_last_modified_time"], [7, 1, 1, "", "parse_running_jobs_ids"], [7, 1, 1, "", "rename_output"], [7, 1, 1, "", "submit_job"], [7, 1, 1, "", "write_file"]], "arc.job.ssh": [[17, 2, 1, "", "SSHClient"], [17, 1, 1, "", "check_connections"], [17, 1, 1, "", "check_job_status_in_stdout"], [17, 1, 1, "", "delete_all_arc_jobs"]], "arc.job.ssh.SSHClient": [[17, 3, 1, "", "_sftp"], [17, 3, 1, "", "_ssh"], [17, 3, 1, "", "address"], [17, 4, 1, "", "change_mode"], [17, 4, 1, "", "check_job_status"], [17, 4, 1, "", "check_running_jobs_ids"], [17, 4, 1, "", "close"], [17, 4, 1, "", "connect"], [17, 4, 1, "", "delete_job"], [17, 4, 1, "", "delete_jobs"], [17, 4, 1, "", "download_file"], [17, 4, 1, "", "find_package"], [17, 3, 1, "", "key"], [17, 4, 1, "", "list_available_nodes"], [17, 4, 1, "", "list_dir"], [17, 3, 1, "", "server"], [17, 4, 1, "", "submit_job"], [17, 3, 1, "", "un"], [17, 4, 1, "", "upload_file"]], "arc.job.trsh": [[18, 1, 1, "", "determine_ess_status"], [18, 1, 1, "", "determine_job_log_memory_issues"], [18, 1, 1, "", "scan_quality_check"], [18, 1, 1, "", "trsh_conformer_isomorphism"], [18, 1, 1, "", "trsh_ess_job"], [18, 1, 1, "", "trsh_job_on_server"], [18, 1, 1, "", "trsh_job_queue"], [18, 1, 1, "", "trsh_keyword_cartesian"], [18, 1, 1, "", "trsh_keyword_checkfile"], [18, 1, 1, "", "trsh_keyword_intaccuracy"], [18, 1, 1, "", "trsh_keyword_nosymm"], [18, 1, 1, "", "trsh_keyword_scf"], [18, 1, 1, "", "trsh_keyword_unconverged"], [18, 1, 1, "", "trsh_negative_freq"], [18, 1, 1, "", "trsh_scan_job"], [18, 1, 1, "", "trsh_special_rotor"]], "arc.level": [[6, 2, 1, "", "Level"], [6, 1, 1, "", "get_params_from_arkane_level_of_theory_as_str"]], "arc.level.Level": [[6, 4, 1, "", "as_dict"], [6, 4, 1, "", "build"], [6, 4, 1, "", "copy"], [6, 4, 1, "", "deduce_method_type"], [6, 4, 1, "", "deduce_software"], [6, 4, 1, "", "determine_compatible_ess"], [6, 4, 1, "", "lower"], [6, 4, 1, "", "simple"], [6, 4, 1, "", "to_arkane_level_of_theory"]], "arc.main": [[8, 2, 1, "", "ARC"], [8, 2, 1, "", "StatmechEnum"], [8, 1, 1, "", "process_adaptive_levels"]], "arc.main.ARC": [[8, 3, 1, "", "T_count"], [8, 3, 1, "", "T_max"], [8, 3, 1, "", "T_min"], [8, 3, 1, "", "adaptive_levels"], [8, 4, 1, "", "add_hydrogen_for_bde"], [8, 3, 1, "", "allow_nonisomorphic_2d"], [8, 3, 1, "", "arkane_level_of_theory"], [8, 4, 1, "", "as_dict"], [8, 3, 1, "", "bac_type"], [8, 4, 1, "", "backup_restart"], [8, 3, 1, "", "bath_gas"], [8, 3, 1, "", "calc_freq_factor"], [8, 4, 1, "", "check_arkane_level_of_theory"], [8, 4, 1, "", "check_freq_scaling_factor"], [8, 4, 1, "", "check_project_name"], [8, 3, 1, "", "compare_to_rmg"], [8, 3, 1, "", "composite_method"], [8, 3, 1, "", "compute_rates"], [8, 3, 1, "", "compute_thermo"], [8, 3, 1, "", "compute_transport"], [8, 3, 1, "", "conformer_level"], [8, 4, 1, "", "delete_leftovers"], [8, 4, 1, "", "determine_ess_settings"], [8, 4, 1, "", "determine_unique_species_labels"], [8, 3, 1, "", "dont_gen_confs"], [8, 3, 1, "", "e_confs"], [8, 3, 1, "", "ess_settings"], [8, 4, 1, "", "execute"], [8, 3, 1, "", "execution_time"], [8, 3, 1, "", "fine_only"], [8, 3, 1, "", "freq_level"], [8, 3, 1, "", "freq_scale_factor"], [8, 3, 1, "", "irc_level"], [8, 3, 1, "", "job_types"], [8, 3, 1, "", "keep_checks"], [8, 3, 1, "", "kinetics_adapter"], [8, 3, 1, "", "level_of_theory"], [8, 3, 1, "", "lib_long_desc"], [8, 3, 1, "", "max_job_time"], [8, 3, 1, "", "memory"], [8, 3, 1, "", "n_confs"], [8, 3, 1, "", "opt_level"], [8, 3, 1, "", "orbitals_level"], [8, 3, 1, "", "output"], [8, 3, 1, "", "output_multi_spc"], [8, 4, 1, "", "process_level_of_theory"], [8, 3, 1, "", "project"], [8, 3, 1, "", "project_directory"], [8, 3, 1, "", "reactions"], [8, 3, 1, "", "report_e_elect"], [8, 3, 1, "", "rmg_database"], [8, 3, 1, "", "running_jobs"], [8, 4, 1, "", "save_project_info_file"], [8, 3, 1, "", "scan_level"], [8, 4, 1, "", "set_levels_of_theory"], [8, 3, 1, "", "skip_nmd"], [8, 3, 1, "", "sp_level"], [8, 3, 1, "", "species"], [8, 3, 1, "", "specific_job_type"], [8, 4, 1, "", "standardize_output_paths"], [8, 4, 1, "", "summary"], [8, 3, 1, "", "t0"], [8, 3, 1, "", "thermo_adapter"], [8, 3, 1, "", "three_params"], [8, 3, 1, "", "trsh_ess_jobs"], [8, 3, 1, "", "ts_adapters"], [8, 3, 1, "", "ts_guess_level"], [8, 4, 1, "", "write_input_file"]], "arc.parser": [[9, 1, 1, "", "identify_ess"], [9, 1, 1, "", "parse_1d_scan_coords"], [9, 1, 1, "", "parse_1d_scan_energies"], [9, 1, 1, "", "parse_dipole_moment"], [9, 1, 1, "", "parse_e_elect"], [9, 1, 1, "", "parse_frequencies"], [9, 1, 1, "", "parse_geometry"], [9, 1, 1, "", "parse_ic_info"], [9, 1, 1, "", "parse_ic_values"], [9, 1, 1, "", "parse_nd_scan_energies"], [9, 1, 1, "", "parse_normal_mode_displacement"], [9, 1, 1, "", "parse_polarizability"], [9, 1, 1, "", "parse_scan_args"], [9, 1, 1, "", "parse_scan_conformers"], [9, 1, 1, "", "parse_str_blocks"], [9, 1, 1, "", "parse_t1"], [9, 1, 1, "", "parse_trajectory"], [9, 1, 1, "", "parse_xyz_from_file"], [9, 1, 1, "", "parse_zpe"], [9, 1, 1, "", "process_conformers_file"]], "arc.plotter": [[10, 1, 1, "", "augment_arkane_yml_file_with_mol_repr"], [10, 1, 1, "", "auto_label"], [10, 1, 1, "", "check_xyz_species_for_drawing"], [10, 1, 1, "", "clean_scan_results"], [10, 1, 1, "", "delete_multi_species_output_file"], [10, 1, 1, "", "draw_3d"], [10, 1, 1, "", "draw_kinetics_plots"], [10, 1, 1, "", "draw_parity_plot"], [10, 1, 1, "", "draw_structure"], [10, 1, 1, "", "draw_thermo_parity_plots"], [10, 1, 1, "", "get_text_positions"], [10, 1, 1, "", "log_bde_report"], [10, 1, 1, "", "log_kinetics"], [10, 1, 1, "", "log_thermo"], [10, 1, 1, "", "make_multi_species_output_file"], [10, 1, 1, "", "plot_1d_rotor_scan"], [10, 1, 1, "", "plot_2d_rotor_scan"], [10, 1, 1, "", "plot_2d_scan_bond_dihedral"], [10, 1, 1, "", "plot_3d_mol_as_scatter"], [10, 1, 1, "", "plot_torsion_angles"], [10, 1, 1, "", "plot_ts_guesses_by_e_and_method"], [10, 1, 1, "", "save_conformers_file"], [10, 1, 1, "", "save_geo"], [10, 1, 1, "", "save_irc_traj_animation"], [10, 1, 1, "", "save_kinetics_lib"], [10, 1, 1, "", "save_nd_rotor_yaml"], [10, 1, 1, "", "save_rotor_text_file"], [10, 1, 1, "", "save_thermo_lib"], [10, 1, 1, "", "save_transport_lib"], [10, 1, 1, "", "show_sticks"], [10, 1, 1, "", "text_plotter"]], "arc.processor": [[11, 1, 1, "", "clean_output_directory"], [11, 1, 1, "", "compare_rates"], [11, 1, 1, "", "compare_thermo"], [11, 1, 1, "", "compare_transport"], [11, 1, 1, "", "load_rmg_database"], [11, 1, 1, "", "process_arc_project"], [11, 1, 1, "", "process_bdes"], [11, 1, 1, "", "write_unconverged_log"]], "arc.reaction": [[12, 2, 1, "", "ARCReaction"], [12, 1, 1, "", "remove_dup_species"]], "arc.reaction.ARCReaction": [[12, 4, 1, "", "arc_species_from_rmg_reaction"], [12, 4, 1, "", "as_dict"], [12, 5, 1, "id0", "atom_map"], [12, 5, 1, "id1", "charge"], [12, 4, 1, "", "check_atom_balance"], [12, 4, 1, "", "check_attributes"], [12, 4, 1, "", "check_done_opt_r_n_p"], [12, 4, 1, "", "copy"], [12, 4, 1, "", "copy_e0_values"], [12, 4, 1, "", "determine_family"], [12, 3, 1, "", "dh_rxn298"], [12, 3, 1, "", "done_opt_r_n_p"], [12, 3, 1, "", "family"], [12, 3, 1, "", "family_own_reverse"], [12, 4, 1, "", "flip_reaction"], [12, 4, 1, "", "from_dict"], [12, 4, 1, "", "get_bonds"], [12, 4, 1, "", "get_element_mass"], [12, 4, 1, "", "get_expected_changing_bonds"], [12, 4, 1, "", "get_number_of_atoms_in_reaction_zone"], [12, 4, 1, "", "get_products_xyz"], [12, 4, 1, "", "get_reactants_and_products"], [12, 4, 1, "", "get_reactants_xyz"], [12, 4, 1, "", "get_rxn_charge"], [12, 4, 1, "", "get_rxn_multiplicity"], [12, 4, 1, "", "get_rxn_smiles"], [12, 4, 1, "", "get_single_mapped_product_xyz"], [12, 4, 1, "", "get_species_count"], [12, 3, 1, "", "index"], [12, 4, 1, "", "is_isomerization"], [12, 3, 1, "", "kinetics"], [12, 3, 1, "", "label"], [12, 3, 1, "", "long_kinetic_description"], [12, 5, 1, "id4", "multiplicity"], [12, 3, 1, "", "p_species"], [12, 3, 1, "", "preserve_param_in_scan"], [12, 3, 1, "", "products"], [12, 3, 1, "", "r_species"], [12, 3, 1, "", "reactants"], [12, 4, 1, "", "remove_dup_species"], [12, 3, 1, "", "rmg_kinetics"], [12, 3, 1, "", "rmg_reaction"], [12, 4, 1, "", "rmg_reaction_from_arc_species"], [12, 4, 1, "", "rmg_reaction_from_str"], [12, 4, 1, "", "rmg_reaction_to_str"], [12, 3, 1, "", "rmg_reactions"], [12, 4, 1, "", "set_label_reactants_products"], [12, 3, 1, "", "ts_label"], [12, 3, 1, "", "ts_species"], [12, 3, 1, "", "ts_xyz_guess"]], "arc.rmgdb": [[13, 1, 1, "", "clean_rmg_database_object"], [13, 1, 1, "", "determine_family"], [13, 1, 1, "", "determine_reaction_family"], [13, 1, 1, "", "determine_rmg_kinetics"], [13, 1, 1, "", "get_family"], [13, 1, 1, "", "load_families_only"], [13, 1, 1, "", "load_rmg_database"], [13, 1, 1, "", "loop_families"], [13, 1, 1, "", "make_rmg_database_object"]], "arc.scheduler": [[15, 2, 1, "", "Scheduler"], [15, 1, 1, "", "species_has_freq"], [15, 1, 1, "", "species_has_geo"], [15, 1, 1, "", "species_has_sp"], [15, 1, 1, "", "species_has_sp_and_freq"]], "arc.scheduler.Scheduler": [[15, 3, 1, "", "adaptive_levels"], [15, 4, 1, "", "add_label_to_unique_species_labels"], [15, 3, 1, "", "allow_nonisomorphic_2d"], [15, 3, 1, "", "bath_gas"], [15, 4, 1, "", "check_all_done"], [15, 4, 1, "", "check_directed_scan"], [15, 4, 1, "", "check_directed_scan_job"], [15, 4, 1, "", "check_freq_job"], [15, 4, 1, "", "check_irc_species"], [15, 4, 1, "", "check_max_simultaneous_jobs_limit"], [15, 4, 1, "", "check_negative_freq"], [15, 4, 1, "", "check_rxn_e0_by_spc"], [15, 4, 1, "", "check_scan_job"], [15, 4, 1, "", "check_sp_job"], [15, 3, 1, "", "composite_method"], [15, 3, 1, "", "conformer_level"], [15, 4, 1, "", "deduce_job_adapter"], [15, 4, 1, "", "delete_all_species_jobs"], [15, 4, 1, "", "determine_adaptive_level"], [15, 4, 1, "", "determine_most_likely_ts_conformer"], [15, 4, 1, "", "determine_most_stable_conformer"], [15, 3, 1, "", "dont_gen_confs"], [15, 3, 1, "", "e_confs"], [15, 4, 1, "", "end_job"], [15, 3, 1, "", "ess_settings"], [15, 3, 1, "", "fine_only"], [15, 3, 1, "", "freq_level"], [15, 3, 1, "", "freq_scale_factor"], [15, 4, 1, "", "generate_final_ts_guess_report"], [15, 4, 1, "", "get_completed_incore_jobs"], [15, 4, 1, "", "get_server_job_ids"], [15, 4, 1, "", "initialize_output_dict"], [15, 3, 1, "", "irc_level"], [15, 3, 1, "", "job_dict"], [15, 3, 1, "", "job_types"], [15, 3, 1, "", "kinetics_adapter"], [15, 4, 1, "", "make_reaction_labels_info_file"], [15, 3, 1, "", "max_job_time"], [15, 3, 1, "", "memory"], [15, 3, 1, "", "n_confs"], [15, 3, 1, "", "opt_level"], [15, 3, 1, "", "orbitals_level"], [15, 3, 1, "", "output"], [15, 3, 1, "", "output_multi_spc"], [15, 4, 1, "", "parse_composite_geo"], [15, 4, 1, "", "parse_conformer"], [15, 4, 1, "", "parse_opt_e_elect"], [15, 4, 1, "", "parse_opt_geo"], [15, 4, 1, "", "post_opt_geo_work"], [15, 4, 1, "", "post_sp_actions"], [15, 4, 1, "", "process_conformers"], [15, 4, 1, "", "process_directed_scans"], [15, 3, 1, "", "project"], [15, 3, 1, "", "project_directory"], [15, 3, 1, "", "report_e_elect"], [15, 3, 1, "", "restart_dict"], [15, 3, 1, "", "restart_path"], [15, 4, 1, "", "restore_running_jobs"], [15, 3, 1, "id0", "rmg_database"], [15, 4, 1, "", "run_composite_job"], [15, 4, 1, "", "run_conformer_jobs"], [15, 4, 1, "", "run_freq_job"], [15, 4, 1, "", "run_irc_job"], [15, 4, 1, "", "run_job"], [15, 4, 1, "", "run_onedmin_job"], [15, 4, 1, "", "run_opt_job"], [15, 4, 1, "", "run_orbitals_job"], [15, 4, 1, "", "run_scan_jobs"], [15, 4, 1, "", "run_sp_job"], [15, 4, 1, "", "run_ts_conformer_jobs"], [15, 3, 1, "", "running_jobs"], [15, 3, 1, "", "rxn_list"], [15, 4, 1, "", "save_e_elect"], [15, 3, 1, "", "save_restart"], [15, 4, 1, "", "save_restart_dict"], [15, 3, 1, "", "scan_level"], [15, 4, 1, "", "schedule_jobs"], [15, 3, 1, "", "server_job_ids"], [15, 3, 1, "", "servers"], [15, 3, 1, "", "skip_nmd"], [15, 3, 1, "", "sp_level"], [15, 4, 1, "", "spawn_directed_scan_jobs"], [15, 4, 1, "", "spawn_post_irc_jobs"], [15, 4, 1, "", "spawn_post_opt_jobs"], [15, 4, 1, "", "spawn_ts_jobs"], [15, 3, 1, "", "species_dict"], [15, 3, 1, "", "species_list"], [15, 4, 1, "", "switch_ts"], [15, 3, 1, "", "testing"], [15, 4, 1, "", "troubleshoot_conformer_isomorphism"], [15, 4, 1, "", "troubleshoot_ess"], [15, 4, 1, "", "troubleshoot_negative_freq"], [15, 4, 1, "", "troubleshoot_opt_jobs"], [15, 4, 1, "", "troubleshoot_scan_job"], [15, 3, 1, "", "trsh_ess_jobs"], [15, 3, 1, "", "ts_adapters"], [15, 3, 1, "", "ts_guess_level"], [15, 3, 1, "", "unique_species_labels"]], "arc.species": [[2, 0, 0, "-", "conformers"], [3, 0, 0, "-", "converter"], [16, 0, 0, "-", "species"], [19, 0, 0, "-", "vectors"], [20, 0, 0, "-", "zmat"]], "arc.species.conformers": [[2, 1, 1, "", "add_missing_symmetric_torsion_values"], [2, 1, 1, "", "change_dihedrals_and_force_field_it"], [2, 1, 1, "", "cheat_sheet"], [2, 1, 1, "", "check_special_non_rotor_cases"], [2, 1, 1, "", "chirality_dict_to_tuple"], [2, 1, 1, "", "conformers_combinations_by_lowest_conformer"], [2, 1, 1, "", "deduce_new_conformers"], [2, 1, 1, "", "determine_chirality"], [2, 1, 1, "", "determine_dihedrals"], [2, 1, 1, "", "determine_number_of_conformers_to_generate"], [2, 1, 1, "", "determine_rotors"], [2, 1, 1, "", "determine_smallest_atom_index_in_scan"], [2, 1, 1, "", "determine_torsion_sampling_points"], [2, 1, 1, "", "determine_torsion_symmetry"], [2, 1, 1, "", "determine_well_width_tolerance"], [2, 1, 1, "", "embed_rdkit"], [2, 1, 1, "", "find_internal_rotors"], [2, 1, 1, "", "generate_all_combinations"], [2, 1, 1, "", "generate_conformer_combinations"], [2, 1, 1, "", "generate_conformers"], [2, 1, 1, "", "generate_diatomic_conformer"], [2, 1, 1, "", "generate_force_field_conformers"], [2, 1, 1, "", "generate_monoatomic_conformer"], [2, 1, 1, "", "get_force_field_energies"], [2, 1, 1, "", "get_lowest_confs"], [2, 1, 1, "", "get_lowest_diastereomers"], [2, 1, 1, "", "get_number_of_chiral_centers"], [2, 1, 1, "", "get_top_element_count"], [2, 1, 1, "", "get_torsion_angles"], [2, 1, 1, "", "get_wells"], [2, 1, 1, "", "identify_chiral_nitrogen_centers"], [2, 1, 1, "", "initialize_log"], [2, 1, 1, "", "inverse_chirality_symbol"], [2, 1, 1, "", "mix_rdkit_and_openbabel_force_field"], [2, 1, 1, "", "openbabel_force_field"], [2, 1, 1, "", "openbabel_force_field_on_rdkit_conformers"], [2, 1, 1, "", "prune_enantiomers_dict"], [2, 1, 1, "", "rdkit_force_field"], [2, 1, 1, "", "read_rdkit_embedded_conformer_i"], [2, 1, 1, "", "read_rdkit_embedded_conformers"], [2, 1, 1, "", "replace_n_with_c_in_mol"], [2, 1, 1, "", "replace_n_with_c_in_xyz"], [2, 1, 1, "", "to_group"], [2, 1, 1, "", "translate_group"], [2, 1, 1, "", "translate_groups"], [2, 1, 1, "", "update_mol"]], "arc.species.converter": [[3, 1, 1, "", "add_lone_pairs_by_atom_valance"], [3, 1, 1, "", "add_rads_by_atom_valance"], [3, 1, 1, "", "check_isomorphism"], [3, 1, 1, "", "check_xyz_dict"], [3, 1, 1, "", "check_zmat_dict"], [3, 1, 1, "", "cluster_confs_by_rmsd"], [3, 1, 1, "", "compare_confs"], [3, 1, 1, "", "compare_zmats"], [3, 1, 1, "", "displace_xyz"], [3, 1, 1, "", "elementize"], [3, 1, 1, "", "get_center_of_mass"], [3, 1, 1, "", "get_element_mass_from_xyz"], [3, 1, 1, "", "get_most_common_isotope_for_element"], [3, 1, 1, "", "get_xyz_radius"], [3, 1, 1, "", "get_zmat_param_value"], [3, 1, 1, "", "get_zmat_str_var_value"], [3, 1, 1, "", "hartree_to_si"], [3, 1, 1, "", "ics_to_scan_constraints"], [3, 1, 1, "", "modify_coords"], [3, 1, 1, "", "molecules_from_xyz"], [3, 1, 1, "", "order_atoms"], [3, 1, 1, "", "order_atoms_in_mol_list"], [3, 1, 1, "", "pybel_to_inchi"], [3, 1, 1, "", "rdkit_conf_from_mol"], [3, 1, 1, "", "relocate_zmat_dummy_atoms_to_the_end"], [3, 1, 1, "", "remove_dummies"], [3, 1, 1, "", "rmg_conformer_to_xyz"], [3, 1, 1, "", "rmg_mol_from_inchi"], [3, 1, 1, "", "s_bonds_mol_from_xyz"], [3, 1, 1, "", "set_multiplicity"], [3, 1, 1, "", "set_radicals_by_map"], [3, 1, 1, "", "set_rdkit_dihedrals"], [3, 1, 1, "", "sort_xyz_using_indices"], [3, 1, 1, "", "species_to_sdf_file"], [3, 1, 1, "", "split_str_zmat"], [3, 1, 1, "", "standardize_xyz_string"], [3, 1, 1, "", "str_to_xyz"], [3, 1, 1, "", "str_to_zmat"], [3, 1, 1, "", "to_rdkit_mol"], [3, 1, 1, "", "translate_to_center_of_mass"], [3, 1, 1, "", "translate_xyz"], [3, 1, 1, "", "update_molecule"], [3, 1, 1, "", "xyz_file_format_to_xyz"], [3, 1, 1, "", "xyz_from_data"], [3, 1, 1, "", "xyz_to_ase"], [3, 1, 1, "", "xyz_to_coords_and_element_numbers"], [3, 1, 1, "", "xyz_to_coords_list"], [3, 1, 1, "", "xyz_to_dmat"], [3, 1, 1, "", "xyz_to_kinbot_list"], [3, 1, 1, "", "xyz_to_np_array"], [3, 1, 1, "", "xyz_to_pybel_mol"], [3, 1, 1, "", "xyz_to_rmg_conformer"], [3, 1, 1, "", "xyz_to_str"], [3, 1, 1, "", "xyz_to_turbomol_format"], [3, 1, 1, "", "xyz_to_x_y_z"], [3, 1, 1, "", "xyz_to_xyz_file_format"], [3, 1, 1, "", "zmat_from_xyz"], [3, 1, 1, "", "zmat_to_str"], [3, 1, 1, "", "zmat_to_xyz"]], "arc.species.species": [[16, 2, 1, "", "ARCSpecies"], [16, 2, 1, "", "TSGuess"], [16, 1, 1, "", "are_coords_compliant_with_graph"], [16, 1, 1, "", "check_atom_balance"], [16, 1, 1, "", "check_label"], [16, 1, 1, "", "check_xyz"], [16, 1, 1, "", "colliding_atoms"], [16, 1, 1, "", "cyclic_index_i_minus_1"], [16, 1, 1, "", "cyclic_index_i_plus_1"], [16, 1, 1, "", "determine_occ"], [16, 1, 1, "", "determine_rotor_symmetry"], [16, 1, 1, "", "determine_rotor_type"], [16, 1, 1, "", "enumerate_bonds"], [16, 1, 1, "", "split_mol"]], "arc.species.species.ARCSpecies": [[16, 3, 1, "", "_number_of_atoms"], [16, 3, 1, "", "_radius"], [16, 3, 1, "", "arkane_file"], [16, 4, 1, "", "as_dict"], [16, 3, 1, "", "bdes"], [16, 3, 1, "", "bond_corrections"], [16, 3, 1, "", "charge"], [16, 3, 1, "", "cheap_conformer"], [16, 4, 1, "", "check_xyz_isomorphism"], [16, 3, 1, "", "checkfile"], [16, 3, 1, "", "chosen_ts"], [16, 3, 1, "", "chosen_ts_list"], [16, 3, 1, "", "chosen_ts_method"], [16, 4, 1, "", "cluster_tsgs"], [16, 3, 1, "", "compute_thermo"], [16, 3, 1, "", "conf_is_isomorphic"], [16, 3, 1, "", "conformer_energies"], [16, 3, 1, "", "conformers"], [16, 3, 1, "", "conformers_before_opt"], [16, 3, 1, "", "consider_all_diastereomers"], [16, 4, 1, "", "copy"], [16, 4, 1, "", "determine_multiplicity"], [16, 4, 1, "", "determine_multiplicity_from_descriptors"], [16, 4, 1, "", "determine_multiplicity_from_xyz"], [16, 4, 1, "", "determine_rotors"], [16, 4, 1, "", "determine_symmetry"], [16, 3, 1, "", "directed_rotors"], [16, 3, 1, "", "e0"], [16, 3, 1, "", "e0_only"], [16, 3, 1, "", "e_elect"], [16, 3, 1, "", "external_symmetry"], [16, 3, 1, "", "final_xyz"], [16, 3, 1, "", "force_field"], [16, 3, 1, "", "fragments"], [16, 4, 1, "", "from_dict"], [16, 4, 1, "", "from_yml_file"], [16, 4, 1, "", "generate_conformers"], [16, 4, 1, "", "get_cheap_conformer"], [16, 4, 1, "", "get_xyz"], [16, 3, 1, "", "include_in_thermo_lib"], [16, 3, 1, "", "initial_xyz"], [16, 4, 1, "", "initialize_directed_rotors"], [16, 3, 1, "", "irc_label"], [16, 4, 1, "", "is_diatomic"], [16, 4, 1, "", "is_isomorphic"], [16, 4, 1, "", "is_monoatomic"], [16, 3, 1, "", "is_ts"], [16, 3, 1, "", "keep_mol"], [16, 3, 1, "", "label"], [16, 4, 1, "", "label_atoms"], [16, 3, 1, "", "long_thermo_description"], [16, 4, 1, "", "make_ts_report"], [16, 3, 1, "", "mol"], [16, 4, 1, "", "mol_from_xyz"], [16, 3, 1, "", "mol_list"], [16, 3, 1, "", "most_stable_conformer"], [16, 3, 1, "", "multi_species"], [16, 3, 1, "", "multiplicity"], [16, 3, 1, "", "neg_freqs_trshed"], [16, 5, 1, "", "number_of_atoms"], [16, 5, 1, "", "number_of_heavy_atoms"], [16, 3, 1, "", "number_of_radicals"], [16, 3, 1, "", "number_of_rotors"], [16, 3, 1, "", "occ"], [16, 3, 1, "", "opt_level"], [16, 3, 1, "", "optical_isomers"], [16, 3, 1, "", "original_label"], [16, 4, 1, "", "populate_ts_checks"], [16, 3, 1, "", "preserve_param_in_scan"], [16, 4, 1, "", "process_completed_tsg_queue_jobs"], [16, 4, 1, "", "process_xyz"], [16, 3, 1, "", "project_directory"], [16, 5, 1, "", "radius"], [16, 3, 1, "", "recent_md_conformer"], [16, 3, 1, "", "rmg_species"], [16, 3, 1, "", "rmg_thermo"], [16, 3, 1, "", "rotors_dict"], [16, 3, 1, "", "run_time"], [16, 3, 1, "", "rxn_index"], [16, 3, 1, "", "rxn_label"], [16, 3, 1, "", "rxn_zone_atom_indices"], [16, 4, 1, "", "scissors"], [16, 4, 1, "", "set_dihedral"], [16, 4, 1, "", "set_mol_list"], [16, 4, 1, "", "set_transport_data"], [16, 3, 1, "", "successful_methods"], [16, 3, 1, "", "t1"], [16, 3, 1, "", "thermo"], [16, 3, 1, "", "transport_data"], [16, 3, 1, "", "ts_checks"], [16, 3, 1, "", "ts_conf_spawned"], [16, 3, 1, "", "ts_guesses"], [16, 3, 1, "", "ts_guesses_exhausted"], [16, 3, 1, "", "ts_number"], [16, 3, 1, "", "ts_report"], [16, 3, 1, "", "tsg_spawned"], [16, 3, 1, "", "unsuccessful_methods"], [16, 3, 1, "", "yml_path"], [16, 3, 1, "", "zmat"]], "arc.species.species.TSGuess": [[16, 4, 1, "", "almost_equal_tsgs"], [16, 3, 1, "", "arc_reaction"], [16, 4, 1, "", "as_dict"], [16, 3, 1, "", "cluster"], [16, 3, 1, "", "conformer_index"], [16, 3, 1, "", "energy"], [16, 3, 1, "", "errors"], [16, 3, 1, "", "execution_time"], [16, 3, 1, "", "family"], [16, 4, 1, "", "from_dict"], [16, 4, 1, "", "get_xyz"], [16, 3, 1, "", "imaginary_freqs"], [16, 3, 1, "", "index"], [16, 5, 1, "id0", "initial_xyz"], [16, 3, 1, "", "method"], [16, 3, 1, "", "method_direction"], [16, 3, 1, "", "method_index"], [16, 5, 1, "id1", "opt_xyz"], [16, 4, 1, "", "process_xyz"], [16, 3, 1, "", "rmg_reaction"], [16, 3, 1, "", "success"], [16, 3, 1, "", "successful_irc"], [16, 3, 1, "", "successful_normal_mode"], [16, 3, 1, "", "t0"], [16, 4, 1, "", "tic"], [16, 4, 1, "", "tok"]], "arc.species.vectors": [[19, 1, 1, "", "calculate_angle"], [19, 1, 1, "", "calculate_dihedral_angle"], [19, 1, 1, "", "calculate_distance"], [19, 1, 1, "", "calculate_param"], [19, 1, 1, "", "get_angle"], [19, 1, 1, "", "get_delta_angle"], [19, 1, 1, "", "get_dihedral"], [19, 1, 1, "", "get_lp_vector"], [19, 1, 1, "", "get_normal"], [19, 1, 1, "", "get_vector"], [19, 1, 1, "", "get_vector_length"], [19, 1, 1, "", "rotate_vector"], [19, 1, 1, "", "set_vector_length"], [19, 1, 1, "", "unit_vector"]], "arc.species.zmat": [[20, 1, 1, "", "add_dummy_atom"], [20, 1, 1, "", "check_atom_a_constraints"], [20, 1, 1, "", "check_atom_d_constraints"], [20, 1, 1, "", "check_atom_r_constraints"], [20, 1, 1, "", "consolidate_zmat"], [20, 1, 1, "", "determine_a_atoms"], [20, 1, 1, "", "determine_d_atoms"], [20, 1, 1, "", "determine_d_atoms_from_connectivity"], [20, 1, 1, "", "determine_d_atoms_without_connectivity"], [20, 1, 1, "", "determine_r_atoms"], [20, 1, 1, "", "get_all_neighbors"], [20, 1, 1, "", "get_atom_connectivity_from_mol"], [20, 1, 1, "", "get_atom_indices_from_zmat_parameter"], [20, 1, 1, "", "get_atom_order"], [20, 1, 1, "", "get_atom_order_from_mol"], [20, 1, 1, "", "get_atom_order_from_xyz"], [20, 1, 1, "", "get_connectivity"], [20, 1, 1, "", "get_parameter_from_atom_indices"], [20, 1, 1, "", "is_atom_in_new_fragment"], [20, 1, 1, "", "is_dummy"], [20, 1, 1, "", "map_index_to_int"], [20, 1, 1, "", "order_fragments_by_constraints"], [20, 1, 1, "", "remove_1st_atom"], [20, 1, 1, "", "remove_1st_atom_references"], [20, 1, 1, "", "up_param"], [20, 1, 1, "", "update_zmat_with_new_atom"], [20, 1, 1, "", "xyz_to_zmat"], [20, 1, 1, "", "zmat_to_coords"]], "arc.utils": [[14, 0, 0, "-", "scale"]], "arc.utils.scale": [[14, 1, 1, "", "calculate_truhlar_scaling_factors"], [14, 1, 1, "", "determine_scaling_factors"], [14, 1, 1, "", "get_species_list"], [14, 1, 1, "", "rename_level"], [14, 1, 1, "", "summarize_results"]]}, "objtypes": {"0": "py:module", "1": "py:function", "2": "py:class", "3": "py:attribute", "4": "py:method", "5": "py:property"}, "objnames": {"0": ["py", "module", "Python module"], "1": ["py", "function", "Python function"], "2": ["py", "class", "Python class"], "3": ["py", "attribute", "Python attribute"], "4": ["py", "method", "Python method"], "5": ["py", "property", "Python property"]}, "titleterms": {"advanc": 0, "featur": 0, "flexibl": 0, "coordin": 0, "xyz": [0, 32], "input": [0, 31], "specifi": 0, "specif": 0, "job": [0, 5, 7, 17, 18, 32], "type": 0, "execut": 0, "level": [0, 6], "theori": 0, "adapt": 0, "control": 0, "memori": 0, "alloc": 0, "us": [0, 31], "fine": 0, "dft": 0, "grid": 0, "optim": [0, 24], "rotor": 0, "scan": [0, 32], "nd": 0, "electron": 0, "structur": 0, "softwar": [0, 26], "set": 0, "troubleshoot": 0, "ess": [0, 32], "check": 0, "file": [0, 31], "frequenc": [0, 32], "scale": [0, 14, 32], "factor": [0, 32], "isomorph": 0, "non": 0, "default": 0, "project": 0, "directori": 0, "visual": [0, 32], "molecular": 0, "orbit": 0, "mo": 0, "consid": 0, "diastereom": 0, "don": 0, "t": 0, "gener": [0, 26], "conform": [0, 2, 32], "speci": [0, 2, 3, 16, 19, 20], "write": 0, "an": [0, 31], "arc": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 25, 26, 28, 30, 31, 32], "api": [0, 4, 31], "calcul": [0, 24, 25], "bde": 0, "bond": 0, "dissoci": 0, "energi": 0, "disabl": 0, "comparison": 0, "rmg": 0, "databas": 0, "solvent": 0, "correct": 0, "batch": 0, "delet": [0, 32], "choos": 0, "modifi": 0, "classic": 0, "arrheniu": 0, "equat": 0, "form": 0, "rate": [0, 25], "coeffici": 0, "fit": 0, "common": 1, "todo": [2, 12, 15, 17, 18], "convert": 3, "s": 4, "local": 7, "main": 8, "parser": 9, "plotter": 10, "processor": 11, "reaction": 12, "rmgdb": 13, "util": 14, "schedul": 15, "ssh": [17, 26], "trsh": 18, "vector": 19, "zmat": 20, "how": [21, 28], "cite": 21, "contribut": 22, "credit": 23, "exampl": 24, "thermodynam": 24, "properti": 24, "transit": 24, "state": 24, "autom": 25, "v1": 25, "1": [25, 30], "0": [25, 30], "document": 25, "content": 25, "indic": 25, "tabl": 25, "instal": 26, "instruct": 26, "clone": 26, "setup": 26, "path": 26, "depend": 26, "creat": 26, "folder": 26, "option": 26, "recommend": 26, "rsa": 26, "kei": 26, "defin": 26, "server": 26, "associ": 26, "cluster": 26, "definit": 26, "test": 26, "add": 26, "alias": 26, "your": 26, "bashrc": 26, "conveni": 26, "updat": 26, "licenc": 27, "media": 28, "introduct": 28, "output": 29, "releas": 30, "note": 30, "version": 30, "style": 30, "run": 31, "standalon": 32, "tool": 32, "diagnost": 32, "all": 32, "determin": 32, "harmon": 32, "extern": 32, "symmetri": 32, "optic": 32, "isom": 32, "onedmin": 32, "script": 32, "perceive_xyz_": 32, "xyz_to_smil": 32, "plot": 32, "1d": 32, "torsion": 32, "2d": 32}, "envversion": {"sphinx.domains.c": 2, "sphinx.domains.changeset": 1, "sphinx.domains.citation": 1, "sphinx.domains.cpp": 6, "sphinx.domains.index": 1, "sphinx.domains.javascript": 2, "sphinx.domains.math": 2, "sphinx.domains.python": 3, "sphinx.domains.rst": 2, "sphinx.domains.std": 2, "sphinx.ext.viewcode": 1, "sphinx.ext.todo": 2, "sphinx": 56}}) \ No newline at end of file