Skip to content

Commit

Permalink
Outputs band_structure from the optimal W90 calculation (#46)
Browse files Browse the repository at this point in the history
- Output the `band_structure` from `wannier90_optimal`
  • Loading branch information
jiang-yuha0 committed Jun 21, 2024
1 parent ef62e87 commit 8427c1d
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 @@ -734,16 +734,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 8427c1d

Please sign in to comment.