Skip to content
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

DILUTE Error with Latest Stoichiometry Update #515

Merged
merged 7 commits into from
Jan 7, 2024
2 changes: 1 addition & 1 deletion build/mech_converter.py
Original file line number Diff line number Diff line change
Expand Up @@ -481,7 +481,7 @@ def convert_to_fortran(input_file, mech_dir, mcm_vers):
for spec in speciesList:
reactionNumber += 1
mech_reac_list.append(str(reactionNumber) + ' ' \
+ str(speciesList.index(spec) + 1) + '\n')
+ str(speciesList.index(spec) + 1) + ' 1.0\n')

with open(os.path.join(mech_dir, 'mechanism.prod'), 'w') as prod_file:
# Output number of species and number of reactions.
Expand Down