Skip to content

Commit 8e3f65d

Browse files
author
github-actions
committed
Automated documentation rebuild
1 parent 66e8103 commit 8e3f65d

File tree

217 files changed

+903
-933
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

217 files changed

+903
-933
lines changed

.buildinfo

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
# Sphinx build info version 1
22
# This file hashes the configuration used when building these files. When it is not found, a full rebuild will be done.
3-
config: 93f89423dd182f361997bc144b967028
3+
config: 1a28d611cb3950a0ca5a9ce049a52436
44
tags: 645f666f9bcd5a90fca523b33c5a78b7

_sources/users/rmg/installation/anacondaUser.rst.txt

Lines changed: 17 additions & 44 deletions
Original file line numberDiff line numberDiff line change
@@ -7,67 +7,40 @@ Binary Installation Using Anaconda for Unix-Based Systems: Linux and Mac OSX
77

88
#. Install the `conda` package manager via `miniforge`, if you do not already have it (or Anaconda), by following the `Miniforge installation instructions <https://github.com/conda-forge/miniforge?tab=readme-ov-file#install>`_.
99

10-
#. Install both RMG and the RMG-database binaries through the terminal. Dependencies will be installed automatically. It is safest to make a new conda environment for RMG and its dependencies. Type the following command into the terminal to create the new environment named 'rmg_env' containing the latest stable version of the RMG program and its database. ::
10+
#. Install both RMG and the RMG-database binaries through the terminal. Dependencies will be installed automatically. It is safest to make a new conda environment for RMG and its dependencies. Type the following command into the terminal to create the new environment named 'rmg_env' containing the latest stable version of the RMG program and its database. ::
1111

12-
conda create -c defaults -c rmg -c rdkit -c cantera -c pytorch -c conda-forge --name rmg_env rmg rmgdatabase
12+
conda create --name rmg_env 'rmg::rmg'
1313

1414
Whenever you wish to use it you must first activate the environment::
1515

1616
conda activate rmg_env
1717

1818
For more information about using conda, please check out the `conda user guide <https://conda.io/projects/conda/en/latest/user-guide/getting-started.html>`_.
19+
20+
To install a specific version of RMG, add the version to the install command::
21+
22+
conda create --name rmg_33_env 'rmg::rmg==3.3.0'
23+
24+
Not all versions of RMG are available via conda for all platforms. Check the `official RMG conda channel <https://anaconda.org/RMG/rmg/files>`_ to see which are available for download.
1925

2026
#. You may now run an RMG test job. Save the `Minimal Example Input File <https://raw.githubusercontent.com/ReactionMechanismGenerator/RMG-Py/master/examples/rmg/minimal/input.py>`_
2127
to a local directory. Use the terminal to run your RMG job inside that folder using the following command ::
2228

2329
rmg.py input.py
2430

