Skip to content

Commit be4d0c8

Browse files
authored
Merge pull request #935 from ReactionMechanismGenerator/v2.1.0
RMG-Py v2.1.0 release
2 parents 05f40bd + 8edf091 commit be4d0c8

File tree

8 files changed

+60
-4
lines changed

8 files changed

+60
-4
lines changed

COPYING.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Copyright (c) 2002-2016 Prof. William H. Green (whgreen@mit.edu),
1+
Copyright (c) 2002-2017 Prof. William H. Green (whgreen@mit.edu),
22
Prof. Richard H. West (r.west@neu.edu) and the RMG Team (rmg_dev@mit.edu)
33

44
Permission is hereby granted, free of charge, to any person obtaining a

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ Gaussian, MOPAC, QChem, and MOLPRO.
1717
- [RMG-database Github Repository](https://github.com/ReactionMechanismGenerator/RMG-database): contains source code for the latest version of the database
1818

1919
## Latest Stable Release
20-
**RMG v2.0.0**
20+
**RMG v2.1.0**
2121
[![Anaconda-Server Badge](https://anaconda.org/rmg/rmg/badges/version.svg)](https://anaconda.org/rmg/rmg)
2222

2323
View the [Release Notes](http://reactionmechanismgenerator.github.io/RMG-Py/users/rmg/releaseNotes.html).
11.4 KB
Binary file not shown.
27.6 KB
Binary file not shown.

documentation/source/users/rmg/releaseNotes.rst

Lines changed: 54 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,60 @@
44
Release Notes
55
*************
66

7+
RMG-Py Version 2.1.0
8+
====================
9+
Date: March 07, 2017
10+
11+
- Clar structure generation
12+
- optimizes the aromatic isomer representations in RMG
13+
- lays the foundations for future development of poly-aromatic kinetics reaction families
14+
15+
- Flux pathway analysis
16+
- introduces an ipython notebook for post-generatation pathway analysis (``ipython.mechanism_analyzer.ipynb``)
17+
- visualizes reactions and provides flux statistics in a more transparent way
18+
19+
- Cantera mechanism
20+
- automatically writes cantera version of RMG-generated mechanism at the end of RMG jobs
21+
22+
- Fixes bugs
23+
- upgrades ``pruning`` to fix new memory leaks introduced by recent functionalities
24+
- fixes the bug of duplicated species creation caused by ``getThermoData`` removing isomers unexpectedly
25+
- fixes restart file generation and parsing problems and users can choose restart mode again
26+
- upgrades bicyclic decomposition method such that more deterministic behaviors are ensured
27+
- change bond order type to float from string to improve RMG's symmetry calculation for species with multiple resonance structures
28+
29+
RMG-database Version 2.1.0
30+
==========================
31+
Date: March 07, 2017
32+
33+
- Several new kinetics libraries added
34+
- FFCM-1
35+
- JetSurF 0.2
36+
- Chernov_aromatic_only
37+
- Narayanaswamy_aromatic_only
38+
- 1989_Stewart_2CH3_to_C2H5_H
39+
- 2005_Senosiain_OH_C2H2
40+
- 2006_Joshi_OH_CO
41+
- C6H5_C4H4_Mebel
42+
- c-C5H5_CH3_Sharma
43+
44+
- Several new thermochemistry libraries added
45+
- FFCM-1
46+
- JetSurF 0.2
47+
- Chernov_aromatic_only
48+
- Narayanaswamy_aromatic_only
49+
50+
- Improved kinetics tree accessibility
51+
- adds database tests ensuring groups in the tree to be accessible
52+
- improves definitions of group structures in the kinetics trees to ensure accessibility
53+
54+
- New oxygenates thermo groups are added based Paraskeva et al.
55+
56+
- Improved database tools
57+
- ``convertKineticsLibraryToTrainingReactions.ipynb`` now can visualize groups of matched rate rules that training reactions hit
58+
- ``exportKineticsLibrarytoChemkin.py`` and ``importChemkinLibrary.py`` add more logging information on reaction sources
59+
60+
761
RMG-Py Version 2.0.0
862
====================
963
Date: September 16, 2016

meta.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ requirements:
7474
- pyzmq
7575
- quantities
7676
- rdkit >=2015.09.2
77-
- rmgdatabase >=2.0.0
77+
- rmgdatabase >=2.1.0
7878
- scipy
7979
- scoop
8080
- symmetry

rmgpy/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
# This file describes the version of RMG-Py
22

3-
__version__ = '2.0.0'
3+
__version__ = '2.1.0'

setup.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -187,6 +187,8 @@ def getCanthermExtensionModules():
187187

188188
modules = []
189189
for root, dirs, files in os.walk('rmgpy'):
190+
if 'test_data' in root:
191+
continue
190192
for file in files:
191193
if file.endswith('.py') or file.endswith('.pyx'):
192194
if 'Test' not in file and '__init__' not in file:

0 commit comments

Comments
 (0)