Skip to content

Commit

Permalink
Specify the iteration number in reason even for "All core species"
Browse files Browse the repository at this point in the history
So it's easier to track the calculation folder of species
  • Loading branch information
alongd committed Jan 8, 2021
1 parent 2e2bae3 commit a338e98
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion t3/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -707,7 +707,8 @@ def determine_species_to_calculate(self) -> bool:
if self.t3['options']['all_core_species']:
for species in self.rmg_species:
if self.species_requires_refinement(species=species):
species_keys.append(self.add_species(species=species, reasons=['All core species']))
species_keys.append(self.add_species(species=species,
reasons=[f'(i {self.iteration}) All core species']))
else:
# 1. SA observables
sa_observables_exist = False
Expand Down

0 comments on commit a338e98

Please sign in to comment.