Skip to content

Commit

Permalink
fixed unit issue with pressure for setting up evolving conditions
Browse files Browse the repository at this point in the history
  • Loading branch information
eadlg2 committed Apr 2, 2024
1 parent 8cea0c8 commit a858456
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/music_box_evolving_conditions.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ def from_UI_JSON(cls, UI_JSON, species_list, reaction_list):

pressure = None
if 'ENV.pressure.Pa' in headers:
pressure = float(evol_from_json[i][headers.index('ENV.pressure.Pa')]) / 101325
pressure = float(evol_from_json[i][headers.index('ENV.pressure.Pa')])

temperature = None
if 'ENV.temperature.K' in headers:
Expand Down

0 comments on commit a858456

Please sign in to comment.