Skip to content

Commit

Permalink
removing debug stuff
Browse files Browse the repository at this point in the history
  • Loading branch information
K20shores committed Aug 23, 2024
1 parent 172800d commit 30aab7c
Showing 1 changed file with 0 additions and 8 deletions.
8 changes: 0 additions & 8 deletions src/acom_music_box/music_box.py
Original file line number Diff line number Diff line change
Expand Up @@ -714,14 +714,6 @@ def order_reaction_rates(self, curr_conditions, rate_constant_ordering):
key = "EMIS." + rate.reaction.name
rate_constants[key] = rate.rate

logger.debug(f"MUSICA provided {len(rate_constant_ordering.keys())} user defined reaction rates")
logger.debug(f"Music box expects {len(rate_constants.keys())}")

musica_rates = set(rate_constant_ordering.keys())
box_rates = set(rate_constants.keys())

logger.debug(f"Musica contains these rates, and music box doesn't' {musica_rates.difference(box_rates)}")

ordered_rate_constants = len(rate_constants.keys()) * [0.0]
for key, value in rate_constants.items():
ordered_rate_constants[rate_constant_ordering[key]] = float(value)
Expand Down

0 comments on commit 30aab7c

Please sign in to comment.