kinbot 2.2.1__tar.gz → 2.2.3__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (204) hide show
  1. kinbot-2.2.3/KinBot.egg-info/PKG-INFO +190 -0
  2. {kinbot-2.2.1 → kinbot-2.2.3}/KinBot.egg-info/SOURCES.txt +16 -0
  3. {kinbot-2.2.1 → kinbot-2.2.3}/KinBot.egg-info/requires.txt +1 -0
  4. {kinbot-2.2.1 → kinbot-2.2.3}/KinBot.egg-info/top_level.txt +3 -0
  5. {kinbot-2.2.1 → kinbot-2.2.3}/LICENSE +3 -2
  6. kinbot-2.2.3/PKG-INFO +190 -0
  7. kinbot-2.2.3/README.md +131 -0
  8. kinbot-2.2.3/kinbot/ase_modules/calculators/nn_pes.py +220 -0
  9. {kinbot-2.2.1 → kinbot-2.2.3}/kinbot/cheminfo.py +2 -0
  10. {kinbot-2.2.1 → kinbot-2.2.3}/kinbot/config_log.py +8 -1
  11. {kinbot-2.2.1 → kinbot-2.2.3}/kinbot/conformers.py +107 -24
  12. {kinbot-2.2.1 → kinbot-2.2.3}/kinbot/find_motif.py +15 -6
  13. kinbot-2.2.3/kinbot/fragments.py +867 -0
  14. {kinbot-2.2.1 → kinbot-2.2.3}/kinbot/frequencies.py +3 -1
  15. {kinbot-2.2.1 → kinbot-2.2.3}/kinbot/geometry.py +88 -21
  16. {kinbot-2.2.1 → kinbot-2.2.3}/kinbot/hindered_rotors.py +14 -3
  17. {kinbot-2.2.1 → kinbot-2.2.3}/kinbot/irc.py +11 -6
  18. {kinbot-2.2.1 → kinbot-2.2.3}/kinbot/kb.py +64 -22
  19. {kinbot-2.2.1 → kinbot-2.2.3}/kinbot/license_message.py +1 -1
  20. {kinbot-2.2.1 → kinbot-2.2.3}/kinbot/mess.py +86 -31
  21. {kinbot-2.2.1 → kinbot-2.2.3}/kinbot/modify_geom.py +43 -26
  22. {kinbot-2.2.1 → kinbot-2.2.3}/kinbot/molpro.py +124 -20
  23. {kinbot-2.2.1 → kinbot-2.2.3}/kinbot/optimize.py +71 -42
  24. {kinbot-2.2.1 → kinbot-2.2.3}/kinbot/parameters.py +165 -11
  25. {kinbot-2.2.1 → kinbot-2.2.3}/kinbot/pes.py +573 -191
  26. {kinbot-2.2.1 → kinbot-2.2.3}/kinbot/postprocess.py +90 -20
  27. kinbot-2.2.3/kinbot/pp_settings.py +381 -0
  28. kinbot-2.2.3/kinbot/pp_tables.py +22 -0
  29. {kinbot-2.2.1 → kinbot-2.2.3}/kinbot/qc.py +406 -167
  30. {kinbot-2.2.1 → kinbot-2.2.3}/kinbot/reac_General.py +4 -2
  31. {kinbot-2.2.1 → kinbot-2.2.3}/kinbot/reac_family.py +52 -34
  32. {kinbot-2.2.1 → kinbot-2.2.3}/kinbot/reaction_finder.py +147 -165
  33. {kinbot-2.2.1 → kinbot-2.2.3}/kinbot/reaction_generator.py +308 -249
  34. kinbot-2.2.3/kinbot/reactions/reac_R_Addition_MultipleBond.py +108 -0
  35. kinbot-2.2.3/kinbot/reactions/reac_h2_elim.py +34 -0
  36. {kinbot-2.2.1 → kinbot-2.2.3}/kinbot/reader_gauss.py +103 -7
  37. {kinbot-2.2.1 → kinbot-2.2.3}/kinbot/stationary_pt.py +144 -53
  38. {kinbot-2.2.1 → kinbot-2.2.3}/kinbot/tpl/ase_gauss_hir.tpl.py +1 -1
  39. {kinbot-2.2.1 → kinbot-2.2.3}/kinbot/tpl/ase_gauss_irc.tpl.py +26 -11
  40. kinbot-2.2.3/kinbot/tpl/ase_gauss_vts.tpl.py +124 -0
  41. {kinbot-2.2.1 → kinbot-2.2.3}/kinbot/tpl/ase_qchem_ts_search.tpl.py +0 -1
  42. {kinbot-2.2.1 → kinbot-2.2.3}/kinbot/tpl/ase_sella_hir.tpl.py +12 -4
  43. kinbot-2.2.3/kinbot/tpl/ase_sella_irc.tpl.py +81 -0
  44. {kinbot-2.2.1 → kinbot-2.2.3}/kinbot/tpl/ase_sella_opt_well.tpl.py +30 -16
  45. {kinbot-2.2.1 → kinbot-2.2.3}/kinbot/tpl/ase_sella_ring_conf.tpl.py +30 -17
  46. {kinbot-2.2.1 → kinbot-2.2.3}/kinbot/tpl/ase_sella_ts_end.tpl.py +25 -14
  47. {kinbot-2.2.1 → kinbot-2.2.3}/kinbot/tpl/ase_sella_ts_search.tpl.py +14 -5
  48. kinbot-2.2.3/kinbot/tpl/ase_sella_vts.tpl.py +219 -0
  49. {kinbot-2.2.1 → kinbot-2.2.3}/kinbot/tpl/mess_barrierless.tpl +6 -4
  50. kinbot-2.2.3/kinbot/tpl/mess_hinderedrotorgeom.tpl +10 -0
  51. {kinbot-2.2.1 → kinbot-2.2.3}/kinbot/tpl/molpro.tpl +4 -6
  52. kinbot-2.2.3/kinbot/tpl/molpro_ts_search.tpl.py +63 -0
  53. kinbot-2.2.3/kinbot/tpl/molpro_vts.tpl +17 -0
  54. {kinbot-2.2.1 → kinbot-2.2.3}/kinbot/tpl/pesviewer.inp.tpl +2 -1
  55. kinbot-2.2.3/kinbot/tpl/rotdPy.tpl +90 -0
  56. kinbot-2.2.3/kinbot/tpl/rotdPy_1d_corr.tpl +12 -0
  57. kinbot-2.2.3/kinbot/tpl/rotdPy_calc.tpl +10 -0
  58. kinbot-2.2.3/kinbot/tpl/rotdPy_frag.tpl +4 -0
  59. kinbot-2.2.3/kinbot/tpl/rotdPy_surf.tpl +7 -0
  60. {kinbot-2.2.1 → kinbot-2.2.3}/kinbot/tpl/slurm_molpro.tpl +1 -0
  61. kinbot-2.2.3/kinbot/utils.py +276 -0
  62. kinbot-2.2.3/kinbot/vrc_tst_scan.py +605 -0
  63. kinbot-2.2.3/kinbot/vrc_tst_surfaces.py +40 -0
  64. {kinbot-2.2.1 → kinbot-2.2.3}/kinbot/zmatrix.py +1 -2
  65. {kinbot-2.2.1 → kinbot-2.2.3}/pyproject.toml +6 -6
  66. kinbot-2.2.1/KinBot.egg-info/PKG-INFO +0 -151
  67. kinbot-2.2.1/PKG-INFO +0 -151
  68. kinbot-2.2.1/README.md +0 -99
  69. kinbot-2.2.1/kinbot/reactions/reac_R_Addition_MultipleBond.py +0 -75
  70. kinbot-2.2.1/kinbot/reactions/reac_h2_elim.py +0 -31
  71. kinbot-2.2.1/kinbot/tpl/ase_sella_irc.tpl.py +0 -60
  72. kinbot-2.2.1/kinbot/utils.py +0 -150
  73. {kinbot-2.2.1 → kinbot-2.2.3}/KinBot.egg-info/dependency_links.txt +0 -0
  74. {kinbot-2.2.1 → kinbot-2.2.3}/KinBot.egg-info/entry_points.txt +0 -0
  75. {kinbot-2.2.1 → kinbot-2.2.3}/kinbot/__init__.py +0 -0
  76. {kinbot-2.2.1 → kinbot-2.2.3}/kinbot/ase_modules/__init__.py +0 -0
  77. {kinbot-2.2.1 → kinbot-2.2.3}/kinbot/ase_modules/calculators/__init__.py +0 -0
  78. {kinbot-2.2.1 → kinbot-2.2.3}/kinbot/ase_modules/calculators/gaussian.py +0 -0
  79. {kinbot-2.2.1 → kinbot-2.2.3}/kinbot/ase_modules/calculators/qchem.py +0 -0
  80. {kinbot-2.2.1 → kinbot-2.2.3}/kinbot/ase_modules/constraints.py +0 -0
  81. {kinbot-2.2.1 → kinbot-2.2.3}/kinbot/ase_modules/io/__init__.py +0 -0
  82. {kinbot-2.2.1 → kinbot-2.2.3}/kinbot/ase_modules/io/formats.py +0 -0
  83. {kinbot-2.2.1 → kinbot-2.2.3}/kinbot/ase_modules/io/gaussian.py +0 -0
  84. {kinbot-2.2.1 → kinbot-2.2.3}/kinbot/ase_modules/io/zmatrix.py +0 -0
  85. {kinbot-2.2.1 → kinbot-2.2.3}/kinbot/bfgs.py +0 -0
  86. {kinbot-2.2.1 → kinbot-2.2.3}/kinbot/bond_combinations.py +0 -0
  87. {kinbot-2.2.1 → kinbot-2.2.3}/kinbot/constants.py +0 -0
  88. {kinbot-2.2.1 → kinbot-2.2.3}/kinbot/exceptions.py +0 -0
  89. {kinbot-2.2.1 → kinbot-2.2.3}/kinbot/mesmer.py +0 -0
  90. {kinbot-2.2.1 → kinbot-2.2.3}/kinbot/orca.py +0 -0
  91. {kinbot-2.2.1 → kinbot-2.2.3}/kinbot/reaction_finder_bimol.py +0 -0
  92. {kinbot-2.2.1 → kinbot-2.2.3}/kinbot/reactions/__init__.py +0 -0
  93. {kinbot-2.2.1 → kinbot-2.2.3}/kinbot/reactions/reac_12_shift_S_F.py +0 -0
  94. {kinbot-2.2.1 → kinbot-2.2.3}/kinbot/reactions/reac_12_shift_S_R.py +0 -0
  95. {kinbot-2.2.1 → kinbot-2.2.3}/kinbot/reactions/reac_Cyclic_Ether_Formation.py +0 -0
  96. {kinbot-2.2.1 → kinbot-2.2.3}/kinbot/reactions/reac_Diels_alder_addition.py +0 -0
  97. {kinbot-2.2.1 → kinbot-2.2.3}/kinbot/reactions/reac_HO2_Elimination_from_PeroxyRadical.py +0 -0
  98. {kinbot-2.2.1 → kinbot-2.2.3}/kinbot/reactions/reac_Intra_Diels_alder_R.py +0 -0
  99. {kinbot-2.2.1 → kinbot-2.2.3}/kinbot/reactions/reac_Intra_RH_Add_Endocyclic_F.py +0 -0
  100. {kinbot-2.2.1 → kinbot-2.2.3}/kinbot/reactions/reac_Intra_RH_Add_Endocyclic_R.py +0 -0
  101. {kinbot-2.2.1 → kinbot-2.2.3}/kinbot/reactions/reac_Intra_RH_Add_Exocyclic_F.py +0 -0
  102. {kinbot-2.2.1 → kinbot-2.2.3}/kinbot/reactions/reac_Intra_RH_Add_Exocyclic_R.py +0 -0
  103. {kinbot-2.2.1 → kinbot-2.2.3}/kinbot/reactions/reac_Intra_R_Add_Endocyclic_F.py +0 -0
  104. {kinbot-2.2.1 → kinbot-2.2.3}/kinbot/reactions/reac_Intra_R_Add_ExoTetCyclic_F.py +0 -0
  105. {kinbot-2.2.1 → kinbot-2.2.3}/kinbot/reactions/reac_Intra_R_Add_Exocyclic_F.py +0 -0
  106. {kinbot-2.2.1 → kinbot-2.2.3}/kinbot/reactions/reac_Intra_disproportionation_F.py +0 -0
  107. {kinbot-2.2.1 → kinbot-2.2.3}/kinbot/reactions/reac_Intra_disproportionation_R.py +0 -0
  108. {kinbot-2.2.1 → kinbot-2.2.3}/kinbot/reactions/reac_Korcek_step2.py +0 -0
  109. {kinbot-2.2.1 → kinbot-2.2.3}/kinbot/reactions/reac_Korcek_step2_even.py +0 -0
  110. {kinbot-2.2.1 → kinbot-2.2.3}/kinbot/reactions/reac_Korcek_step2_odd.py +0 -0
  111. {kinbot-2.2.1 → kinbot-2.2.3}/kinbot/reactions/reac_R_Addition_COm3_R.py +0 -0
  112. {kinbot-2.2.1 → kinbot-2.2.3}/kinbot/reactions/reac_R_Addition_CSm_R.py +0 -0
  113. {kinbot-2.2.1 → kinbot-2.2.3}/kinbot/reactions/reac_Retro_Ene.py +0 -0
  114. {kinbot-2.2.1 → kinbot-2.2.3}/kinbot/reactions/reac_abstraction.py +0 -0
  115. {kinbot-2.2.1 → kinbot-2.2.3}/kinbot/reactions/reac_barrierless_saddle.py +0 -0
  116. {kinbot-2.2.1 → kinbot-2.2.3}/kinbot/reactions/reac_beta_delta.py +0 -0
  117. {kinbot-2.2.1 → kinbot-2.2.3}/kinbot/reactions/reac_bimol_disproportionation_R.py +0 -0
  118. {kinbot-2.2.1 → kinbot-2.2.3}/kinbot/reactions/reac_birad_recombination_F.py +0 -0
  119. {kinbot-2.2.1 → kinbot-2.2.3}/kinbot/reactions/reac_birad_recombination_R.py +0 -0
  120. {kinbot-2.2.1 → kinbot-2.2.3}/kinbot/reactions/reac_combinatorial.py +0 -0
  121. {kinbot-2.2.1 → kinbot-2.2.3}/kinbot/reactions/reac_cpd_H_migration.py +0 -0
  122. {kinbot-2.2.1 → kinbot-2.2.3}/kinbot/reactions/reac_homolytic_scission.py +0 -0
  123. {kinbot-2.2.1 → kinbot-2.2.3}/kinbot/reactions/reac_intra_H_migration.py +0 -0
  124. {kinbot-2.2.1 → kinbot-2.2.3}/kinbot/reactions/reac_intra_H_migration_suprafacial.py +0 -0
  125. {kinbot-2.2.1 → kinbot-2.2.3}/kinbot/reactions/reac_intra_OH_migration.py +0 -0
  126. {kinbot-2.2.1 → kinbot-2.2.3}/kinbot/reactions/reac_intra_OH_migration_Exocyclic_F.py +0 -0
  127. {kinbot-2.2.1 → kinbot-2.2.3}/kinbot/reactions/reac_intra_R_migration.py +0 -0
  128. {kinbot-2.2.1 → kinbot-2.2.3}/kinbot/reactions/reac_ketoenol.py +0 -0
  129. {kinbot-2.2.1 → kinbot-2.2.3}/kinbot/reactions/reac_r12_cycloaddition.py +0 -0
  130. {kinbot-2.2.1 → kinbot-2.2.3}/kinbot/reactions/reac_r12_insertion_R.py +0 -0
  131. {kinbot-2.2.1 → kinbot-2.2.3}/kinbot/reactions/reac_r13_insertion_CO2.py +0 -0
  132. {kinbot-2.2.1 → kinbot-2.2.3}/kinbot/reactions/reac_r13_insertion_ROR.py +0 -0
  133. {kinbot-2.2.1 → kinbot-2.2.3}/kinbot/reactions/reac_r13_insertion_RSR.py +0 -0
  134. {kinbot-2.2.1 → kinbot-2.2.3}/kinbot/reactions/reac_r14_birad_scission.py +0 -0
  135. {kinbot-2.2.1 → kinbot-2.2.3}/kinbot/reactions/reac_r14_cyclic_birad_scission_R.py +0 -0
  136. {kinbot-2.2.1 → kinbot-2.2.3}/kinbot/reactions/reac_r22_cycloaddition.py +0 -0
  137. {kinbot-2.2.1 → kinbot-2.2.3}/kinbot/reader_qchem.py +0 -0
  138. {kinbot-2.2.1 → kinbot-2.2.3}/kinbot/symmetry.py +0 -0
  139. {kinbot-2.2.1 → kinbot-2.2.3}/kinbot/thread_kinbot.py +0 -0
  140. {kinbot-2.2.1 → kinbot-2.2.3}/kinbot/tpl/__init__.py +0 -0
  141. {kinbot-2.2.1 → kinbot-2.2.3}/kinbot/tpl/ase_gauss_opt_well.tpl.py +0 -0
  142. {kinbot-2.2.1 → kinbot-2.2.3}/kinbot/tpl/ase_gauss_ring_conf.tpl.py +0 -0
  143. {kinbot-2.2.1 → kinbot-2.2.3}/kinbot/tpl/ase_gauss_ts_end.tpl.py +0 -0
  144. {kinbot-2.2.1 → kinbot-2.2.3}/kinbot/tpl/ase_gauss_ts_search.tpl.py +0 -0
  145. {kinbot-2.2.1 → kinbot-2.2.3}/kinbot/tpl/ase_nwchem_freq_well.tpl.py +0 -0
  146. {kinbot-2.2.1 → kinbot-2.2.3}/kinbot/tpl/ase_nwchem_irc.tpl.py +0 -0
  147. {kinbot-2.2.1 → kinbot-2.2.3}/kinbot/tpl/ase_nwchem_opt_well.tpl.py +0 -0
  148. {kinbot-2.2.1 → kinbot-2.2.3}/kinbot/tpl/ase_nwchem_ts_end.tpl.py +0 -0
  149. {kinbot-2.2.1 → kinbot-2.2.3}/kinbot/tpl/ase_nwchem_ts_search.tpl.py +0 -0
  150. {kinbot-2.2.1 → kinbot-2.2.3}/kinbot/tpl/ase_nwchem_ts_search_ase_constraints.tpl.py +0 -0
  151. {kinbot-2.2.1 → kinbot-2.2.3}/kinbot/tpl/ase_qchem_hir.tpl.py +0 -0
  152. {kinbot-2.2.1 → kinbot-2.2.3}/kinbot/tpl/ase_qchem_irc.tpl.py +0 -0
  153. {kinbot-2.2.1 → kinbot-2.2.3}/kinbot/tpl/ase_qchem_opt_well.tpl.py +0 -0
  154. {kinbot-2.2.1 → kinbot-2.2.3}/kinbot/tpl/ase_qchem_ts_end.tpl.py +0 -0
  155. {kinbot-2.2.1 → kinbot-2.2.3}/kinbot/tpl/local_molpro.tpl +0 -0
  156. {kinbot-2.2.1 → kinbot-2.2.3}/kinbot/tpl/mess_2tst.tpl +0 -0
  157. {kinbot-2.2.1 → kinbot-2.2.3}/kinbot/tpl/mess_atom.tpl +0 -0
  158. {kinbot-2.2.1 → kinbot-2.2.3}/kinbot/tpl/mess_barrier.tpl +0 -0
  159. {kinbot-2.2.1 → kinbot-2.2.3}/kinbot/tpl/mess_barrier_union.tpl +0 -0
  160. {kinbot-2.2.1 → kinbot-2.2.3}/kinbot/tpl/mess_bimol.tpl +0 -0
  161. {kinbot-2.2.1 → kinbot-2.2.3}/kinbot/tpl/mess_bimol_union.tpl +0 -0
  162. {kinbot-2.2.1 → kinbot-2.2.3}/kinbot/tpl/mess_core_rr.tpl +0 -0
  163. {kinbot-2.2.1 → kinbot-2.2.3}/kinbot/tpl/mess_dummy.tpl +0 -0
  164. {kinbot-2.2.1 → kinbot-2.2.3}/kinbot/tpl/mess_fragment.tpl +0 -0
  165. {kinbot-2.2.1 → kinbot-2.2.3}/kinbot/tpl/mess_fragment_OH.tpl +0 -0
  166. {kinbot-2.2.1 → kinbot-2.2.3}/kinbot/tpl/mess_freerotor.tpl +0 -0
  167. {kinbot-2.2.1 → kinbot-2.2.3}/kinbot/tpl/mess_header.tpl +0 -0
  168. {kinbot-2.2.1 → kinbot-2.2.3}/kinbot/tpl/mess_hinderedrotor.tpl +0 -0
  169. {kinbot-2.2.1 → kinbot-2.2.3}/kinbot/tpl/mess_outerrrho.tpl +0 -0
  170. {kinbot-2.2.1 → kinbot-2.2.3}/kinbot/tpl/mess_pst.tpl +0 -0
  171. {kinbot-2.2.1 → kinbot-2.2.3}/kinbot/tpl/mess_pstfragment.tpl +0 -0
  172. {kinbot-2.2.1 → kinbot-2.2.3}/kinbot/tpl/mess_rrho.tpl +0 -0
  173. {kinbot-2.2.1 → kinbot-2.2.3}/kinbot/tpl/mess_termol.tpl +0 -0
  174. {kinbot-2.2.1 → kinbot-2.2.3}/kinbot/tpl/mess_ts.tpl +0 -0
  175. {kinbot-2.2.1 → kinbot-2.2.3}/kinbot/tpl/mess_tunneling.tpl +0 -0
  176. {kinbot-2.2.1 → kinbot-2.2.3}/kinbot/tpl/mess_variational.tpl +0 -0
  177. {kinbot-2.2.1 → kinbot-2.2.3}/kinbot/tpl/mess_well.tpl +0 -0
  178. {kinbot-2.2.1 → kinbot-2.2.3}/kinbot/tpl/mess_well_union.tpl +0 -0
  179. {kinbot-2.2.1 → kinbot-2.2.3}/kinbot/tpl/pbs.tpl +0 -0
  180. {kinbot-2.2.1 → kinbot-2.2.3}/kinbot/tpl/pbs_mesmer.tpl +0 -0
  181. {kinbot-2.2.1 → kinbot-2.2.3}/kinbot/tpl/pbs_mess.tpl +0 -0
  182. {kinbot-2.2.1 → kinbot-2.2.3}/kinbot/tpl/pbs_mess_uq.tpl +0 -0
  183. {kinbot-2.2.1 → kinbot-2.2.3}/kinbot/tpl/pbs_molpro.tpl +0 -0
  184. {kinbot-2.2.1 → kinbot-2.2.3}/kinbot/tpl/pbs_python.tpl +0 -0
  185. {kinbot-2.2.1 → kinbot-2.2.3}/kinbot/tpl/slurm.tpl +0 -0
  186. {kinbot-2.2.1 → kinbot-2.2.3}/kinbot/tpl/slurm_mesmer.tpl +0 -0
  187. {kinbot-2.2.1 → kinbot-2.2.3}/kinbot/tpl/slurm_mess.tpl +0 -0
  188. {kinbot-2.2.1 → kinbot-2.2.3}/kinbot/tpl/slurm_mess_uq.tpl +0 -0
  189. {kinbot-2.2.1 → kinbot-2.2.3}/kinbot/tpl/slurm_orca.tpl +0 -0
  190. {kinbot-2.2.1 → kinbot-2.2.3}/kinbot/tpl/slurm_python.tpl +0 -0
  191. {kinbot-2.2.1 → kinbot-2.2.3}/kinbot/uncertaintyAnalysis.py +0 -0
  192. {kinbot-2.2.1 → kinbot-2.2.3}/setup.cfg +0 -0
  193. {kinbot-2.2.1 → kinbot-2.2.3}/tests/__init__.py +0 -0
  194. {kinbot-2.2.1 → kinbot-2.2.3}/tests/bfgs.py +0 -0
  195. {kinbot-2.2.1 → kinbot-2.2.3}/tests/cheminfo.py +0 -0
  196. {kinbot-2.2.1 → kinbot-2.2.3}/tests/dihedrals.py +0 -0
  197. {kinbot-2.2.1 → kinbot-2.2.3}/tests/find_motif.py +0 -0
  198. {kinbot-2.2.1 → kinbot-2.2.3}/tests/frequencies.py +0 -0
  199. {kinbot-2.2.1 → kinbot-2.2.3}/tests/geometry.py +0 -0
  200. {kinbot-2.2.1 → kinbot-2.2.3}/tests/modify_geom.py +0 -0
  201. {kinbot-2.2.1 → kinbot-2.2.3}/tests/multimolecular.py +0 -0
  202. {kinbot-2.2.1 → kinbot-2.2.3}/tests/resonance.py +0 -0
  203. {kinbot-2.2.1 → kinbot-2.2.3}/tests/symmetry.py +0 -0
  204. {kinbot-2.2.1 → kinbot-2.2.3}/tests/test_kinbot.py +0 -0