25-
If you encounter the ImportError related to ``libmkl_rt.so.2``, refer to the :ref:`Fixing the ImportError related to libmkl_rt.so.2 <fixImportError>`
26-
section below to fix the error and re-run the RMG test job.
27-
28-
You may now use RMG-Py, Arkane, as well as any of the :ref:`Standalone Modules <modules>` included in the RMG-Py package.
29-
30-
.. _fixImportError:
31-
32-
Fixing the ImportError related to ``libmkl_rt.so.2``
33-
============================================================
34-
35-
You may encounter the following ImportError when you try to run a RMG test job ::
36-
37-
Traceback (most recent call last):
38-
File "/PATH-TO-YOUR-ANACONDA/envs/rmg_env/bin/rmg.py", line 48, in <module>
39-
from rmgpy.rmg.main import RMG, initialize_log, process_profile_stats, make_profile_graph
40-
File "/PATH-TO-YOUR-ANACONDA/envs/rmg_env/lib/python3.7/site-packages/rmgpy/rmg/main.py", line 51, in <module>
41-
from cantera import ck2cti
42-
File "/PATH-TO-YOUR-ANACONDA/envs/rmg_env/lib/python3.7/site-packages/cantera/__init__.py", line 4, in <module>
43-
from ._cantera import *
44-
ImportError: libmkl_rt.so.2: cannot open shared object file: No such file or directory
45-
46-
where ``PATH-TO-YOUR-ANACONDA`` is the path to the ``Anaconda3`` directory installed on your machine.
47-
The default install location of Anaconda on Linux is ``/home/<your_username>/Anaconda3``.
48-
49-
To fix this issue, simply copy ``libmkl_rt.so.1`` as ``libmkl_rt.so.2`` under the rmg environment library by typing the following
50-
line on your terminal::
51-
52-
cp /PATH-TO-YOUR-ANACONDA/envs/rmg_env/lib/libmkl_rt.so.1 /PATH-TO-YOUR-ANACONDA/envs/rmg_env/lib/libmkl_rt.so.2
53-
54-
Note that ``PATH-TO-YOUR-ANACONDA`` needs to be the path to your ``Anaconda3`` directory, which mostly likely looks
55-
like ``/home/<your_username>/Anaconda3``. If you are unable to locate the ``libmkl_rt.so.1`` file on your computer, you can find its location with the following command::
56-
57-
locate libmkl_rt.so.1
58-
59-
After copying the file as ``libmkl_rt.so.2``, try running the RMG test job again::
60-
61-
rmg.py input.py
62-
63-
You will see a line saying ``MODEL GENERATION COMPLETED`` on your terminal if your RMG test job ran successfully.
31+
You will see a line saying ``MODEL GENERATION COMPLETED`` on your terminal if your RMG test job ran successfully.
6432

6533

6634
Updating your binary installation of RMG in Linux or Mac OSX
6735
============================================================
6836

69-
If you had previously installed a binary version of the RMG package, you may
70-
check and update your installation to the latest stable version available on Anaconda by typing the following command on the terminal ::
37+
If you had previously installed a binary version of the RMG package and wish to update to a newer version, we suggest creating a new conda environment and installing the updated version there ::
38+
39+
conda create --name rmg_xyz_env 'rmg::rmg==x.y.z'
40+
41+
It is also possible, though not advisable, to update your existing installation to the latest stable version available on Anaconda by typing the following command on the terminal ::
7142

7243
source activate rmg_env
73-
conda update rmg rmgdatabase -c rmg
44+
conda update 'rmg::rmg'
45+
46+
Doing this may break any other code present in the conda environment and RMG may not function correctly. If you attempt this update method and face issues, please attempt to install the new version of RMG in a new conda environment before reaching out for assistance.

_sources/users/rmg/installation/index.rst.txt

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,17 @@ For users unfamiliar with bash or Linux, we recommend looking at
4646
Be sure to also change the version number in the docker run commands to match the version you pulled.
4747
A full list of available docker images can be found at `Docker Hub <https://hub.docker.com/r/reactionmechanismgenerator/rmg/tags>`_.
4848

49+
Alternative Install: Binary Installation Using Anaconda
50+
===========================================================
51+
52+
If you are accustomed to using the Anaconda package manager or cannot tolerate the storage overhead of Docker, installation from conda is also available.
53+
This is recommended for users who want to use RMG out of the box and are not interested in changing the RMG code or making many additions to RMG's thermodynamic and kinetics databases.
54+
If this does interest you, please see the Developer Install below.
55+
56+
.. toctree::
57+
:maxdepth: 1
58+
59+
anacondaUser
4960

5061
Developer Install: Installation from Source
5162
===========================================================
@@ -74,7 +85,6 @@ not recommended for use.
7485

7586
linux
7687
macos
77-
anacondaUser
7888
anacondaUserWindows
7989
anacondaDeveloperWindows
8090
windowsEnvironment

