-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2 from ReactionMechanismGenerator/debug_settings_2
Add new files and comment out imports irrelevant to chemkin
- Loading branch information
Showing
7 changed files
with
2,305 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,98 @@ | ||
################################################################################ | ||
# | ||
# Files for git to ignore | ||
# | ||
################################################################################ | ||
|
||
# MacOS files | ||
.DS_Store | ||
|
||
# Compiled Python modules | ||
*.pyc | ||
*.so | ||
*.pyd | ||
|
||
# Image files generated by RMG | ||
*.png | ||
*.svg | ||
|
||
# Temporary build files | ||
build/* | ||
|
||
# Compiled documentation | ||
documentation/build/* | ||
|
||
# Compilation helper files | ||
# (These will be unique to each developer's setup) | ||
make.inc | ||
|
||
# Example output files | ||
examples/* | ||
!examples/*/input.py | ||
!examples/**/*.ipynb | ||
|
||
# NetBeans project files | ||
nbproject/* | ||
|
||
# Eclipse project files | ||
.project | ||
.pydevproject | ||
.settings/* | ||
|
||
# PyCharm project files | ||
*/.idea/* | ||
.idea/* | ||
|
||
# VS Code settings | ||
*/.vscode/* | ||
.vscode/* | ||
|
||
# Unit test files | ||
.coverage | ||
testing/* | ||
htmlcov/* | ||
|
||
# Quantum Mechanics temporary, cache, and result files | ||
QMfiles/* | ||
QMscratch/* | ||
|
||
# Solver settings file | ||
molecule/solver/settings.pxi | ||
|
||
# bin/symmetry | ||
bin/symmetry | ||
|
||
# ipython checkpoints | ||
**/.ipynb_checkpoints/** | ||
|
||
# cantera files | ||
*.cti | ||
|
||
# csv files | ||
*.csv | ||
|
||
# ipython folder except for notebooks | ||
ipython/* | ||
!ipython/*.ipynb | ||
|
||
# Q2DTor | ||
external/Q2DTor | ||
|
||
# egg files (pip install -e) | ||
RMG_Py.egg-info/* | ||
|
||
# deleted files | ||
**/.fuse_hidden* | ||
|
||
# RMG configuration file | ||
molecule/rmgrc | ||
|
||
scripts/treegen.log | ||
|
||
scripts/treegen_backup.log | ||
|
||
# regression testing files - ignore everything but input and regression input | ||
test/regression/* | ||
!test/regression/*/input.py | ||
!test/regression/*/regression_input.py |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
#!/usr/bin/env python3 | ||
|
||
############################################################################### | ||
# # | ||
# RMG - Reaction Mechanism Generator # | ||
# # | ||
# Copyright (c) 2002-2023 Prof. William H. Green (whgreen@mit.edu), # | ||
# Prof. Richard H. West (r.west@neu.edu) and the RMG Team (rmg_dev@mit.edu) # | ||
# # | ||
# Permission is hereby granted, free of charge, to any person obtaining a # | ||
# copy of this software and associated documentation files (the 'Software'), # | ||
# to deal in the Software without restriction, including without limitation # | ||
# the rights to use, copy, modify, merge, publish, distribute, sublicense, # | ||
# and/or sell copies of the Software, and to permit persons to whom the # | ||
# Software is furnished to do so, subject to the following conditions: # | ||
# # | ||
# The above copyright notice and this permission notice shall be included in # | ||
# all copies or substantial portions of the Software. # | ||
# # | ||
# THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR # | ||
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, # | ||
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE # | ||
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER # | ||
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING # | ||
# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER # | ||
# DEALINGS IN THE SOFTWARE. # | ||
# # | ||
############################################################################### | ||
|
||
# from molecule.pdep.collision import SingleExponentialDown | ||
# from molecule.pdep.configuration import Configuration | ||
from molecule.pdep.network import Network | ||
# from molecule.pdep.draw import NetworkDrawer |
Oops, something went wrong.