Hey everyone
I am very new to Cantera so this question might be very basic:
I am using the python interface for Cantera and I am trying to get the hang of how to access different values in the reaction mechanism file.
For example: In gri 30
# Reaction 325
reaction( "CH3 + C3H7 <=> 2 C2H5", [1.92700E+13, -0.32, 0])
I have figured out that we can get the reaction using:
print(data.reaction_equations([324]))
But I cannot figure out how to print out/get the arrhenius parameters in the reaction i.e. [1.92700E+13, -0.32, 0]
Any leads would be very helpful :)
Thank you!