-
Notifications
You must be signed in to change notification settings - Fork 240
Update to cantera
3.x
#2751
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Update to cantera
3.x
#2751
Conversation
These squashed commits contain all of the initial efforts by HWP to switch from pythoncall to JuliaCall
These were the first commits to change to Python 3.9, and they do not work on their own but instead open the door to finding issues to make the rest of the changes
here are all the solutions that were implemented: - in a couple places we were implicitly casting a double to a numpy float, now need to explicitly grad the _real_ part of the double - Cython does not allow nested function declaration inside cpdef functions, move all of these outside of their parent functions or redefine them to be purely functional where practical - similar to the above, lambda function are no longer allowed - get the same treatment. what's different here is that usually we are using lambda in sorting calls, so we can replace these with operator.itemgetter or attrgetter, where relevant. this also involves re-writing a couple reduce calls, which also used lambda - modern cython does not allow re-declaring existing Cython variables (in previous versions this was a warning I think), so I just remove these where needed. (btw Cython is super cool, actually points out both of the declaration so that you can delete one) i made these fixes while listening to The Metal by Tenacious D, Talk Too Much by Renee Rapp, BEST INTEREST by Tyler, The Creator (love the bass line), mos thoser by food house, and Doritos & Fritos by 100 Gecs
as requested in: #2687 (comment)
These commits are the second (and final) round of attempting JuliaCall debugging by HWP
These commits reflect the initial effort by XD to re-implement the MILP for Clar optimization in SciPy. They were unsuccessful because at the time RMG could not actually run a required version of Python to install SciPy with MILP.
These commits rescued some abandoned work from another branch
This is a collection of largely unordered commits which implement all of the changes discussed in the commit name
…lopment, gone on main
I am using this script to change our CTI blocks into YAML:
|
Here are the other errors which must be resolved:
|
FalloffReaction has been merged with Reaction: https://cantera.org/3.0/doxygen/html/da/d58/deprecated.html#_deprecated000043 |
fddd38d
to
206d426
Compare
845f13c
to
558e48e
Compare
- CI updates: run CI on all platforms with and without RMS, split regression tests into separate job after that so that regression is only checked on one platform - installation updates: make RMG-Py actually `pip`-installable as `reactionmechanismgenerator` to avoid having to set the `PYTHONPATH` variable, which breaks `juliacall`, add a convenience script for installing RMS - code changes: fix some small bugs in the new optional-rms setup (one missed `requires_rms` and one incorrect rebase)
6d03db1
to
0e33bf3
Compare
ee73300
to
33bd6f2
Compare
…nstantTLiquidSurfaceReactor
passing an empty dict for third_body results in the attribute being None, but we need it to just be an unpopulated ThirdBody to indicate that the Reaction is a third body reaction
426c55e
to
8464e20
Compare
it seems that Cantera 3 seems to be a little bit pickier about the syntax for chemkin files
SITE specification: http://www.cvd.louisville.edu/Course/Chemical%20Vapour%20Deposition/Manuals/chemkin/chemkin11surfacechemkin.pdf page 52 |
- cantera3 can only read if there is a name - rmg can't read if there is a name - update rmg to ignore the name
4381db7
to
f89c483
Compare
74932d8
to
73deea4
Compare
f2f26f3
to
60c4125
Compare
cantera
3.x
TODO: rebase onto main after Python 3.9 is merged in main |
This upgrade is needed for multiple reasons:
chemprop
and ML Thermochemistry Prediction #2559)