_static/documentation_options.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
var DOCUMENTATION_OPTIONS = {
22
URL_ROOT: document.getElementById("documentation_options").getAttribute('data-url_root'),
3-
VERSION: '3.2.0',
3+
VERSION: '3.3.0',
44
LANGUAGE: 'en',
55
COLLAPSE_INDEX: false,
66
BUILDER: 'html',

contents.html

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<meta charset="utf-8" />
77
<meta name="viewport" content="width=device-width, initial-scale=1.0" /><meta name="generator" content="Docutils 0.19: https://docutils.sourceforge.io/" />
88

9-
<title>RMG Py v3.2.0 documentation &#8212; RMG-Py 3.2.0 Documentation</title>
9+
<title>RMG Py v3.3.0 documentation &#8212; RMG-Py 3.3.0 Documentation</title>
1010
<link rel="stylesheet" type="text/css" href="_static/pygments.css" />
1111
<link rel="stylesheet" type="text/css" href="_static/custom.css" />
1212

@@ -42,9 +42,9 @@ <h3>Navigation</h3>
4242
<a href="users/index.html" title="User’s Guide"
4343
accesskey="N">next</a> |</li>
4444
<li><a href="https://rmg.mit.edu/">RMG</a> &raquo;</li>
45-
<li><a href="index.html">3.2.0 Documentation</a> &raquo;</li>
45+
<li><a href="index.html">3.3.0 Documentation</a> &raquo;</li>
4646

47-
<li class="nav-item nav-item-this"><a href="">RMG Py v3.2.0 documentation</a></li>
47+
<li class="nav-item nav-item-this"><a href="">RMG Py v3.3.0 documentation</a></li>
4848
</ul>
4949
</div>
5050

@@ -54,7 +54,7 @@ <h3>Navigation</h3>
5454
<div class="body" role="main">
5555

5656
<section id="rmg-py-vrelease-documentation">
57-
<h1>RMG Py v3.2.0 documentation<a class="headerlink" href="#rmg-py-vrelease-documentation" title="Permalink to this heading"></a></h1>
57+
<h1>RMG Py v3.3.0 documentation<a class="headerlink" href="#rmg-py-vrelease-documentation" title="Permalink to this heading"></a></h1>
5858
<section id="contents">
5959
<h2>Contents<a class="headerlink" href="#contents" title="Permalink to this heading"></a></h2>
6060
<div class="toctree-wrapper compound">
@@ -114,7 +114,7 @@ <h2>Indices and tables<a class="headerlink" href="#indices-and-tables" title="Pe
114114
<div>
115115
<h3><a href="#">Table of Contents</a></h3>
116116
<ul>
117-
<li><a class="reference internal" href="#">RMG Py v3.2.0 documentation</a><ul>
117+
<li><a class="reference internal" href="#">RMG Py v3.3.0 documentation</a><ul>
118118
<li><a class="reference internal" href="#contents">Contents</a></li>
119119
<li><a class="reference internal" href="#indices-and-tables">Indices and tables</a></li>
120120
</ul>
@@ -171,9 +171,9 @@ <h3>Navigation</h3>
171171
<a href="users/index.html" title="User’s Guide"
172172
>next</a> |</li>
173173
<li><a href="https://rmg.mit.edu/">RMG</a> &raquo;</li>
174-
<li><a href="index.html">3.2.0 Documentation</a> &raquo;</li>
174+
<li><a href="index.html">3.3.0 Documentation</a> &raquo;</li>
175175

176-
<li class="nav-item nav-item-this"><a href="">RMG Py v3.2.0 documentation</a></li>
176+
<li class="nav-item nav-item-this"><a href="">RMG Py v3.3.0 documentation</a></li>
177177
</ul>
178178
</div>
179179

genindex.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<head>
66
<meta charset="utf-8" />
77
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
8-
<title>Index &#8212; RMG-Py 3.2.0 Documentation</title>
8+
<title>Index &#8212; RMG-Py 3.3.0 Documentation</title>
99
<link rel="stylesheet" type="text/css" href="_static/pygments.css" />
1010
<link rel="stylesheet" type="text/css" href="_static/custom.css" />
1111

@@ -37,7 +37,7 @@ <h3>Navigation</h3>
3737
<a href="py-modindex.html" title="Python Module Index"
3838
>modules</a> |</li>
3939
<li><a href="https://rmg.mit.edu/">RMG</a> &raquo;</li>
40-
<li><a href="index.html">3.2.0 Documentation</a> &raquo;</li>
40+
<li><a href="index.html">3.3.0 Documentation</a> &raquo;</li>
4141

4242
<li class="nav-item nav-item-this"><a href="">Index</a></li>
4343
</ul>
@@ -6733,7 +6733,7 @@ <h3>Navigation</h3>
67336733
<a href="py-modindex.html" title="Python Module Index"
67346734
>modules</a> |</li>
67356735
<li><a href="https://rmg.mit.edu/">RMG</a> &raquo;</li>
6736-
<li><a href="index.html">3.2.0 Documentation</a> &raquo;</li>
6736+
<li><a href="index.html">3.3.0 Documentation</a> &raquo;</li>
67376737

67386738
<li class="nav-item nav-item-this"><a href="">Index</a></li>
67396739
</ul>

index.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<head>
66
<meta charset="utf-8" />
77
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
8-
<title>Overview &#8212; RMG-Py 3.2.0 Documentation</title>
8+
<title>Overview &#8212; RMG-Py 3.3.0 Documentation</title>
99
<link rel="stylesheet" type="text/css" href="_static/pygments.css" />
1010
<link rel="stylesheet" type="text/css" href="_static/custom.css" />
1111

@@ -37,7 +37,7 @@ <h3>Navigation</h3>
3737
<a href="py-modindex.html" title="Python Module Index"
3838
>modules</a> |</li>
3939
<li><a href="https://rmg.mit.edu/">RMG</a> &raquo;</li>
40-
<li><a href="#">3.2.0 Documentation</a> &raquo;</li>
40+
<li><a href="#">3.3.0 Documentation</a> &raquo;</li>
4141

4242
<li class="nav-item nav-item-this"><a href="">Overview</a></li>
4343
</ul>
@@ -194,7 +194,7 @@ <h3>Navigation</h3>
194194
<a href="py-modindex.html" title="Python Module Index"
195195
>modules</a> |</li>
196196
<li><a href="https://rmg.mit.edu/">RMG</a> &raquo;</li>
197-
<li><a href="#">3.2.0 Documentation</a> &raquo;</li>
197+
<li><a href="#">3.3.0 Documentation</a> &raquo;</li>
198198

199199
<li class="nav-item nav-item-this"><a href="">Overview</a></li>
200200
</ul>

latex-api.html

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<meta charset="utf-8" />
77
<meta name="viewport" content="width=device-width, initial-scale=1.0" /><meta name="generator" content="Docutils 0.19: https://docutils.sourceforge.io/" />
88

9-
<title>RMG-Py v3.2.0 API Reference &#8212; RMG-Py 3.2.0 Documentation</title>
9+
<title>RMG-Py v3.3.0 API Reference &#8212; RMG-Py 3.3.0 Documentation</title>
1010
<link rel="stylesheet" type="text/css" href="_static/pygments.css" />
1111
<link rel="stylesheet" type="text/css" href="_static/custom.css" />
1212

@@ -38,9 +38,9 @@ <h3>Navigation</h3>
3838
<a href="py-modindex.html" title="Python Module Index"
3939
>modules</a> |</li>
4040
<li><a href="https://rmg.mit.edu/">RMG</a> &raquo;</li>
41-
<li><a href="index.html">3.2.0 Documentation</a> &raquo;</li>
41+
<li><a href="index.html">3.3.0 Documentation</a> &raquo;</li>
4242

43-
<li class="nav-item nav-item-this"><a href="">RMG-Py v3.2.0 API Reference</a></li>
43+
<li class="nav-item nav-item-this"><a href="">RMG-Py v3.3.0 API Reference</a></li>
4444
</ul>
4545
</div>
4646

@@ -50,7 +50,7 @@ <h3>Navigation</h3>
5050
<div class="body" role="main">
5151

5252
<section id="rmg-py-vrelease-api-reference">
53-
<h1>RMG-Py v3.2.0 API Reference<a class="headerlink" href="#rmg-py-vrelease-api-reference" title="Permalink to this heading"></a></h1>
53+
<h1>RMG-Py v3.3.0 API Reference<a class="headerlink" href="#rmg-py-vrelease-api-reference" title="Permalink to this heading"></a></h1>
5454
<p>RMG is an automatic chemical reaction mechanism generator
5555
that constructs kinetic models composed of elementary chemical reaction
5656
steps using a general understanding of how molecules react.</p>
@@ -133,9 +133,9 @@ <h3>Navigation</h3>
133133
<a href="py-modindex.html" title="Python Module Index"
134134
>modules</a> |</li>
135135
<li><a href="https://rmg.mit.edu/">RMG</a> &raquo;</li>
136-
<li><a href="index.html">3.2.0 Documentation</a> &raquo;</li>
136+
<li><a href="index.html">3.3.0 Documentation</a> &raquo;</li>
137137

138-
<li class="nav-item nav-item-this"><a href="">RMG-Py v3.2.0 API Reference</a></li>
138+
<li class="nav-item nav-item-this"><a href="">RMG-Py v3.3.0 API Reference</a></li>
139139
</ul>
140140
</div>
141141

latex-rmg.html

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<meta charset="utf-8" />
77
<meta name="viewport" content="width=device-width, initial-scale=1.0" /><meta name="generator" content="Docutils 0.19: https://docutils.sourceforge.io/" />
88

9-
<title>RMG-Py v3.2.0 documentation &#8212; RMG-Py 3.2.0 Documentation</title>
9+
<title>RMG-Py v3.3.0 documentation &#8212; RMG-Py 3.3.0 Documentation</title>
1010
<link rel="stylesheet" type="text/css" href="_static/pygments.css" />
1111
<link rel="stylesheet" type="text/css" href="_static/custom.css" />
1212

@@ -38,9 +38,9 @@ <h3>Navigation</h3>
3838
<a href="py-modindex.html" title="Python Module Index"
3939
>modules</a> |</li>
4040
<li><a href="https://rmg.mit.edu/">RMG</a> &raquo;</li>
41-
<li><a href="index.html">3.2.0 Documentation</a> &raquo;</li>
41+
<li><a href="index.html">3.3.0 Documentation</a> &raquo;</li>
4242

43-
<li class="nav-item nav-item-this"><a href="">RMG-Py v3.2.0 documentation</a></li>
43+
<li class="nav-item nav-item-this"><a href="">RMG-Py v3.3.0 documentation</a></li>
4444
</ul>
4545
</div>
4646

@@ -50,7 +50,7 @@ <h3>Navigation</h3>
5050
<div class="body" role="main">
5151

5252
<section id="rmg-py-vrelease-documentation">
53-
<h1>RMG-Py v3.2.0 documentation<a class="headerlink" href="#rmg-py-vrelease-documentation" title="Permalink to this heading"></a></h1>
53+
<h1>RMG-Py v3.3.0 documentation<a class="headerlink" href="#rmg-py-vrelease-documentation" title="Permalink to this heading"></a></h1>
5454
<p>RMG is an automatic chemical reaction mechanism generator
5555
that constructs kinetic models composed of elementary chemical reaction
5656
steps using a general understanding of how molecules react. This documentation is for the newer Python version of RMG that we call RMG-Py.</p>
@@ -201,9 +201,9 @@ <h3>Navigation</h3>
201201
<a href="py-modindex.html" title="Python Module Index"
202202
>modules</a> |</li>
203203
<li><a href="https://rmg.mit.edu/">RMG</a> &raquo;</li>
204-
<li><a href="index.html">3.2.0 Documentation</a> &raquo;</li>
204+
<li><a href="index.html">3.3.0 Documentation</a> &raquo;</li>
205205

206-
<li class="nav-item nav-item-this"><a href="">RMG-Py v3.2.0 documentation</a></li>
206+
<li class="nav-item nav-item-this"><a href="">RMG-Py v3.3.0 documentation</a></li>
207207
</ul>
208208
</div>
209209

objects.inv

-42 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)