@@ -0,0 +1,190 @@
1
+ Metadata-Version: 2.1
2
+ Name: kinbot
3
+ Version: 2.2.3
4
+ Summary: Automated reaction kinetics for gas-phase species
5
+ Author-email: Judit Zádor <jzador@sandia.gov>, Ruben Van de Vijver <ruben.vandevijver@ugent.be>, Carles Martí <cmartia@sandia.gov>, Clément Soulié <csoulie@sandia.gov>, Amanda Dewyer <adewyer@sandia.gov>
6
+ Maintainer-email: Judit Zádor <jzador@sandia.gov>, Clément Soulié <csoulie@sandia.gov>
7
+ License: BSD 3-Clause License
8
+
9
+ Copyright (c) 2018, National Technology & Engineering Solutions of Sandia,
10
+ LLC (NTESS). Under the terms of Contract DE-NA0003525 with NTESS,
11
+ the U.S. Government retains certain rights in this software
12
+
13
+ Redistribution and use in source and binary forms, with or without
14
+ modification, are permitted provided that the following conditions are met:
15
+
16
+ * Redistributions of source code must retain the above copyright notice, this
17
+ list of conditions and the following disclaimer.
18
+
19
+ * Redistributions in binary form must reproduce the above copyright notice,
20
+ this list of conditions and the following disclaimer in the documentation
21
+ and/or other materials provided with the distribution.
22
+
23
+ * Neither the name of the copyright holder nor the names of its
24
+ contributors may be used to endorse or promote products derived from
25
+ this software without specific prior written permission.
26
+
27
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
28
+ AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
29
+ IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
30
+ DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
31
+ FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
32
+ DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
33
+ SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
34
+ CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
35
+ OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
36
+ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
37
+
38
+ Project-URL: homepage, https://github.com/zadorlab/KinBot
39
+ Project-URL: documentation, https://github.com/zadorlab/KinBot/wiki
40
+ Classifier: Environment :: Console
41
+ Classifier: Intended Audience :: Science/Research
42
+ Classifier: Natural Language :: English
43
+ Classifier: License :: OSI Approved :: BSD License
44
+ Classifier: Operating System :: OS Independent
45
+ Classifier: Programming Language :: Python :: 3.10
46
+ Classifier: Topic :: Scientific/Engineering :: Chemistry
47
+ Requires-Python: >=3.10
48
+ Description-Content-Type: text/markdown
49
+ License-File: LICENSE
50
+ Requires-Dist: numpy>=1.17.0
51
+ Requires-Dist: ase>=3.19
52
+ Requires-Dist: networkx
53
+ Requires-Dist: rmsd>=1.5.1
54
+ Requires-Dist: sella
55
+ Provides-Extra: plot
56
+ Requires-Dist: matplotlib; extra == "plot"
57
+ Requires-Dist: pyvis; extra == "plot"
58
+ Requires-Dist: rdkit; extra == "plot"
59
+
60
+ [![Gitter chat](https://badges.gitter.im/gitterHQ/gitter.png)](https://gitter.im/zadorlab/KinBot)
61
+
62
+ # KinBot: Automated Reaction Kinetics of Gas-Phase Organic Species over Multiwell Potential Energy Surfaces
63
+
64
+ <p>
65
+ <img src="https://raw.githubusercontent.com/zadorlab/KinBot/master/graphics/kinbot_logo_V2.png" width="220" height="240" />
66
+ </p>
67
+
68
+ ## Description
69
+ This repository contains the KinBot code version 2.2.1,
70
+ a tool for automatically searching for reactions on the potential energy surface.
71
+
72
+ If you are using this tool in scientific publications, please reference the following publications:
73
+
74
+ * Ruben Van de Vijver, Judit Zádor: KinBot: _Automated stationary point search on potential energy surfaces_, Comp. Phys. Comm., **2019**, 248, 106947. https://doi.org/10.1016/j.cpc.2019.106947
75
+ ```
76
+ @article{Vijver2020,
77
+ author = {Van de Vijver, Ruben and Z\'ador, Judit},
78
+ title = {KinBot: Automated stationary point search on potential energy surfaces},
79
+ journal = {Comput. Phys. Commun.},
80
+ volume = {248},
81
+ pages = {106947},
82
+ year = {2020},
83
+ type = {Journal Article}
84
+ }
85
+ ```
86
+ * Judit Zádor, Carles Martí, Ruben Van de Vijver, Sommer L. Johansen, Yoona Yang, Hope A. Michelsen, Habib N. Najm: _Automated reaction kinetics of gas-phase organic species over multiwell potential energy surfaces_, J. Phys. Chem. A, **2023**, 127, 565–588. https://doi.org/10.1021/acs.jpca.2c06558
87
+
88
+ ```
89
+ @article{Zador2022,
90
+ author = {Z\'ador, Judit and Mart\'i, Carles and Van de Vijver, Ruben and Johansen, Sommer L. and Yang, Yoona and Michelsen, Hope A. and Najm, Habib N.},
91
+ title = {Automated reaction kinetics of gas-phase organic species over multiwell potential energy surfaces},
92
+ journal = {J. Phys. Chem. A},
93
+ volume = {127},
94
+ pages = {565-588},
95
+ year = {2023},
96
+ type = {Journal Article}
97
+ }
98
+ ```
99
+
100
+ We appreciate if you send us the DOI of your published paper that used KinBot, so we can feature it here below.
101
+
102
+ ## How to Install
103
+
104
+ KinBot can be installed both in three different ways, from the PyPI index (`pip install`), from the conda-forge repo (`conda install`) or by cloning this github repo and then install it locally.
105
+
106
+ ### PyPI
107
+
108
+ pip install kinbot
109
+
110
+ > **Note**
111
+ > KinBot only works with Python >= 3.10.
112
+
113
+ ### conda-forge
114
+
115
+ conda install -c conda-forge kinbot
116
+
117
+ ### From Github
118
+
119
+ If you want to have the very last version of KinBot without waiting for a
120
+ release or you want to modify KinBot acccording to your needs you can clone the project
121
+ from github:
122
+
123
+ git clone git@github.com:zadorlab/KinBot.git
124
+
125
+ and then, from within the KinBot directory produced after cloning, type:
126
+
127
+ pip install -e .
128
+
129
+ > **Note**
130
+ > If you want to modify KinBot yourself it's better to fork the project
131
+ > into your own repository and then clone it.
132
+
133
+ ## How to Run
134
+ To run a single-well exploration of KinBot, make an input file (e.g. input.json) and run:
135
+
136
+ kinbot input.json
137
+
138
+ To run a full PES search, make an input file (e.g. input.json) and run:
139
+
140
+ pes input.json
141
+
142
+ You can find additional command line arguments in the manual.
143
+
144
+ ## Documentation
145
+ See the [wiki](https://github.com/zadorlab/KinBot/wiki) for keywords, and our [tutorial](https://hackmd.io/@jzador/kinbot_workshop_2023#/) for a more hands-on introduction to the code.
146
+
147
+ ## List of files in this project
148
+ See [list](https://github.com/zadorlab/KinBot/wiki/KinBot-file-structure).
149
+
150
+ ## Authors
151
+ * Judit Zádor (jzador@sandia.gov)
152
+ * Ruben Van de Vijver
153
+ * Amanda Dewyer
154
+ * Carles Martí
155
+ * Clément Soulié (csoulie@sandia.gov)
156
+
157
+ ## Papers using KinBot
158
+ 1. Almeida, T. G., Martí, C., Kurtén, T., Zádor, J., Johansen, S. L.: _Theoretical analysis of the OH-Initiated atmospheric oxidation reactions of imidazole_. Phys. Chem. Chem. Phys., **2024** 26 23570-23587. https://doi.org/10.1039/D4CP02103G
159
+ 2. Yuan, E. C.-Y., Kumar, A., Guan, X., Hermes, E. D., Rosen, A. S., Zádor, J., Head-Gordon, T., Blau, S. M.: _Analytical ab initio Hessian from a Deep Learning Potential for Transition State Optimization_. Nat. Comm., **2024**
160
+ 3. Doner, A. C., Zádor, J., Rotavera, B.: _Stereoisomer-dependent rate coefficients and reaction mechanisms of 2-ethyloxetanylperoxy radicals_. Proc. Combust. Inst., **2024**, 40, 105578. https://doi.org/10.1016/j.proci.2024.105578
161
+ 4. Hansen, N. A, Price, T. D., Filardi, L. R., Gurses, S. M., Zhou, W., Hansen, N., Osborn, D. L. Zádor, J., Kronawitter, C. X.: _The photoionization of methoxymethanol: Fingerprinting a reactive C2 oxygenate in a complex reactive mixture_. J. Chem. Phys., **2024**, 160, 124306. https://doi.org/10.1063/5.0197827
162
+ 5. Martí, C., Devereux, C., Najm, H. N., Zádor, J.: _Evaluation of rate coefficients in the gas-phase using a machine learned potential_. J. Phys. Chem. A, **2024**, 128, 1958–1971. https://doi.org/10.1021/acs.jpca.3c07872
163
+ 6. Lang, J., Foley, C. D., Thawoos, S., Behzadfar, A., Liu, Y., Zádor, J., Suits, A. G.: _Reaction dynamics of S(3P) with 1,3-butadiene and isoprene: Crossed beam scattering, low temperature flow experiments, and high-level electronic structure calculations_. Farad. Discuss., **2024**, 251, 550-572. https://doi.org/10.1039/D4FD00009A
164
+ 7. Wang, D., Tian, Z.-Y., Zheng, Z.-H., Li, W., Wu, L.-N., Kuang, J.-J., Yang, J.-Z.: _Experimental and modeling study of the n, n-dimethylformamide pyrolysis at atmospheric pressure_. Combust. Flame, **2024**, 260, 113240. https://doi.org/10.1016/j.combustflame.2023.113240
165
+ 8. Doner, A. C., Zádor, J., Rotavera, B.: _Unimolecular reactions of 2,4-dimethyloxetanyl radicals._ J. Phys. Chem A, **2023**, 127, 2591–2600 https://doi.org/10.1021/acs.jpca.2c08290
166
+ 9. Li, H., Lang, J., Foley, C. D., Zádor, J., Suits, A. G.: _Sulfur (3P) reaction with conjugated dienes gives cyclization to thiophenes under single collision conditions._ J. Phys. Chem. Letters, **2023**, 14, 7611–7617. https://doi.org/10.1021/acs.jpclett.3c01953
167
+ 10. Martí, C., Michelsen, H. A., Najm, H. N., Zádor, J.: _Comprehensive kinetics on the C7H7 potential energy surface under combustion conditions._ J. Phys. Chem. A, **2023**, 127, 1941–1959. https://pubs.acs.org/doi/full/10.1021/acs.jpca.2c08035
168
+ 11. Zádor, J, Martí, C., Van de Vijver, R., Johansen, S. L., Yang, Y., Michelsen, H. A., Najm, H. N.: _Automated reaction kinetics of gas-phase organic species over multiwell potential energy surfaces._ J. Phys. Chem. A, **2023**, 127, 565–588. https://doi.org/10.1021/acs.jpca.2c06558
169
+ 12. Lockwood, K. S., Ahmed, S. F., Huq, N. A., Stutzman, S. C., Foust, T. D., Labbe, N. J.: _Advances in predictive chemistry enable a multi-scale rational design approach for biofuels with advantaged properties_ Sustainable Energy Fuels, **2022**, 6, 5371-5383. https://doi.org/10.1039/D2SE00773H
170
+ 13. Takahashi, L., Yoshida, S., Fujima, J., Oikawa, H., Takahashi, K.: _Unveiling the reaction pathways of hydrocarbons via experiments, computations and data science._ Phys. Chem. Chem. Phys., **2022**, 24, 29841-29849. https://pubs.rsc.org/en/content/articlelanding/2022/CP/D2CP04499D
171
+ 14. Doner, A. C., Zádor, J., Rotavera, B.: _Stereoisomer-dependent unimolecular kinetics of 2,4-dimethyloxetane peroxy radicals._ Faraday Discuss., **2022**, 238, 295-319. https://doi.org/10.1039/D2FD00029F
172
+ 15. Ramasesha, K., Savee, J. D., Zádor, J., Osborn, D. L.: _A New Pathway for Intersystem Crossing: Unexpected Products in the O(3P) + Cyclopentene Reaction._ J. Phys. Chem. A, **2021**, 125 9785-9801. https://doi.org/10.1021/acs.jpca.1c05817
173
+ 16. Rogers, C. O, Lockwood, K. S., Nguyen, Q. L. D., Labbe, N. J.: _Diol isomer revealed as a source of methyl ketene from propionic acid unimolecular decomposition._ Int. J. Chem. Kinet., **2021**, 53, 1272–1284. https://doi.org/10.1002/kin.21532
174
+ 17. Lockwood, K. S., Labbe, N. J.: _Insights on keto-hydroperoxide formation from O2 addition to the beta-tetrahydrofuran radical._ Proceedings of the Combustion Institute, **2021**, 38, 1, 533. https://doi.org/10.1016/j.proci.2020.06.357
175
+ 18. Sheps, L., Dewyer, A. L., Demireva, M., and Zádor, J.: _Quantitative Detection of Products and Radical Intermediates in Low-Temperature Oxidation of Cyclopentane._ J. Phys. Chem. A **2021**, 125, 20, 4467. https://doi.org/10.1021/acs.jpca.1c02001
176
+ 19. Zhang, J., Vermeire, F., Van de Vijver, R., Herbinet, O.; Battin-Leclerc, F., Reyniers, M.-F., Van Geem, K. M.: _Detailed experimental and kinetic modeling study of 3-carene pyrolysis._ Int. J. Chem. Kinet., **2020**, 52, 785-795. https://doi.org/10.1002/kin.21400
177
+ 20. Van de Vijver, R., Zádor, J.: _KinBot: Automated stationary point search on potential energy surfaces._ Computer Physics Communications, **2020**, 248, 106947. https://doi.org/10.1016/j.cpc.2019.106947
178
+ 21. Joshi, S. P., Seal, P., Pekkanen, T. T., Timonen, R. S., Eskola, A. J.: _Direct Kinetic Measurements and Master Equation Modelling of the Unimolecular Decomposition of Resonantly-Stabilized CH2CHCHC(O)OCH3 Radical and an Upper Limit Determination for CH2CHCHC(O)OCH3+O2 Reaction._ Z. Phys. Chem., **2020**, 234, 1251. https://doi.org/10.1515/zpch-2020-1612
179
+
180
+ Older Version of KinBot:
181
+ 1. Van de Vijver, R., Van Geem, K. M., Marin, G. B., Zádor, J.: _Decomposition and isomerization of 1-pentanol radicals and the pyrolysis of 1-pentanol._ Combustion and Flame, **2018,** 196, 500. https://doi.org/10.1016/j.combustflame.2018.05.011
182
+ 2. Grambow, C. A., Jamal, A., Li, Y.-P., Green, W. H., Zádor, J., Suleimanov, Y. V.: _Unimolecular reaction pathways of a g-ketohydroperoxide from combined application of automated reaction discovery methods._ J. Am. Chem. Soc., 2018, 140, 1035. https://doi.org/10.1021/jacs.7b11009
183
+ 3. Rotavera, B., Savee, J. D., Antonov, I. O., Caravan, R. L., Sheps, L., Osborn, D. L., Zádor, J., Taatjes, C. A.: _Influence of oxygenation in cyclic hydrocarbons on chain-termination reactions from R + O2: tetrahydropyran and cyclohexane._ Proceedings of the Combustion Institute, **2017,** 36, 597. https://doi.org/10.1016/j.proci.2016.05.020
184
+ 4. Antonov, I. O., Zádor, J., Rotavera, B., Papajak, E., Osborn, D. L., Taatjes, C. A., Sheps, L.: _Pressure-Dependent Competition among Reaction Pathways from First- and Second-O2 Additions in the Low-Temperature Oxidation of Tetrahydrofuran._ J. Phys. Chem. A, **2016,** 120 6582. https://doi.org/10.1021/acs.jpca.6b05411
185
+ 5. Antonov, I. O., Kwok, J., Zádor, J., Sheps, L.: OH + 2-butene: A combined experimental and theoretical study in the 300-800 K temperature range. J. Phys. Chem. A, **2015,** 119, 7742. https://doi.org/10.1021/acs.jpca.5b01012
186
+ 6. Zádor, J., Miller, J.A.: _Adventures on the C3H5O potential energy surface: OH + propyne, OH + allene and related reactions._ Proceedings of the Combustion Institute, **2015,** 35, 181. https://doi.org/10.1016/j.proci.2014.05.103
187
+ 7. Rotavera, B., Zádor, J., Welz, O., Sheps, L., Scheer, A.M., Savee, J.D., Ali, M.A., Lee, T.S., Simmons, B.A., Osborn, D.L., Violi, A., Taatjes, C.A.: _Photoionization mass spectrometric measurements of initial reaction pathways in low-temperature oxidation of 2,5-dimethylhexane._ J. Phys. Chem. A, **2014,** 44, 10188. https://doi.org/10.1021/jp507811d
188
+
189
+ ## Acknowledgement
190
+ This research was supported by the Exascale Computing Project (ECP), Project Number: 17-SC-20-SC, a collaborative effort of two DOE organizations, the Office of Science and the National Nuclear Security Administration, responsible for the planning and preparation of a capable exascale ecosystem including software, applications, hardware, advanced system engineering, and early test bed platforms to support the nation's exascale computing imperative. RVdV was also supported by the AITSTME project as part of the Predictive Theory and Modeling component of the Materials Genome Initiative. Sandia National Laboratories is a multimission laboratory managed and operated by National Technology and Engineering Solutions of Sandia, LLC., a wholly owned subsidiary of Honeywell International, Inc., for the U.S. Department of Energy’s National Nuclear Security Administration under contract DE-NA0003525.
@@ -16,6 +16,7 @@ kinbot/conformers.py
16
16
  kinbot/constants.py
17
17
  kinbot/exceptions.py
18
18
  kinbot/find_motif.py
19
+ kinbot/fragments.py
19
20
  kinbot/frequencies.py
20
21
  kinbot/geometry.py
21
22
  kinbot/hindered_rotors.py
@@ -31,6 +32,8 @@ kinbot/orca.py
31
32
  kinbot/parameters.py
32
33
  kinbot/pes.py
33
34
  kinbot/postprocess.py
35
+ kinbot/pp_settings.py
36
+ kinbot/pp_tables.py
34
37
  kinbot/qc.py
35
38
  kinbot/reac_General.py
36
39
  kinbot/reac_family.py
@@ -44,6 +47,8 @@ kinbot/symmetry.py
44
47
  kinbot/thread_kinbot.py
45
48
  kinbot/uncertaintyAnalysis.py
46
49
  kinbot/utils.py
50
+ kinbot/vrc_tst_scan.py
51
+ kinbot/vrc_tst_surfaces.py
47
52
  kinbot/zmatrix.py
48
53
  kinbot.egg-info/PKG-INFO
49
54
  kinbot.egg-info/SOURCES.txt
@@ -55,6 +60,7 @@ kinbot/ase_modules/__init__.py
55
60
  kinbot/ase_modules/constraints.py
56
61
  kinbot/ase_modules/calculators/__init__.py
57
62
  kinbot/ase_modules/calculators/gaussian.py
63
+ kinbot/ase_modules/calculators/nn_pes.py
58
64
  kinbot/ase_modules/calculators/qchem.py
59
65
  kinbot/ase_modules/io/__init__.py
60
66
  kinbot/ase_modules/io/formats.py
@@ -114,6 +120,7 @@ kinbot/tpl/ase_gauss_opt_well.tpl.py
114
120
  kinbot/tpl/ase_gauss_ring_conf.tpl.py
115
121
  kinbot/tpl/ase_gauss_ts_end.tpl.py
116
122
  kinbot/tpl/ase_gauss_ts_search.tpl.py
123
+ kinbot/tpl/ase_gauss_vts.tpl.py
117
124
  kinbot/tpl/ase_nwchem_freq_well.tpl.py
118
125
  kinbot/tpl/ase_nwchem_irc.tpl.py
119
126
  kinbot/tpl/ase_nwchem_opt_well.tpl.py
@@ -131,6 +138,7 @@ kinbot/tpl/ase_sella_opt_well.tpl.py
131
138
  kinbot/tpl/ase_sella_ring_conf.tpl.py
132
139
  kinbot/tpl/ase_sella_ts_end.tpl.py
133
140
  kinbot/tpl/ase_sella_ts_search.tpl.py
141
+ kinbot/tpl/ase_sella_vts.tpl.py
134
142
  kinbot/tpl/local_molpro.tpl
135
143
  kinbot/tpl/mess_2tst.tpl
136
144
  kinbot/tpl/mess_atom.tpl
@@ -146,6 +154,7 @@ kinbot/tpl/mess_fragment_OH.tpl
146
154
  kinbot/tpl/mess_freerotor.tpl
147
155
  kinbot/tpl/mess_header.tpl
148
156
  kinbot/tpl/mess_hinderedrotor.tpl
157
+ kinbot/tpl/mess_hinderedrotorgeom.tpl
149
158
  kinbot/tpl/mess_outerrrho.tpl
150
159
  kinbot/tpl/mess_pst.tpl
151
160
  kinbot/tpl/mess_pstfragment.tpl
@@ -157,6 +166,8 @@ kinbot/tpl/mess_variational.tpl
157
166
  kinbot/tpl/mess_well.tpl
158
167
  kinbot/tpl/mess_well_union.tpl
159
168
  kinbot/tpl/molpro.tpl
169
+ kinbot/tpl/molpro_ts_search.tpl.py
170
+ kinbot/tpl/molpro_vts.tpl
160
171
  kinbot/tpl/pbs.tpl
161
172
  kinbot/tpl/pbs_mesmer.tpl
162
173
  kinbot/tpl/pbs_mess.tpl
@@ -164,6 +175,11 @@ kinbot/tpl/pbs_mess_uq.tpl
164
175
  kinbot/tpl/pbs_molpro.tpl
165
176
  kinbot/tpl/pbs_python.tpl
166
177
  kinbot/tpl/pesviewer.inp.tpl
178
+ kinbot/tpl/rotdPy.tpl
179
+ kinbot/tpl/rotdPy_1d_corr.tpl
180
+ kinbot/tpl/rotdPy_calc.tpl
181
+ kinbot/tpl/rotdPy_frag.tpl
182
+ kinbot/tpl/rotdPy_surf.tpl
167
183
  kinbot/tpl/slurm.tpl
168
184
  kinbot/tpl/slurm_mesmer.tpl
169
185
  kinbot/tpl/slurm_mess.tpl
@@ -2,6 +2,7 @@ numpy>=1.17.0
2
2
  ase>=3.19
3
3
  networkx
4
4
  rmsd>=1.5.1
5
+ sella
5
6
 
6
7
  [plot]
7
8
  matplotlib
@@ -1,3 +1,6 @@
1
+ build
1
2
  examples
2
3
  kinbot
4
+ reactions
3
5
  tests
6
+ tpl
@@ -1,7 +1,8 @@
1
1
  BSD 3-Clause License
2
2
 
3
- Copyright (c) 2018, zadorlab
4
- All rights reserved.
3
+ Copyright (c) 2018, National Technology & Engineering Solutions of Sandia,
4
+ LLC (NTESS). Under the terms of Contract DE-NA0003525 with NTESS,
5
+ the U.S. Government retains certain rights in this software
5
6
 
6
7
  Redistribution and use in source and binary forms, with or without
7
8
  modification, are permitted provided that the following conditions are met:
kinbot-2.2.3/PKG-INFO ADDED
@@ -0,0 +1,190 @@
1
+ Metadata-Version: 2.1
2
+ Name: kinbot
3
+ Version: 2.2.3
4
+ Summary: Automated reaction kinetics for gas-phase species
5
+ Author-email: Judit Zádor <jzador@sandia.gov>, Ruben Van de Vijver <ruben.vandevijver@ugent.be>, Carles Martí <cmartia@sandia.gov>, Clément Soulié <csoulie@sandia.gov>, Amanda Dewyer <adewyer@sandia.gov>
6
+ Maintainer-email: Judit Zádor <jzador@sandia.gov>, Clément Soulié <csoulie@sandia.gov>
7
+ License: BSD 3-Clause License
8
+
9
+ Copyright (c) 2018, National Technology & Engineering Solutions of Sandia,
10
+ LLC (NTESS). Under the terms of Contract DE-NA0003525 with NTESS,
11
+ the U.S. Government retains certain rights in this software
12
+
13
+ Redistribution and use in source and binary forms, with or without
14
+ modification, are permitted provided that the following conditions are met:
15
+
16
+ * Redistributions of source code must retain the above copyright notice, this
17
+ list of conditions and the following disclaimer.
18
+
19
+ * Redistributions in binary form must reproduce the above copyright notice,
20
+ this list of conditions and the following disclaimer in the documentation
21
+ and/or other materials provided with the distribution.
22
+
23
+ * Neither the name of the copyright holder nor the names of its
24
+ contributors may be used to endorse or promote products derived from
25
+ this software without specific prior written permission.
26
+
27
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
28
+ AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
29
+ IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
30
+ DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
31
+ FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
32
+ DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
33
+ SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
34
+ CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
35
+ OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
36
+ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
37
+
38
+ Project-URL: homepage, https://github.com/zadorlab/KinBot
39
+ Project-URL: documentation, https://github.com/zadorlab/KinBot/wiki
40
+ Classifier: Environment :: Console
41
+ Classifier: Intended Audience :: Science/Research
42
+ Classifier: Natural Language :: English
43
+ Classifier: License :: OSI Approved :: BSD License
44
+ Classifier: Operating System :: OS Independent
45
+ Classifier: Programming Language :: Python :: 3.10
46
+ Classifier: Topic :: Scientific/Engineering :: Chemistry
47
+ Requires-Python: >=3.10
48
+ Description-Content-Type: text/markdown
49
+ License-File: LICENSE
50
+ Requires-Dist: numpy>=1.17.0
51
+ Requires-Dist: ase>=3.19
52
+ Requires-Dist: networkx
53
+ Requires-Dist: rmsd>=1.5.1
54
+ Requires-Dist: sella
55
+ Provides-Extra: plot
56
+ Requires-Dist: matplotlib; extra == "plot"
57
+ Requires-Dist: pyvis; extra == "plot"
58
+ Requires-Dist: rdkit; extra == "plot"
59
+
60
+ [![Gitter chat](https://badges.gitter.im/gitterHQ/gitter.png)](https://gitter.im/zadorlab/KinBot)
61
+
62
+ # KinBot: Automated Reaction Kinetics of Gas-Phase Organic Species over Multiwell Potential Energy Surfaces
63
+
64
+ <p>
65
+ <img src="https://raw.githubusercontent.com/zadorlab/KinBot/master/graphics/kinbot_logo_V2.png" width="220" height="240" />
66
+ </p>
67
+
68
+ ## Description
69
+ This repository contains the KinBot code version 2.2.1,
70
+ a tool for automatically searching for reactions on the potential energy surface.
71
+
72
+ If you are using this tool in scientific publications, please reference the following publications:
73
+
74
+ * Ruben Van de Vijver, Judit Zádor: KinBot: _Automated stationary point search on potential energy surfaces_, Comp. Phys. Comm., **2019**, 248, 106947. https://doi.org/10.1016/j.cpc.2019.106947
75
+ ```
76
+ @article{Vijver2020,
77
+ author = {Van de Vijver, Ruben and Z\'ador, Judit},
78
+ title = {KinBot: Automated stationary point search on potential energy surfaces},
79
+ journal = {Comput. Phys. Commun.},
80
+ volume = {248},
81
+ pages = {106947},
82
+ year = {2020},
83
+ type = {Journal Article}
84
+ }
85
+ ```
86
+ * Judit Zádor, Carles Martí, Ruben Van de Vijver, Sommer L. Johansen, Yoona Yang, Hope A. Michelsen, Habib N. Najm: _Automated reaction kinetics of gas-phase organic species over multiwell potential energy surfaces_, J. Phys. Chem. A, **2023**, 127, 565–588. https://doi.org/10.1021/acs.jpca.2c06558
87
+
88
+ ```
89
+ @article{Zador2022,
90
+ author = {Z\'ador, Judit and Mart\'i, Carles and Van de Vijver, Ruben and Johansen, Sommer L. and Yang, Yoona and Michelsen, Hope A. and Najm, Habib N.},
91
+ title = {Automated reaction kinetics of gas-phase organic species over multiwell potential energy surfaces},
92
+ journal = {J. Phys. Chem. A},
93
+ volume = {127},
94
+ pages = {565-588},
95
+ year = {2023},
96
+ type = {Journal Article}
97
+ }
98
+ ```
99
+
100
+ We appreciate if you send us the DOI of your published paper that used KinBot, so we can feature it here below.
101
+
102
+ ## How to Install
103
+
104
+ KinBot can be installed both in three different ways, from the PyPI index (`pip install`), from the conda-forge repo (`conda install`) or by cloning this github repo and then install it locally.
105
+
106
+ ### PyPI
107
+
108
+ pip install kinbot
109
+
110
+ > **Note**
111
+ > KinBot only works with Python >= 3.10.
112
+
113
+ ### conda-forge
114
+
115
+ conda install -c conda-forge kinbot
116
+
117
+ ### From Github
118
+
119
+ If you want to have the very last version of KinBot without waiting for a
120
+ release or you want to modify KinBot acccording to your needs you can clone the project
121
+ from github:
122
+
123
+ git clone git@github.com:zadorlab/KinBot.git
124
+
125
+ and then, from within the KinBot directory produced after cloning, type:
126
+
127
+ pip install -e .
128
+
129
+ > **Note**
130
+ > If you want to modify KinBot yourself it's better to fork the project
131
+ > into your own repository and then clone it.
132
+
133
+ ## How to Run
134
+ To run a single-well exploration of KinBot, make an input file (e.g. input.json) and run:
135
+
136
+ kinbot input.json
137
+
138
+ To run a full PES search, make an input file (e.g. input.json) and run:
139
+
140
+ pes input.json
141
+
142
+ You can find additional command line arguments in the manual.
143
+
144
+ ## Documentation
145
+ See the [wiki](https://github.com/zadorlab/KinBot/wiki) for keywords, and our [tutorial](https://hackmd.io/@jzador/kinbot_workshop_2023#/) for a more hands-on introduction to the code.
146
+
147
+ ## List of files in this project
148
+ See [list](https://github.com/zadorlab/KinBot/wiki/KinBot-file-structure).
149
+
150
+ ## Authors
151
+ * Judit Zádor (jzador@sandia.gov)
152
+ * Ruben Van de Vijver
153
+ * Amanda Dewyer
154
+ * Carles Martí
155
+ * Clément Soulié (csoulie@sandia.gov)
156
+
157
+ ## Papers using KinBot
158
+ 1. Almeida, T. G., Martí, C., Kurtén, T., Zádor, J., Johansen, S. L.: _Theoretical analysis of the OH-Initiated atmospheric oxidation reactions of imidazole_. Phys. Chem. Chem. Phys., **2024** 26 23570-23587. https://doi.org/10.1039/D4CP02103G
159
+ 2. Yuan, E. C.-Y., Kumar, A., Guan, X., Hermes, E. D., Rosen, A. S., Zádor, J., Head-Gordon, T., Blau, S. M.: _Analytical ab initio Hessian from a Deep Learning Potential for Transition State Optimization_. Nat. Comm., **2024**
160
+ 3. Doner, A. C., Zádor, J., Rotavera, B.: _Stereoisomer-dependent rate coefficients and reaction mechanisms of 2-ethyloxetanylperoxy radicals_. Proc. Combust. Inst., **2024**, 40, 105578. https://doi.org/10.1016/j.proci.2024.105578
161
+ 4. Hansen, N. A, Price, T. D., Filardi, L. R., Gurses, S. M., Zhou, W., Hansen, N., Osborn, D. L. Zádor, J., Kronawitter, C. X.: _The photoionization of methoxymethanol: Fingerprinting a reactive C2 oxygenate in a complex reactive mixture_. J. Chem. Phys., **2024**, 160, 124306. https://doi.org/10.1063/5.0197827
162
+ 5. Martí, C., Devereux, C., Najm, H. N., Zádor, J.: _Evaluation of rate coefficients in the gas-phase using a machine learned potential_. J. Phys. Chem. A, **2024**, 128, 1958–1971. https://doi.org/10.1021/acs.jpca.3c07872
163
+ 6. Lang, J., Foley, C. D., Thawoos, S., Behzadfar, A., Liu, Y., Zádor, J., Suits, A. G.: _Reaction dynamics of S(3P) with 1,3-butadiene and isoprene: Crossed beam scattering, low temperature flow experiments, and high-level electronic structure calculations_. Farad. Discuss., **2024**, 251, 550-572. https://doi.org/10.1039/D4FD00009A
164
+ 7. Wang, D., Tian, Z.-Y., Zheng, Z.-H., Li, W., Wu, L.-N., Kuang, J.-J., Yang, J.-Z.: _Experimental and modeling study of the n, n-dimethylformamide pyrolysis at atmospheric pressure_. Combust. Flame, **2024**, 260, 113240. https://doi.org/10.1016/j.combustflame.2023.113240
165
+ 8. Doner, A. C., Zádor, J., Rotavera, B.: _Unimolecular reactions of 2,4-dimethyloxetanyl radicals._ J. Phys. Chem A, **2023**, 127, 2591–2600 https://doi.org/10.1021/acs.jpca.2c08290
166
+ 9. Li, H., Lang, J., Foley, C. D., Zádor, J., Suits, A. G.: _Sulfur (3P) reaction with conjugated dienes gives cyclization to thiophenes under single collision conditions._ J. Phys. Chem. Letters, **2023**, 14, 7611–7617. https://doi.org/10.1021/acs.jpclett.3c01953
167
+ 10. Martí, C., Michelsen, H. A., Najm, H. N., Zádor, J.: _Comprehensive kinetics on the C7H7 potential energy surface under combustion conditions._ J. Phys. Chem. A, **2023**, 127, 1941–1959. https://pubs.acs.org/doi/full/10.1021/acs.jpca.2c08035
168
+ 11. Zádor, J, Martí, C., Van de Vijver, R., Johansen, S. L., Yang, Y., Michelsen, H. A., Najm, H. N.: _Automated reaction kinetics of gas-phase organic species over multiwell potential energy surfaces._ J. Phys. Chem. A, **2023**, 127, 565–588. https://doi.org/10.1021/acs.jpca.2c06558
169
+ 12. Lockwood, K. S., Ahmed, S. F., Huq, N. A., Stutzman, S. C., Foust, T. D., Labbe, N. J.: _Advances in predictive chemistry enable a multi-scale rational design approach for biofuels with advantaged properties_ Sustainable Energy Fuels, **2022**, 6, 5371-5383. https://doi.org/10.1039/D2SE00773H
170
+ 13. Takahashi, L., Yoshida, S., Fujima, J., Oikawa, H., Takahashi, K.: _Unveiling the reaction pathways of hydrocarbons via experiments, computations and data science._ Phys. Chem. Chem. Phys., **2022**, 24, 29841-29849. https://pubs.rsc.org/en/content/articlelanding/2022/CP/D2CP04499D
171
+ 14. Doner, A. C., Zádor, J., Rotavera, B.: _Stereoisomer-dependent unimolecular kinetics of 2,4-dimethyloxetane peroxy radicals._ Faraday Discuss., **2022**, 238, 295-319. https://doi.org/10.1039/D2FD00029F
172
+ 15. Ramasesha, K., Savee, J. D., Zádor, J., Osborn, D. L.: _A New Pathway for Intersystem Crossing: Unexpected Products in the O(3P) + Cyclopentene Reaction._ J. Phys. Chem. A, **2021**, 125 9785-9801. https://doi.org/10.1021/acs.jpca.1c05817
173
+ 16. Rogers, C. O, Lockwood, K. S., Nguyen, Q. L. D., Labbe, N. J.: _Diol isomer revealed as a source of methyl ketene from propionic acid unimolecular decomposition._ Int. J. Chem. Kinet., **2021**, 53, 1272–1284. https://doi.org/10.1002/kin.21532
174
+ 17. Lockwood, K. S., Labbe, N. J.: _Insights on keto-hydroperoxide formation from O2 addition to the beta-tetrahydrofuran radical._ Proceedings of the Combustion Institute, **2021**, 38, 1, 533. https://doi.org/10.1016/j.proci.2020.06.357
175
+ 18. Sheps, L., Dewyer, A. L., Demireva, M., and Zádor, J.: _Quantitative Detection of Products and Radical Intermediates in Low-Temperature Oxidation of Cyclopentane._ J. Phys. Chem. A **2021**, 125, 20, 4467. https://doi.org/10.1021/acs.jpca.1c02001
176
+ 19. Zhang, J., Vermeire, F., Van de Vijver, R., Herbinet, O.; Battin-Leclerc, F., Reyniers, M.-F., Van Geem, K. M.: _Detailed experimental and kinetic modeling study of 3-carene pyrolysis._ Int. J. Chem. Kinet., **2020**, 52, 785-795. https://doi.org/10.1002/kin.21400
177
+ 20. Van de Vijver, R., Zádor, J.: _KinBot: Automated stationary point search on potential energy surfaces._ Computer Physics Communications, **2020**, 248, 106947. https://doi.org/10.1016/j.cpc.2019.106947
178
+ 21. Joshi, S. P., Seal, P., Pekkanen, T. T., Timonen, R. S., Eskola, A. J.: _Direct Kinetic Measurements and Master Equation Modelling of the Unimolecular Decomposition of Resonantly-Stabilized CH2CHCHC(O)OCH3 Radical and an Upper Limit Determination for CH2CHCHC(O)OCH3+O2 Reaction._ Z. Phys. Chem., **2020**, 234, 1251. https://doi.org/10.1515/zpch-2020-1612
179
+
180
+ Older Version of KinBot:
181
+ 1. Van de Vijver, R., Van Geem, K. M., Marin, G. B., Zádor, J.: _Decomposition and isomerization of 1-pentanol radicals and the pyrolysis of 1-pentanol._ Combustion and Flame, **2018,** 196, 500. https://doi.org/10.1016/j.combustflame.2018.05.011
182
+ 2. Grambow, C. A., Jamal, A., Li, Y.-P., Green, W. H., Zádor, J., Suleimanov, Y. V.: _Unimolecular reaction pathways of a g-ketohydroperoxide from combined application of automated reaction discovery methods._ J. Am. Chem. Soc., 2018, 140, 1035. https://doi.org/10.1021/jacs.7b11009
183
+ 3. Rotavera, B., Savee, J. D., Antonov, I. O., Caravan, R. L., Sheps, L., Osborn, D. L., Zádor, J., Taatjes, C. A.: _Influence of oxygenation in cyclic hydrocarbons on chain-termination reactions from R + O2: tetrahydropyran and cyclohexane._ Proceedings of the Combustion Institute, **2017,** 36, 597. https://doi.org/10.1016/j.proci.2016.05.020
184
+ 4. Antonov, I. O., Zádor, J., Rotavera, B., Papajak, E., Osborn, D. L., Taatjes, C. A., Sheps, L.: _Pressure-Dependent Competition among Reaction Pathways from First- and Second-O2 Additions in the Low-Temperature Oxidation of Tetrahydrofuran._ J. Phys. Chem. A, **2016,** 120 6582. https://doi.org/10.1021/acs.jpca.6b05411
185
+ 5. Antonov, I. O., Kwok, J., Zádor, J., Sheps, L.: OH + 2-butene: A combined experimental and theoretical study in the 300-800 K temperature range. J. Phys. Chem. A, **2015,** 119, 7742. https://doi.org/10.1021/acs.jpca.5b01012
186
+ 6. Zádor, J., Miller, J.A.: _Adventures on the C3H5O potential energy surface: OH + propyne, OH + allene and related reactions._ Proceedings of the Combustion Institute, **2015,** 35, 181. https://doi.org/10.1016/j.proci.2014.05.103
187
+ 7. Rotavera, B., Zádor, J., Welz, O., Sheps, L., Scheer, A.M., Savee, J.D., Ali, M.A., Lee, T.S., Simmons, B.A., Osborn, D.L., Violi, A., Taatjes, C.A.: _Photoionization mass spectrometric measurements of initial reaction pathways in low-temperature oxidation of 2,5-dimethylhexane._ J. Phys. Chem. A, **2014,** 44, 10188. https://doi.org/10.1021/jp507811d
188
+
189
+ ## Acknowledgement
190
+ This research was supported by the Exascale Computing Project (ECP), Project Number: 17-SC-20-SC, a collaborative effort of two DOE organizations, the Office of Science and the National Nuclear Security Administration, responsible for the planning and preparation of a capable exascale ecosystem including software, applications, hardware, advanced system engineering, and early test bed platforms to support the nation's exascale computing imperative. RVdV was also supported by the AITSTME project as part of the Predictive Theory and Modeling component of the Materials Genome Initiative. Sandia National Laboratories is a multimission laboratory managed and operated by National Technology and Engineering Solutions of Sandia, LLC., a wholly owned subsidiary of Honeywell International, Inc., for the U.S. Department of Energy’s National Nuclear Security Administration under contract DE-NA0003525.
kinbot-2.2.3/README.md ADDED
@@ -0,0 +1,131 @@
1
+ [![Gitter chat](https://badges.gitter.im/gitterHQ/gitter.png)](https://gitter.im/zadorlab/KinBot)
2
+
3
+ # KinBot: Automated Reaction Kinetics of Gas-Phase Organic Species over Multiwell Potential Energy Surfaces
4
+
5
+ <p>
6
+ <img src="https://raw.githubusercontent.com/zadorlab/KinBot/master/graphics/kinbot_logo_V2.png" width="220" height="240" />
7
+ </p>
8
+
9
+ ## Description
10
+ This repository contains the KinBot code version 2.2.1,
11
+ a tool for automatically searching for reactions on the potential energy surface.
12
+
13
+ If you are using this tool in scientific publications, please reference the following publications:
14
+
15
+ * Ruben Van de Vijver, Judit Zádor: KinBot: _Automated stationary point search on potential energy surfaces_, Comp. Phys. Comm., **2019**, 248, 106947. https://doi.org/10.1016/j.cpc.2019.106947
16
+ ```
17
+ @article{Vijver2020,
18
+ author = {Van de Vijver, Ruben and Z\'ador, Judit},
19
+ title = {KinBot: Automated stationary point search on potential energy surfaces},
20
+ journal = {Comput. Phys. Commun.},
21
+ volume = {248},
22
+ pages = {106947},
23
+ year = {2020},
24
+ type = {Journal Article}
25
+ }
26
+ ```
27
+ * Judit Zádor, Carles Martí, Ruben Van de Vijver, Sommer L. Johansen, Yoona Yang, Hope A. Michelsen, Habib N. Najm: _Automated reaction kinetics of gas-phase organic species over multiwell potential energy surfaces_, J. Phys. Chem. A, **2023**, 127, 565–588. https://doi.org/10.1021/acs.jpca.2c06558
28
+
29
+ ```
30
+ @article{Zador2022,
31
+ author = {Z\'ador, Judit and Mart\'i, Carles and Van de Vijver, Ruben and Johansen, Sommer L. and Yang, Yoona and Michelsen, Hope A. and Najm, Habib N.},
32
+ title = {Automated reaction kinetics of gas-phase organic species over multiwell potential energy surfaces},
33
+ journal = {J. Phys. Chem. A},
34
+ volume = {127},
35
+ pages = {565-588},
36
+ year = {2023},
37
+ type = {Journal Article}
38
+ }
39
+ ```
40
+
41
+ We appreciate if you send us the DOI of your published paper that used KinBot, so we can feature it here below.
42
+
43
+ ## How to Install
44
+
45
+ KinBot can be installed both in three different ways, from the PyPI index (`pip install`), from the conda-forge repo (`conda install`) or by cloning this github repo and then install it locally.
46
+
47
+ ### PyPI
48
+
49
+ pip install kinbot
50
+
51
+ > **Note**
52
+ > KinBot only works with Python >= 3.10.
53
+
54
+ ### conda-forge
55
+
56
+ conda install -c conda-forge kinbot
57
+
58
+ ### From Github
59
+
60
+ If you want to have the very last version of KinBot without waiting for a
61
+ release or you want to modify KinBot acccording to your needs you can clone the project
62
+ from github:
63
+
64
+ git clone git@github.com:zadorlab/KinBot.git
65
+
66
+ and then, from within the KinBot directory produced after cloning, type:
67
+
68
+ pip install -e .
69
+
70
+ > **Note**
71
+ > If you want to modify KinBot yourself it's better to fork the project
72
+ > into your own repository and then clone it.
73
+
74
+ ## How to Run
75
+ To run a single-well exploration of KinBot, make an input file (e.g. input.json) and run:
76
+
77
+ kinbot input.json
78
+
79
+ To run a full PES search, make an input file (e.g. input.json) and run:
80
+
81
+ pes input.json
82
+
83
+ You can find additional command line arguments in the manual.
84
+
85
+ ## Documentation
86
+ See the [wiki](https://github.com/zadorlab/KinBot/wiki) for keywords, and our [tutorial](https://hackmd.io/@jzador/kinbot_workshop_2023#/) for a more hands-on introduction to the code.
87
+
88
+ ## List of files in this project
89
+ See [list](https://github.com/zadorlab/KinBot/wiki/KinBot-file-structure).
90
+
91
+ ## Authors
92
+ * Judit Zádor (jzador@sandia.gov)
93
+ * Ruben Van de Vijver
94
+ * Amanda Dewyer
95
+ * Carles Martí
96
+ * Clément Soulié (csoulie@sandia.gov)
97
+
98
+ ## Papers using KinBot
99
+ 1. Almeida, T. G., Martí, C., Kurtén, T., Zádor, J., Johansen, S. L.: _Theoretical analysis of the OH-Initiated atmospheric oxidation reactions of imidazole_. Phys. Chem. Chem. Phys., **2024** 26 23570-23587. https://doi.org/10.1039/D4CP02103G
100
+ 2. Yuan, E. C.-Y., Kumar, A., Guan, X., Hermes, E. D., Rosen, A. S., Zádor, J., Head-Gordon, T., Blau, S. M.: _Analytical ab initio Hessian from a Deep Learning Potential for Transition State Optimization_. Nat. Comm., **2024**
101
+ 3. Doner, A. C., Zádor, J., Rotavera, B.: _Stereoisomer-dependent rate coefficients and reaction mechanisms of 2-ethyloxetanylperoxy radicals_. Proc. Combust. Inst., **2024**, 40, 105578. https://doi.org/10.1016/j.proci.2024.105578
102
+ 4. Hansen, N. A, Price, T. D., Filardi, L. R., Gurses, S. M., Zhou, W., Hansen, N., Osborn, D. L. Zádor, J., Kronawitter, C. X.: _The photoionization of methoxymethanol: Fingerprinting a reactive C2 oxygenate in a complex reactive mixture_. J. Chem. Phys., **2024**, 160, 124306. https://doi.org/10.1063/5.0197827
103
+ 5. Martí, C., Devereux, C., Najm, H. N., Zádor, J.: _Evaluation of rate coefficients in the gas-phase using a machine learned potential_. J. Phys. Chem. A, **2024**, 128, 1958–1971. https://doi.org/10.1021/acs.jpca.3c07872
104
+ 6. Lang, J., Foley, C. D., Thawoos, S., Behzadfar, A., Liu, Y., Zádor, J., Suits, A. G.: _Reaction dynamics of S(3P) with 1,3-butadiene and isoprene: Crossed beam scattering, low temperature flow experiments, and high-level electronic structure calculations_. Farad. Discuss., **2024**, 251, 550-572. https://doi.org/10.1039/D4FD00009A
105
+ 7. Wang, D., Tian, Z.-Y., Zheng, Z.-H., Li, W., Wu, L.-N., Kuang, J.-J., Yang, J.-Z.: _Experimental and modeling study of the n, n-dimethylformamide pyrolysis at atmospheric pressure_. Combust. Flame, **2024**, 260, 113240. https://doi.org/10.1016/j.combustflame.2023.113240
106
+ 8. Doner, A. C., Zádor, J., Rotavera, B.: _Unimolecular reactions of 2,4-dimethyloxetanyl radicals._ J. Phys. Chem A, **2023**, 127, 2591–2600 https://doi.org/10.1021/acs.jpca.2c08290
107
+ 9. Li, H., Lang, J., Foley, C. D., Zádor, J., Suits, A. G.: _Sulfur (3P) reaction with conjugated dienes gives cyclization to thiophenes under single collision conditions._ J. Phys. Chem. Letters, **2023**, 14, 7611–7617. https://doi.org/10.1021/acs.jpclett.3c01953
108
+ 10. Martí, C., Michelsen, H. A., Najm, H. N., Zádor, J.: _Comprehensive kinetics on the C7H7 potential energy surface under combustion conditions._ J. Phys. Chem. A, **2023**, 127, 1941–1959. https://pubs.acs.org/doi/full/10.1021/acs.jpca.2c08035
109
+ 11. Zádor, J, Martí, C., Van de Vijver, R., Johansen, S. L., Yang, Y., Michelsen, H. A., Najm, H. N.: _Automated reaction kinetics of gas-phase organic species over multiwell potential energy surfaces._ J. Phys. Chem. A, **2023**, 127, 565–588. https://doi.org/10.1021/acs.jpca.2c06558
110
+ 12. Lockwood, K. S., Ahmed, S. F., Huq, N. A., Stutzman, S. C., Foust, T. D., Labbe, N. J.: _Advances in predictive chemistry enable a multi-scale rational design approach for biofuels with advantaged properties_ Sustainable Energy Fuels, **2022**, 6, 5371-5383. https://doi.org/10.1039/D2SE00773H
111
+ 13. Takahashi, L., Yoshida, S., Fujima, J., Oikawa, H., Takahashi, K.: _Unveiling the reaction pathways of hydrocarbons via experiments, computations and data science._ Phys. Chem. Chem. Phys., **2022**, 24, 29841-29849. https://pubs.rsc.org/en/content/articlelanding/2022/CP/D2CP04499D
112
+ 14. Doner, A. C., Zádor, J., Rotavera, B.: _Stereoisomer-dependent unimolecular kinetics of 2,4-dimethyloxetane peroxy radicals._ Faraday Discuss., **2022**, 238, 295-319. https://doi.org/10.1039/D2FD00029F
113
+ 15. Ramasesha, K., Savee, J. D., Zádor, J., Osborn, D. L.: _A New Pathway for Intersystem Crossing: Unexpected Products in the O(3P) + Cyclopentene Reaction._ J. Phys. Chem. A, **2021**, 125 9785-9801. https://doi.org/10.1021/acs.jpca.1c05817
114
+ 16. Rogers, C. O, Lockwood, K. S., Nguyen, Q. L. D., Labbe, N. J.: _Diol isomer revealed as a source of methyl ketene from propionic acid unimolecular decomposition._ Int. J. Chem. Kinet., **2021**, 53, 1272–1284. https://doi.org/10.1002/kin.21532
115
+ 17. Lockwood, K. S., Labbe, N. J.: _Insights on keto-hydroperoxide formation from O2 addition to the beta-tetrahydrofuran radical._ Proceedings of the Combustion Institute, **2021**, 38, 1, 533. https://doi.org/10.1016/j.proci.2020.06.357
116
+ 18. Sheps, L., Dewyer, A. L., Demireva, M., and Zádor, J.: _Quantitative Detection of Products and Radical Intermediates in Low-Temperature Oxidation of Cyclopentane._ J. Phys. Chem. A **2021**, 125, 20, 4467. https://doi.org/10.1021/acs.jpca.1c02001
117
+ 19. Zhang, J., Vermeire, F., Van de Vijver, R., Herbinet, O.; Battin-Leclerc, F., Reyniers, M.-F., Van Geem, K. M.: _Detailed experimental and kinetic modeling study of 3-carene pyrolysis._ Int. J. Chem. Kinet., **2020**, 52, 785-795. https://doi.org/10.1002/kin.21400
118
+ 20. Van de Vijver, R., Zádor, J.: _KinBot: Automated stationary point search on potential energy surfaces._ Computer Physics Communications, **2020**, 248, 106947. https://doi.org/10.1016/j.cpc.2019.106947
119
+ 21. Joshi, S. P., Seal, P., Pekkanen, T. T., Timonen, R. S., Eskola, A. J.: _Direct Kinetic Measurements and Master Equation Modelling of the Unimolecular Decomposition of Resonantly-Stabilized CH2CHCHC(O)OCH3 Radical and an Upper Limit Determination for CH2CHCHC(O)OCH3+O2 Reaction._ Z. Phys. Chem., **2020**, 234, 1251. https://doi.org/10.1515/zpch-2020-1612
120
+
121
+ Older Version of KinBot:
122
+ 1. Van de Vijver, R., Van Geem, K. M., Marin, G. B., Zádor, J.: _Decomposition and isomerization of 1-pentanol radicals and the pyrolysis of 1-pentanol._ Combustion and Flame, **2018,** 196, 500. https://doi.org/10.1016/j.combustflame.2018.05.011
123
+ 2. Grambow, C. A., Jamal, A., Li, Y.-P., Green, W. H., Zádor, J., Suleimanov, Y. V.: _Unimolecular reaction pathways of a g-ketohydroperoxide from combined application of automated reaction discovery methods._ J. Am. Chem. Soc., 2018, 140, 1035. https://doi.org/10.1021/jacs.7b11009
124
+ 3. Rotavera, B., Savee, J. D., Antonov, I. O., Caravan, R. L., Sheps, L., Osborn, D. L., Zádor, J., Taatjes, C. A.: _Influence of oxygenation in cyclic hydrocarbons on chain-termination reactions from R + O2: tetrahydropyran and cyclohexane._ Proceedings of the Combustion Institute, **2017,** 36, 597. https://doi.org/10.1016/j.proci.2016.05.020
125
+ 4. Antonov, I. O., Zádor, J., Rotavera, B., Papajak, E., Osborn, D. L., Taatjes, C. A., Sheps, L.: _Pressure-Dependent Competition among Reaction Pathways from First- and Second-O2 Additions in the Low-Temperature Oxidation of Tetrahydrofuran._ J. Phys. Chem. A, **2016,** 120 6582. https://doi.org/10.1021/acs.jpca.6b05411
126
+ 5. Antonov, I. O., Kwok, J., Zádor, J., Sheps, L.: OH + 2-butene: A combined experimental and theoretical study in the 300-800 K temperature range. J. Phys. Chem. A, **2015,** 119, 7742. https://doi.org/10.1021/acs.jpca.5b01012
127
+ 6. Zádor, J., Miller, J.A.: _Adventures on the C3H5O potential energy surface: OH + propyne, OH + allene and related reactions._ Proceedings of the Combustion Institute, **2015,** 35, 181. https://doi.org/10.1016/j.proci.2014.05.103
128
+ 7. Rotavera, B., Zádor, J., Welz, O., Sheps, L., Scheer, A.M., Savee, J.D., Ali, M.A., Lee, T.S., Simmons, B.A., Osborn, D.L., Violi, A., Taatjes, C.A.: _Photoionization mass spectrometric measurements of initial reaction pathways in low-temperature oxidation of 2,5-dimethylhexane._ J. Phys. Chem. A, **2014,** 44, 10188. https://doi.org/10.1021/jp507811d
129
+
130
+ ## Acknowledgement
131
+ This research was supported by the Exascale Computing Project (ECP), Project Number: 17-SC-20-SC, a collaborative effort of two DOE organizations, the Office of Science and the National Nuclear Security Administration, responsible for the planning and preparation of a capable exascale ecosystem including software, applications, hardware, advanced system engineering, and early test bed platforms to support the nation's exascale computing imperative. RVdV was also supported by the AITSTME project as part of the Predictive Theory and Modeling component of the Materials Genome Initiative. Sandia National Laboratories is a multimission laboratory managed and operated by National Technology and Engineering Solutions of Sandia, LLC., a wholly owned subsidiary of Honeywell International, Inc., for the U.S. Department of Energy’s National Nuclear Security Administration under contract DE-NA0003525.