Skip to content

Commit

Permalink
Merge branch 'main' into update_deprecated
Browse files Browse the repository at this point in the history
  • Loading branch information
qiaojunfeng committed Jun 21, 2024
2 parents 4248d4e + 8427c1d commit a951c46
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions src/aiida_wannier90_workflows/workflows/optimize.py
Original file line number Diff line number Diff line change
Expand Up @@ -736,16 +736,18 @@ def results(self):
namespace="wannier90_plot",
)
)
if "interpolated_bands" in self.outputs["wannier90_plot"]:
w90_bands = self.outputs["wannier90_plot"]["interpolated_bands"]
self.out("band_structure", w90_bands)

if "optimize_reference_bands" in self.inputs:
if self.has_run_wannier90_optimize():
optimal_workchain = self.ctx.optimize_best
else:
# Even if I haven't run optimization, I still output bands distance if reference bands is present
optimal_workchain = self.ctx.workchain_wannier90

if "interpolated_bands" in optimal_workchain.outputs:
# Override the `band_strucure` from W90BandsWorkChain
w90_optimal_bands = optimal_workchain.outputs["interpolated_bands"]
self.out("band_structure", w90_optimal_bands)
bandsdist = self._get_bands_distance(optimal_workchain)
bandsdist = orm.Float(bandsdist)
bandsdist.store()
Expand Down

0 comments on commit a951c46

Please sign in to comment.