Skip to content

Commit

Permalink
Link rotation and single point
Browse files Browse the repository at this point in the history
  • Loading branch information
kmlefran committed Feb 27, 2024
1 parent 4e3723f commit 1f820b4
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion aiida_aimall/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@
A plugin to interface AIMAll with AiiDA
"""

__version__ = "0.6.9"
__version__ = "0.6.10"
4 changes: 3 additions & 1 deletion aiida_aimall/workchains.py
Original file line number Diff line number Diff line change
Expand Up @@ -498,7 +498,9 @@ def aim_reor(self):
def g16_sp(self):
"""Run Gaussian Single Point calculation"""
builder = GaussianCalculation.get_builder()
builder.structure_str = self.inputs.structure_str
builder.structure_str = self.ctx.prereor_aim.get_outgoing().get_node_by_label(
"rotated_structure"
)
builder.parameters = self.inputs.g16_sp_params
if "frag_label" in self.inputs:
builder.fragment_label = self.inputs.frag_label
Expand Down

0 comments on commit 1f820b4

Please sign in to comment.