-
Notifications
You must be signed in to change notification settings - Fork 2
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
Exporting to MUSICA configuration #337
Comments
Hi @K20shores , this looks like a really interesting project and we'd be happy to help integrate the MCM. We unfortunately don't currently have any publicly accessibly documentation regarding the database schema, but if you don't mind getting your hands dirty a little you can run As an example then, the main table is There are 17,224 reactions in the MCM.
which correspond to 2,955 unique rate constants.
Looking at the schema for
The rates that don't have a rate type are a mixture of what would be Arrhenius in your taxonomy ( The Photolysis rates are parameterised as described on the website, with these parameters defined in The Tokenized rates are what we refer to on the website as simple/generic rates and complex rates. These are rates that are defined hierarchically, and I think encompass the ternary and troe groups that you use. Let me know if you need anything explaining in more detail. |
Hi @stulacy thank you for that. Several of the reactions have the Is This code leads me to believe this is true, but the comment seems to suggest that there's another case when what's in the parentheses is not only a number Lines 28 to 43 in 5c9b294
Also, just out of curiosity, is there a rhyme or reason for the J values? For example, J<9> doesn't appear to exist |
Ah, I see further down about the expression inside of an |
Exactly that regarding the There was a reason for the photolysis rates being non-sequential, but it was before my time so I'm afraid I can only clock it up to 'historical reasons'. |
Hi @stulacy
I'm a software developer in NCAR's ACOM lab on the MUSICA project. We have much interest in running the MCM in our box model called music box.
We read json files that define the mechanism used to run our box model. Rather than providing equations compiled into code, our format defines the data needed to run the mechanism. For instance, an arrhenius reaction would be defined like this:
I see that you have a database file which seems to define all of your reactions. It seems that the rates are defined as equations (e.g.,
2.20D-13*KMT06*EXP(600/TEMP)
) rather than as data.Is there possibly a separate database which contains only the data without the equations written out? If not, would you happen to have any documentation which explains your database schema? We are interested in creating a valid musica mechanism that would allow the MCM to be run in music box and having the reaction data or understanding your schema would greatly help us do so.
The text was updated successfully, but these errors were encountered: