Aiida#

Define workflow with aiida#

from python_workflow_definition.aiida import write_workflow_json
from python_workflow_definition.shared import get_dict, get_list

from aiida import load_profile, orm

load_profile()

workflow_json_filename = "aiida_qe.json"
from aiida_workgraph import task, WorkGraph
from workflow import (
    generate_structures,
    get_bulk_structure,
    calculate_qe as _calculate_qe,
    plot_energy_volume_curve,
)
calculate_qe = task(outputs=["energy", "volume", "structure"])(_calculate_qe)
wg = WorkGraph("wg-qe")

Prepare the inputs#

element = orm.Str("Al")
a = orm.Float(4.04)
cubic = orm.Bool(True)
relax_workdir = orm.Str("mini")
pseudopotentials = orm.Dict({"Al": "Al.pbe-n-kjpaw_psl.1.0.0.UPF"})
kpts = orm.List([3, 3, 3])
calc_type_relax = orm.Str("vc-relax")
calc_type_scf = orm.Str("scf")
smearing = orm.Float(0.02)
strain_lst = orm.List([0.9, 0.95, 1.0, 1.05, 1.1])

Actual tasks to construct the EOS workflow#

get_bulk_structure_task = wg.add_task(
    get_bulk_structure,
    element=element,
    a=a,
    cubic=cubic,
)
relax_prepare_input_dict_task = wg.add_task(
    get_dict,
    structure=get_bulk_structure_task.outputs.result,
    calculation=calc_type_relax,
    kpts=kpts,
    pseudopotentials=pseudopotentials,
    smearing=smearing,
)

relax_task = wg.add_task(
    calculate_qe,
    input_dict=relax_prepare_input_dict_task.outputs.result,
    working_directory=relax_workdir,
)
generate_structures_task = wg.add_task(
    generate_structures,
    structure=relax_task.outputs.structure,
    strain_lst=strain_lst,
)
get_volumes_task = wg.add_task(get_list)
get_energies_task = wg.add_task(get_list)
strain_dir_tasks, scf_qe_tasks, scf_get_dict_tasks = [], [], []

for i, strain in enumerate(strain_lst):

    structure_key = f"s_{i}"
    strain_dir = orm.Str(f"strain_{i}")
    generate_structures_task.add_output("workgraph.any", structure_key)

    scf_prepare_input_dict_task = wg.add_task(
        get_dict,
        structure=generate_structures_task.outputs[structure_key],
        calculation=calc_type_scf,
        kpts=kpts,
        pseudopotentials=pseudopotentials,
        smearing=smearing,
    )

    scf_qe_task = wg.add_task(
        calculate_qe,
        input_dict=scf_prepare_input_dict_task.outputs.result,
        working_directory=strain_dir,
    )

    # collect energy and volume
    get_energies_task.set({f"{i}": scf_qe_task.outputs.energy})
    get_volumes_task.set({f"{i}": scf_qe_task.outputs.volume})
plot_energy_volume_curve_task = wg.add_task(
    plot_energy_volume_curve,
    volume_lst=get_volumes_task.outputs.result,
    energy_lst=get_energies_task.outputs.result,
)
wg
_ = write_workflow_json(wg=wg, file_name=workflow_json_filename)
!cat {workflow_json_filename}
{
  "version": "0.1.0",
  "nodes": [
    {
      "id": 0,
      "type": "function",
      "value": "workflow.get_bulk_structure"
    },
    {
      "id": 1,
      "type": "function",
      "value": "python_workflow_definition.shared.get_dict"
    },
    {
      "id": 2,
      "type": "function",
      "value": "workflow.calculate_qe"
    },
    {
      "id": 3,
      "type": "function",
      "value": "workflow.generate_structures"
    },
    {
      "id": 4,
      "type": "function",
      "value": "python_workflow_definition.shared.get_list"
    },
    {
      "id": 5,
      "type": "function",
      "value": "python_workflow_definition.shared.get_list"
    },
    {
      "id": 6,
      "type": "function",
      "value": "python_workflow_definition.shared.get_dict"
    },
    {
      "id": 7,
      "type": "function",
      "value": "workflow.calculate_qe"
    },
    {
      "id": 8,
      "type": "function",
      "value": "python_workflow_definition.shared.get_dict"
    },
    {
      "id": 9,
      "type": "function",
      "value": "workflow.calculate_qe"
    },
    {
      "id": 10,
      "type": "function",
      "value": "python_workflow_definition.shared.get_dict"
    },
    {
      "id": 11,
      "type": "function",
      "value": "workflow.calculate_qe"
    },
    {
      "id": 12,
      "type": "function",
      "value": "python_workflow_definition.shared.get_dict"
    },
    {
      "id": 13,
      "type": "function",
      "value": "workflow.calculate_qe"
    },
    {
      "id": 14,
      "type": "function",
      "value": "python_workflow_definition.shared.get_dict"
    },
    {
      "id": 15,
      "type": "function",
      "value": "workflow.calculate_qe"
    },
    {
      "id": 16,
      "type": "function",
      "value": "workflow.plot_energy_volume_curve"
    },
    {
      "id": 17,
      "type": "input",
      "name": "element",
      "value": "Al"
    },
    {
      "id": 18,
      "type": "input",
      "name": "a",
      "value": 4.04
    },
    {
      "id": 19,
      "type": "input",
      "name": "cubic",
      "value": true
    },
    {
      "id": 20,
      "type": "input",
      "name": "calculation_0",
      "value": "vc-relax"
    },
    {
      "id": 21,
      "type": "input",
      "name": "kpts",
      "value": [
        3,
        3,
        3
      ]
    },
    {
      "id": 22,
      "type": "input",
      "name": "pseudopotentials",
      "value": {
        "Al": "Al.pbe-n-kjpaw_psl.1.0.0.UPF"
      }
    },
    {
      "id": 23,
      "type": "input",
      "name": "smearing",
      "value": 0.02
    },
    {
      "id": 24,
      "type": "input",
      "name": "working_directory_0",
      "value": "mini"
    },
    {
      "id": 25,
      "type": "input",
      "name": "strain_lst",
      "value": [
        0.9,
        0.95,
        1.0,
        1.05,
        1.1
      ]
    },
    {
      "id": 26,
      "type": "input",
      "name": "calculation_1",
      "value": "scf"
    },
    {
      "id": 27,
      "type": "input",
      "name": "working_directory_1",
      "value": "strain_0"
    },
    {
      "id": 28,
      "type": "input",
      "name": "working_directory_2",
      "value": "strain_1"
    },
    {
      "id": 29,
      "type": "input",
      "name": "working_directory_3",
      "value": "strain_2"
    },
    {
      "id": 30,
      "type": "input",
      "name": "working_directory_4",
      "value": "strain_3"
    },
    {
      "id": 31,
      "type": "input",
      "name": "working_directory_5",
      "value": "strain_4"
    },
    {
      "id": 32,
      "type": "output",
      "name": "result"
    }
  ],
  "edges": [
    {
      "target": 1,
      "targetPort": "structure",
      "source": 0,
      "sourcePort": null
    },
    {
      "target": 2,
      "targetPort": "input_dict",
      "source": 1,
      "sourcePort": null
    },
    {
      "target": 3,
      "targetPort": "structure",
      "source": 2,
      "sourcePort": "structure"
    },
    {
      "target": 6,
      "targetPort": "structure",
      "source": 3,
      "sourcePort": "s_0"
    },
    {
      "target": 7,
      "targetPort": "input_dict",
      "source": 6,
      "sourcePort": null
    },
    {
      "target": 5,
      "targetPort": "0",
      "source": 7,
      "sourcePort": "energy"
    },
    {
      "target": 4,
      "targetPort": "0",
      "source": 7,
      "sourcePort": "volume"
    },
    {
      "target": 8,
      "targetPort": "structure",
      "source": 3,
      "sourcePort": "s_1"
    },
    {
      "target": 9,
      "targetPort": "input_dict",
      "source": 8,
      "sourcePort": null
    },
    {
      "target": 5,
      "targetPort": "1",
      "source": 9,
      "sourcePort": "energy"
    },
    {
      "target": 4,
      "targetPort": "1",
      "source": 9,
      "sourcePort": "volume"
    },
    {
      "target": 10,
      "targetPort": "structure",
      "source": 3,
      "sourcePort": "s_2"
    },
    {
      "target": 11,
      "targetPort": "input_dict",
      "source": 10,
      "sourcePort": null
    },
    {
      "target": 5,
      "targetPort": "2",
      "source": 11,
      "sourcePort": "energy"
    },
    {
      "target": 4,
      "targetPort": "2",
      "source": 11,
      "sourcePort": "volume"
    },
    {
      "target": 12,
      "targetPort": "structure",
      "source": 3,
      "sourcePort": "s_3"
    },
    {
      "target": 13,
      "targetPort": "input_dict",
      "source": 12,
      "sourcePort": null
    },
    {
      "target": 5,
      "targetPort": "3",
      "source": 13,
      "sourcePort": "energy"
    },
    {
      "target": 4,
      "targetPort": "3",
      "source": 13,
      "sourcePort": "volume"
    },
    {
      "target": 14,
      "targetPort": "structure",
      "source": 3,
      "sourcePort": "s_4"
    },
    {
      "target": 15,
      "targetPort": "input_dict",
      "source": 14,
      "sourcePort": null
    },
    {
      "target": 5,
      "targetPort": "4",
      "source": 15,
      "sourcePort": "energy"
    },
    {
      "target": 4,
      "targetPort": "4",
      "source": 15,
      "sourcePort": "volume"
    },
    {
      "target": 16,
      "targetPort": "volume_lst",
      "source": 4,
      "sourcePort": null
    },
    {
      "target": 16,
      "targetPort": "energy_lst",
      "source": 5,
      "sourcePort": null
    },
    {
      "target": 0,
      "targetPort": "element",
      "source": 17,
      "sourcePort": null
    },
    {
      "target": 0,
      "targetPort": "a",
      "source": 18,
      "sourcePort": null
    },
    {
      "target": 0,
      "targetPort": "cubic",
      "source": 19,
      "sourcePort": null
    },
    {
      "target": 1,
      "targetPort": "calculation",
      "source": 20,
      "sourcePort": null
    },
    {
      "target": 1,
      "targetPort": "kpts",
      "source": 21,
      "sourcePort": null
    },
    {
      "target": 1,
      "targetPort": "pseudopotentials",
      "source": 22,
      "sourcePort": null
    },
    {
      "target": 1,
      "targetPort": "smearing",
      "source": 23,
      "sourcePort": null
    },
    {
      "target": 2,
      "targetPort": "working_directory",
      "source": 24,
      "sourcePort": null
    },
    {
      "target": 3,
      "targetPort": "strain_lst",
      "source": 25,
      "sourcePort": null
    },
    {
      "target": 6,
      "targetPort": "calculation",
      "source": 26,
      "sourcePort": null
    },
    {
      "target": 6,
      "targetPort": "kpts",
      "source": 21,
      "sourcePort": null
    },
    {
      "target": 6,
      "targetPort": "pseudopotentials",
      "source": 22,
      "sourcePort": null
    },
    {
      "target": 6,
      "targetPort": "smearing",
      "source": 23,
      "sourcePort": null
    },
    {
      "target": 7,
      "targetPort": "working_directory",
      "source": 27,
      "sourcePort": null
    },
    {
      "target": 8,
      "targetPort": "calculation",
      "source": 26,
      "sourcePort": null
    },
    {
      "target": 8,
      "targetPort": "kpts",
      "source": 21,
      "sourcePort": null
    },
    {
      "target": 8,
      "targetPort": "pseudopotentials",
      "source": 22,
      "sourcePort": null
    },
    {
      "target": 8,
      "targetPort": "smearing",
      "source": 23,
      "sourcePort": null
    },
    {
      "target": 9,
      "targetPort": "working_directory",
      "source": 28,
      "sourcePort": null
    },
    {
      "target": 10,
      "targetPort": "calculation",
      "source": 26,
      "sourcePort": null
    },
    {
      "target": 10,
      "targetPort": "kpts",
      "source": 21,
      "sourcePort": null
    },
    {
      "target": 10,
      "targetPort": "pseudopotentials",
      "source": 22,
      "sourcePort": null
    },
    {
      "target": 10,
      "targetPort": "smearing",
      "source": 23,
      "sourcePort": null
    },
    {
      "target": 11,
      "targetPort": "working_directory",
      "source": 29,
      "sourcePort": null
    },
    {
      "target": 12,
      "targetPort": "calculation",
      "source": 26,
      "sourcePort": null
    },
    {
      "target": 12,
      "targetPort": "kpts",
      "source": 21,
      "sourcePort": null
    },
    {
      "target": 12,
      "targetPort": "pseudopotentials",
      "source": 22,
      "sourcePort": null
    },
    {
      "target": 12,
      "targetPort": "smearing",
      "source": 23,
      "sourcePort": null
    },
    {
      "target": 13,
      "targetPort": "working_directory",
      "source": 30,
      "sourcePort": null
    },
    {
      "target": 14,
      "targetPort": "calculation",
      "source": 26,
      "sourcePort": null
    },
    {
      "target": 14,
      "targetPort": "kpts",
      "source": 21,
      "sourcePort": null
    },
    {
      "target": 14,
      "targetPort": "pseudopotentials",
      "source": 22,
      "sourcePort": null
    },
    {
      "target": 14,
      "targetPort": "smearing",
      "source": 23,
      "sourcePort": null
    },
    {
      "target": 15,
      "targetPort": "working_directory",
      "source": 31,
      "sourcePort": null
    },
    {
      "target": 32,
      "targetPort": null,
      "source": 16,
      "sourcePort": null
    }
  ]
}

Load Workflow with jobflow#

from python_workflow_definition.jobflow import load_workflow_json
from jobflow.managers.local import run_locally
flow = load_workflow_json(file_name=workflow_json_filename)
flow[0].function_kwargs["a"] = 4.05
result = run_locally(flow)
result
2025-05-24 05:48:01,786 INFO Started executing jobs locally
2025-05-24 05:48:02,013 INFO Starting job - get_bulk_structure (28c24969-efdd-4239-a6bd-af123fff4298)
2025-05-24 05:48:02,017 INFO Finished job - get_bulk_structure (28c24969-efdd-4239-a6bd-af123fff4298)
2025-05-24 05:48:02,018 INFO Starting job - get_dict (ffd8792f-e232-4cd7-8a66-15d61be9e29f)
2025-05-24 05:48:02,019 INFO Finished job - get_dict (ffd8792f-e232-4cd7-8a66-15d61be9e29f)
2025-05-24 05:48:02,020 INFO Starting job - calculate_qe (69b4c8f3-8419-4df1-b569-dd1c7fefd764)
[jupyter-pythonworkflow-fl--x---d7231032:08863] mca_base_component_repository_open: unable to open mca_btl_openib: librdmacm.so.1: cannot open shared object file: No such file or directory (ignored)
Note: The following floating-point exceptions are signalling: IEEE_INVALID_FLAG
2025-05-24 05:48:54,204 INFO Finished job - calculate_qe (69b4c8f3-8419-4df1-b569-dd1c7fefd764)
2025-05-24 05:48:54,205 INFO Starting job - generate_structures (2d24374c-9473-456d-98ff-1be0c02c2bb7)
2025-05-24 05:48:54,208 INFO Finished job - generate_structures (2d24374c-9473-456d-98ff-1be0c02c2bb7)
2025-05-24 05:48:54,209 INFO Starting job - get_dict (56abaa34-f9a4-4d28-bf90-2897fe970beb)
2025-05-24 05:48:54,210 INFO Finished job - get_dict (56abaa34-f9a4-4d28-bf90-2897fe970beb)
2025-05-24 05:48:54,210 INFO Starting job - get_dict (2dd35376-658a-46ff-a277-a9b8e88ddac5)
2025-05-24 05:48:54,211 INFO Finished job - get_dict (2dd35376-658a-46ff-a277-a9b8e88ddac5)
2025-05-24 05:48:54,211 INFO Starting job - get_dict (33527acb-a9e4-4422-8198-08f80992ac9e)
2025-05-24 05:48:54,212 INFO Finished job - get_dict (33527acb-a9e4-4422-8198-08f80992ac9e)
2025-05-24 05:48:54,213 INFO Starting job - get_dict (75067890-ee04-48e4-81e3-d8bf8072b673)
2025-05-24 05:48:54,214 INFO Finished job - get_dict (75067890-ee04-48e4-81e3-d8bf8072b673)
2025-05-24 05:48:54,214 INFO Starting job - get_dict (10b85da2-e05d-4de0-85bd-a572aab2a34f)
2025-05-24 05:48:54,215 INFO Finished job - get_dict (10b85da2-e05d-4de0-85bd-a572aab2a34f)
2025-05-24 05:48:54,216 INFO Starting job - calculate_qe (254a56bb-69a7-478c-a5bc-162d183e0454)
[jupyter-pythonworkflow-fl--x---d7231032:08876] mca_base_component_repository_open: unable to open mca_btl_openib: librdmacm.so.1: cannot open shared object file: No such file or directory (ignored)
2025-05-24 05:49:04,619 INFO Finished job - calculate_qe (254a56bb-69a7-478c-a5bc-162d183e0454)
2025-05-24 05:49:04,620 INFO Starting job - calculate_qe (6f1b1b10-81d7-4f4a-95a9-c37697b4ff22)
Note: The following floating-point exceptions are signalling: IEEE_INVALID_FLAG
[jupyter-pythonworkflow-fl--x---d7231032:08887] mca_base_component_repository_open: unable to open mca_btl_openib: librdmacm.so.1: cannot open shared object file: No such file or directory (ignored)
2025-05-24 05:49:15,345 INFO Finished job - calculate_qe (6f1b1b10-81d7-4f4a-95a9-c37697b4ff22)
2025-05-24 05:49:15,346 INFO Starting job - calculate_qe (adfa9cb1-8d89-4943-832b-9e21782861cd)
Note: The following floating-point exceptions are signalling: IEEE_INVALID_FLAG
[jupyter-pythonworkflow-fl--x---d7231032:08897] mca_base_component_repository_open: unable to open mca_btl_openib: librdmacm.so.1: cannot open shared object file: No such file or directory (ignored)
2025-05-24 05:49:26,680 INFO Finished job - calculate_qe (adfa9cb1-8d89-4943-832b-9e21782861cd)
2025-05-24 05:49:26,681 INFO Starting job - calculate_qe (c8bd32cf-c431-4189-9f09-708a86fa8aa0)
Note: The following floating-point exceptions are signalling: IEEE_INVALID_FLAG
[jupyter-pythonworkflow-fl--x---d7231032:08908] mca_base_component_repository_open: unable to open mca_btl_openib: librdmacm.so.1: cannot open shared object file: No such file or directory (ignored)
2025-05-24 05:49:40,830 INFO Finished job - calculate_qe (c8bd32cf-c431-4189-9f09-708a86fa8aa0)
2025-05-24 05:49:40,831 INFO Starting job - calculate_qe (140c1cae-54ed-492f-8589-d9c0490142c6)
Note: The following floating-point exceptions are signalling: IEEE_INVALID_FLAG
[jupyter-pythonworkflow-fl--x---d7231032:08919] mca_base_component_repository_open: unable to open mca_btl_openib: librdmacm.so.1: cannot open shared object file: No such file or directory (ignored)
Note: The following floating-point exceptions are signalling: IEEE_INVALID_FLAG
2025-05-24 05:49:54,690 INFO Finished job - calculate_qe (140c1cae-54ed-492f-8589-d9c0490142c6)
2025-05-24 05:49:54,691 INFO Starting job - get_list (1eade2dd-772e-4e49-8264-2ff6ee8ff6ff)
2025-05-24 05:49:54,694 INFO Finished job - get_list (1eade2dd-772e-4e49-8264-2ff6ee8ff6ff)
2025-05-24 05:49:54,694 INFO Starting job - get_list (0b1cb308-c310-4995-b18b-1441b1ff1a22)
2025-05-24 05:49:54,697 INFO Finished job - get_list (0b1cb308-c310-4995-b18b-1441b1ff1a22)
2025-05-24 05:49:54,698 INFO Starting job - plot_energy_volume_curve (2fd7c54d-8f3d-437c-a59f-8236978defdc)
2025-05-24 05:49:54,794 INFO Finished job - plot_energy_volume_curve (2fd7c54d-8f3d-437c-a59f-8236978defdc)
2025-05-24 05:49:54,795 INFO Finished executing jobs locally
{'28c24969-efdd-4239-a6bd-af123fff4298': {1: Response(output='{"immutable_id": null, "last_modified": null, "elements": ["Al"], "nelements": 1, "elements_ratios": [1.0], "chemical_formula_descriptive": "Al4", "chemical_formula_reduced": "Al", "chemical_formula_hill": null, "chemical_formula_anonymous": "A", "dimension_types": [1, 1, 1], "nperiodic_dimensions": 3, "lattice_vectors": [[4.05, 0.0, 0.0], [0.0, 4.05, 0.0], [0.0, 0.0, 4.05]], "space_group_symmetry_operations_xyz": null, "space_group_symbol_hall": null, "space_group_symbol_hermann_mauguin": null, "space_group_symbol_hermann_mauguin_extended": null, "space_group_it_number": null, "cartesian_site_positions": [[0.0, 0.0, 0.0], [0.0, 2.025, 2.025], [2.025, 0.0, 2.025], [2.025, 2.025, 0.0]], "nsites": 4, "species": [{"name": "Al", "chemical_symbols": ["Al"], "concentration": [1.0], "mass": null, "original_name": null, "attached": null, "nattached": null}], "species_at_sites": ["Al", "Al", "Al", "Al"], "assemblies": null, "structure_features": []}', detour=None, addition=None, replace=None, stored_data=None, stop_children=False, stop_jobflow=False, job_dir=PosixPath('/home/jovyan/example_workflows/quantum_espresso'))},
 'ffd8792f-e232-4cd7-8a66-15d61be9e29f': {1: Response(output={'structure': '{"immutable_id": null, "last_modified": null, "elements": ["Al"], "nelements": 1, "elements_ratios": [1.0], "chemical_formula_descriptive": "Al4", "chemical_formula_reduced": "Al", "chemical_formula_hill": null, "chemical_formula_anonymous": "A", "dimension_types": [1, 1, 1], "nperiodic_dimensions": 3, "lattice_vectors": [[4.05, 0.0, 0.0], [0.0, 4.05, 0.0], [0.0, 0.0, 4.05]], "space_group_symmetry_operations_xyz": null, "space_group_symbol_hall": null, "space_group_symbol_hermann_mauguin": null, "space_group_symbol_hermann_mauguin_extended": null, "space_group_it_number": null, "cartesian_site_positions": [[0.0, 0.0, 0.0], [0.0, 2.025, 2.025], [2.025, 0.0, 2.025], [2.025, 2.025, 0.0]], "nsites": 4, "species": [{"name": "Al", "chemical_symbols": ["Al"], "concentration": [1.0], "mass": null, "original_name": null, "attached": null, "nattached": null}], "species_at_sites": ["Al", "Al", "Al", "Al"], "assemblies": null, "structure_features": []}', 'calculation': 'vc-relax', 'kpts': [3, 3, 3], 'pseudopotentials': {'Al': 'Al.pbe-n-kjpaw_psl.1.0.0.UPF'}, 'smearing': 0.02}, detour=None, addition=None, replace=None, stored_data=None, stop_children=False, stop_jobflow=False, job_dir=PosixPath('/home/jovyan/example_workflows/quantum_espresso'))},
 '69b4c8f3-8419-4df1-b569-dd1c7fefd764': {1: Response(output={'structure': '{"immutable_id": null, "last_modified": null, "elements": ["Al"], "nelements": 1, "elements_ratios": [1.0], "chemical_formula_descriptive": "Al4", "chemical_formula_reduced": "Al", "chemical_formula_hill": null, "chemical_formula_anonymous": "A", "dimension_types": [1, 1, 1], "nperiodic_dimensions": 3, "lattice_vectors": [[4.045637215946848, 0.0, 0.0], [0.0, 4.045637215946848, 0.0], [0.0, 0.0, 4.045637215946848]], "space_group_symmetry_operations_xyz": null, "space_group_symbol_hall": null, "space_group_symbol_hermann_mauguin": null, "space_group_symbol_hermann_mauguin_extended": null, "space_group_it_number": null, "cartesian_site_positions": [[0.0, 0.0, 0.0], [0.0, 2.0228186079734236, 2.0228186079734236], [2.0228186079734236, 0.0, 2.0228186079734236], [2.0228186079734236, 2.0228186079734236, 0.0]], "nsites": 4, "species": [{"name": "Al", "chemical_symbols": ["Al"], "concentration": [1.0], "mass": null, "original_name": null, "attached": null, "nattached": null}], "species_at_sites": ["Al", "Al", "Al", "Al"], "assemblies": null, "structure_features": []}', 'energy': -1074.936526225353, 'volume': 66.21567448236287}, detour=None, addition=None, replace=None, stored_data=None, stop_children=False, stop_jobflow=False, job_dir=PosixPath('/home/jovyan/example_workflows/quantum_espresso'))},
 '2d24374c-9473-456d-98ff-1be0c02c2bb7': {1: Response(output={'s_0': '{"immutable_id": null, "last_modified": null, "elements": ["Al"], "nelements": 1, "elements_ratios": [1.0], "chemical_formula_descriptive": "Al4", "chemical_formula_reduced": "Al", "chemical_formula_hill": null, "chemical_formula_anonymous": "A", "dimension_types": [1, 1, 1], "nperiodic_dimensions": 3, "lattice_vectors": [[3.9060197859621555, 0.0, 0.0], [0.0, 3.9060197859621555, 0.0], [0.0, 0.0, 3.9060197859621555]], "space_group_symmetry_operations_xyz": null, "space_group_symbol_hall": null, "space_group_symbol_hermann_mauguin": null, "space_group_symbol_hermann_mauguin_extended": null, "space_group_it_number": null, "cartesian_site_positions": [[0.0, 0.0, 0.0], [0.0, 1.9530098929810773, 1.9530098929810773], [1.9530098929810773, 0.0, 1.9530098929810773], [1.9530098929810773, 1.9530098929810773, 0.0]], "nsites": 4, "species": [{"name": "Al", "chemical_symbols": ["Al"], "concentration": [1.0], "mass": null, "original_name": null, "attached": null, "nattached": null}], "species_at_sites": ["Al", "Al", "Al", "Al"], "assemblies": null, "structure_features": []}', 's_1': '{"immutable_id": null, "last_modified": null, "elements": ["Al"], "nelements": 1, "elements_ratios": [1.0], "chemical_formula_descriptive": "Al4", "chemical_formula_reduced": "Al", "chemical_formula_hill": null, "chemical_formula_anonymous": "A", "dimension_types": [1, 1, 1], "nperiodic_dimensions": 3, "lattice_vectors": [[3.977053844318056, 0.0, 0.0], [0.0, 3.977053844318056, 0.0], [0.0, 0.0, 3.977053844318056]], "space_group_symmetry_operations_xyz": null, "space_group_symbol_hall": null, "space_group_symbol_hermann_mauguin": null, "space_group_symbol_hermann_mauguin_extended": null, "space_group_it_number": null, "cartesian_site_positions": [[0.0, 0.0, 0.0], [0.0, 1.9885269221590276, 1.9885269221590276], [1.9885269221590276, 0.0, 1.9885269221590276], [1.9885269221590276, 1.9885269221590276, 0.0]], "nsites": 4, "species": [{"name": "Al", "chemical_symbols": ["Al"], "concentration": [1.0], "mass": null, "original_name": null, "attached": null, "nattached": null}], "species_at_sites": ["Al", "Al", "Al", "Al"], "assemblies": null, "structure_features": []}', 's_2': '{"immutable_id": null, "last_modified": null, "elements": ["Al"], "nelements": 1, "elements_ratios": [1.0], "chemical_formula_descriptive": "Al4", "chemical_formula_reduced": "Al", "chemical_formula_hill": null, "chemical_formula_anonymous": "A", "dimension_types": [1, 1, 1], "nperiodic_dimensions": 3, "lattice_vectors": [[4.045637215946848, 0.0, 0.0], [0.0, 4.045637215946848, 0.0], [0.0, 0.0, 4.045637215946848]], "space_group_symmetry_operations_xyz": null, "space_group_symbol_hall": null, "space_group_symbol_hermann_mauguin": null, "space_group_symbol_hermann_mauguin_extended": null, "space_group_it_number": null, "cartesian_site_positions": [[0.0, 0.0, 0.0], [0.0, 2.0228186079734236, 2.0228186079734236], [2.0228186079734236, 0.0, 2.0228186079734236], [2.0228186079734236, 2.0228186079734236, 0.0]], "nsites": 4, "species": [{"name": "Al", "chemical_symbols": ["Al"], "concentration": [1.0], "mass": null, "original_name": null, "attached": null, "nattached": null}], "species_at_sites": ["Al", "Al", "Al", "Al"], "assemblies": null, "structure_features": []}', 's_3': '{"immutable_id": null, "last_modified": null, "elements": ["Al"], "nelements": 1, "elements_ratios": [1.0], "chemical_formula_descriptive": "Al4", "chemical_formula_reduced": "Al", "chemical_formula_hill": null, "chemical_formula_anonymous": "A", "dimension_types": [1, 1, 1], "nperiodic_dimensions": 3, "lattice_vectors": [[4.111970927282964, 0.0, 0.0], [0.0, 4.111970927282964, 0.0], [0.0, 0.0, 4.111970927282964]], "space_group_symmetry_operations_xyz": null, "space_group_symbol_hall": null, "space_group_symbol_hermann_mauguin": null, "space_group_symbol_hermann_mauguin_extended": null, "space_group_it_number": null, "cartesian_site_positions": [[0.0, 0.0, 0.0], [0.0, 2.0559854636414814, 2.0559854636414814], [2.0559854636414814, 0.0, 2.0559854636414814], [2.0559854636414814, 2.0559854636414814, 0.0]], "nsites": 4, "species": [{"name": "Al", "chemical_symbols": ["Al"], "concentration": [1.0], "mass": null, "original_name": null, "attached": null, "nattached": null}], "species_at_sites": ["Al", "Al", "Al", "Al"], "assemblies": null, "structure_features": []}', 's_4': '{"immutable_id": null, "last_modified": null, "elements": ["Al"], "nelements": 1, "elements_ratios": [1.0], "chemical_formula_descriptive": "Al4", "chemical_formula_reduced": "Al", "chemical_formula_hill": null, "chemical_formula_anonymous": "A", "dimension_types": [1, 1, 1], "nperiodic_dimensions": 3, "lattice_vectors": [[4.176230852372188, 0.0, 0.0], [0.0, 4.176230852372188, 0.0], [0.0, 0.0, 4.176230852372188]], "space_group_symmetry_operations_xyz": null, "space_group_symbol_hall": null, "space_group_symbol_hermann_mauguin": null, "space_group_symbol_hermann_mauguin_extended": null, "space_group_it_number": null, "cartesian_site_positions": [[0.0, 0.0, 0.0], [0.0, 2.0881154261860937, 2.0881154261860937], [2.0881154261860937, 0.0, 2.0881154261860937], [2.0881154261860937, 2.0881154261860937, 0.0]], "nsites": 4, "species": [{"name": "Al", "chemical_symbols": ["Al"], "concentration": [1.0], "mass": null, "original_name": null, "attached": null, "nattached": null}], "species_at_sites": ["Al", "Al", "Al", "Al"], "assemblies": null, "structure_features": []}'}, detour=None, addition=None, replace=None, stored_data=None, stop_children=False, stop_jobflow=False, job_dir=PosixPath('/home/jovyan/example_workflows/quantum_espresso'))},
 '56abaa34-f9a4-4d28-bf90-2897fe970beb': {1: Response(output={'structure': '{"immutable_id": null, "last_modified": null, "elements": ["Al"], "nelements": 1, "elements_ratios": [1.0], "chemical_formula_descriptive": "Al4", "chemical_formula_reduced": "Al", "chemical_formula_hill": null, "chemical_formula_anonymous": "A", "dimension_types": [1, 1, 1], "nperiodic_dimensions": 3, "lattice_vectors": [[3.9060197859621555, 0.0, 0.0], [0.0, 3.9060197859621555, 0.0], [0.0, 0.0, 3.9060197859621555]], "space_group_symmetry_operations_xyz": null, "space_group_symbol_hall": null, "space_group_symbol_hermann_mauguin": null, "space_group_symbol_hermann_mauguin_extended": null, "space_group_it_number": null, "cartesian_site_positions": [[0.0, 0.0, 0.0], [0.0, 1.9530098929810773, 1.9530098929810773], [1.9530098929810773, 0.0, 1.9530098929810773], [1.9530098929810773, 1.9530098929810773, 0.0]], "nsites": 4, "species": [{"name": "Al", "chemical_symbols": ["Al"], "concentration": [1.0], "mass": null, "original_name": null, "attached": null, "nattached": null}], "species_at_sites": ["Al", "Al", "Al", "Al"], "assemblies": null, "structure_features": []}', 'calculation': 'scf', 'kpts': [3, 3, 3], 'pseudopotentials': {'Al': 'Al.pbe-n-kjpaw_psl.1.0.0.UPF'}, 'smearing': 0.02}, detour=None, addition=None, replace=None, stored_data=None, stop_children=False, stop_jobflow=False, job_dir=PosixPath('/home/jovyan/example_workflows/quantum_espresso'))},
 '2dd35376-658a-46ff-a277-a9b8e88ddac5': {1: Response(output={'structure': '{"immutable_id": null, "last_modified": null, "elements": ["Al"], "nelements": 1, "elements_ratios": [1.0], "chemical_formula_descriptive": "Al4", "chemical_formula_reduced": "Al", "chemical_formula_hill": null, "chemical_formula_anonymous": "A", "dimension_types": [1, 1, 1], "nperiodic_dimensions": 3, "lattice_vectors": [[3.977053844318056, 0.0, 0.0], [0.0, 3.977053844318056, 0.0], [0.0, 0.0, 3.977053844318056]], "space_group_symmetry_operations_xyz": null, "space_group_symbol_hall": null, "space_group_symbol_hermann_mauguin": null, "space_group_symbol_hermann_mauguin_extended": null, "space_group_it_number": null, "cartesian_site_positions": [[0.0, 0.0, 0.0], [0.0, 1.9885269221590276, 1.9885269221590276], [1.9885269221590276, 0.0, 1.9885269221590276], [1.9885269221590276, 1.9885269221590276, 0.0]], "nsites": 4, "species": [{"name": "Al", "chemical_symbols": ["Al"], "concentration": [1.0], "mass": null, "original_name": null, "attached": null, "nattached": null}], "species_at_sites": ["Al", "Al", "Al", "Al"], "assemblies": null, "structure_features": []}', 'calculation': 'scf', 'kpts': [3, 3, 3], 'pseudopotentials': {'Al': 'Al.pbe-n-kjpaw_psl.1.0.0.UPF'}, 'smearing': 0.02}, detour=None, addition=None, replace=None, stored_data=None, stop_children=False, stop_jobflow=False, job_dir=PosixPath('/home/jovyan/example_workflows/quantum_espresso'))},
 '33527acb-a9e4-4422-8198-08f80992ac9e': {1: Response(output={'structure': '{"immutable_id": null, "last_modified": null, "elements": ["Al"], "nelements": 1, "elements_ratios": [1.0], "chemical_formula_descriptive": "Al4", "chemical_formula_reduced": "Al", "chemical_formula_hill": null, "chemical_formula_anonymous": "A", "dimension_types": [1, 1, 1], "nperiodic_dimensions": 3, "lattice_vectors": [[4.045637215946848, 0.0, 0.0], [0.0, 4.045637215946848, 0.0], [0.0, 0.0, 4.045637215946848]], "space_group_symmetry_operations_xyz": null, "space_group_symbol_hall": null, "space_group_symbol_hermann_mauguin": null, "space_group_symbol_hermann_mauguin_extended": null, "space_group_it_number": null, "cartesian_site_positions": [[0.0, 0.0, 0.0], [0.0, 2.0228186079734236, 2.0228186079734236], [2.0228186079734236, 0.0, 2.0228186079734236], [2.0228186079734236, 2.0228186079734236, 0.0]], "nsites": 4, "species": [{"name": "Al", "chemical_symbols": ["Al"], "concentration": [1.0], "mass": null, "original_name": null, "attached": null, "nattached": null}], "species_at_sites": ["Al", "Al", "Al", "Al"], "assemblies": null, "structure_features": []}', 'calculation': 'scf', 'kpts': [3, 3, 3], 'pseudopotentials': {'Al': 'Al.pbe-n-kjpaw_psl.1.0.0.UPF'}, 'smearing': 0.02}, detour=None, addition=None, replace=None, stored_data=None, stop_children=False, stop_jobflow=False, job_dir=PosixPath('/home/jovyan/example_workflows/quantum_espresso'))},
 '75067890-ee04-48e4-81e3-d8bf8072b673': {1: Response(output={'structure': '{"immutable_id": null, "last_modified": null, "elements": ["Al"], "nelements": 1, "elements_ratios": [1.0], "chemical_formula_descriptive": "Al4", "chemical_formula_reduced": "Al", "chemical_formula_hill": null, "chemical_formula_anonymous": "A", "dimension_types": [1, 1, 1], "nperiodic_dimensions": 3, "lattice_vectors": [[4.111970927282964, 0.0, 0.0], [0.0, 4.111970927282964, 0.0], [0.0, 0.0, 4.111970927282964]], "space_group_symmetry_operations_xyz": null, "space_group_symbol_hall": null, "space_group_symbol_hermann_mauguin": null, "space_group_symbol_hermann_mauguin_extended": null, "space_group_it_number": null, "cartesian_site_positions": [[0.0, 0.0, 0.0], [0.0, 2.0559854636414814, 2.0559854636414814], [2.0559854636414814, 0.0, 2.0559854636414814], [2.0559854636414814, 2.0559854636414814, 0.0]], "nsites": 4, "species": [{"name": "Al", "chemical_symbols": ["Al"], "concentration": [1.0], "mass": null, "original_name": null, "attached": null, "nattached": null}], "species_at_sites": ["Al", "Al", "Al", "Al"], "assemblies": null, "structure_features": []}', 'calculation': 'scf', 'kpts': [3, 3, 3], 'pseudopotentials': {'Al': 'Al.pbe-n-kjpaw_psl.1.0.0.UPF'}, 'smearing': 0.02}, detour=None, addition=None, replace=None, stored_data=None, stop_children=False, stop_jobflow=False, job_dir=PosixPath('/home/jovyan/example_workflows/quantum_espresso'))},
 '10b85da2-e05d-4de0-85bd-a572aab2a34f': {1: Response(output={'structure': '{"immutable_id": null, "last_modified": null, "elements": ["Al"], "nelements": 1, "elements_ratios": [1.0], "chemical_formula_descriptive": "Al4", "chemical_formula_reduced": "Al", "chemical_formula_hill": null, "chemical_formula_anonymous": "A", "dimension_types": [1, 1, 1], "nperiodic_dimensions": 3, "lattice_vectors": [[4.176230852372188, 0.0, 0.0], [0.0, 4.176230852372188, 0.0], [0.0, 0.0, 4.176230852372188]], "space_group_symmetry_operations_xyz": null, "space_group_symbol_hall": null, "space_group_symbol_hermann_mauguin": null, "space_group_symbol_hermann_mauguin_extended": null, "space_group_it_number": null, "cartesian_site_positions": [[0.0, 0.0, 0.0], [0.0, 2.0881154261860937, 2.0881154261860937], [2.0881154261860937, 0.0, 2.0881154261860937], [2.0881154261860937, 2.0881154261860937, 0.0]], "nsites": 4, "species": [{"name": "Al", "chemical_symbols": ["Al"], "concentration": [1.0], "mass": null, "original_name": null, "attached": null, "nattached": null}], "species_at_sites": ["Al", "Al", "Al", "Al"], "assemblies": null, "structure_features": []}', 'calculation': 'scf', 'kpts': [3, 3, 3], 'pseudopotentials': {'Al': 'Al.pbe-n-kjpaw_psl.1.0.0.UPF'}, 'smearing': 0.02}, detour=None, addition=None, replace=None, stored_data=None, stop_children=False, stop_jobflow=False, job_dir=PosixPath('/home/jovyan/example_workflows/quantum_espresso'))},
 '254a56bb-69a7-478c-a5bc-162d183e0454': {1: Response(output={'structure': '{"immutable_id": null, "last_modified": null, "elements": ["Al"], "nelements": 1, "elements_ratios": [1.0], "chemical_formula_descriptive": "Al4", "chemical_formula_reduced": "Al", "chemical_formula_hill": null, "chemical_formula_anonymous": "A", "dimension_types": [1, 1, 1], "nperiodic_dimensions": 3, "lattice_vectors": [[3.906019768889195, 0.0, 0.0], [0.0, 3.906019768889195, 0.0], [0.0, 0.0, 3.906019768889195]], "space_group_symmetry_operations_xyz": null, "space_group_symbol_hall": null, "space_group_symbol_hermann_mauguin": null, "space_group_symbol_hermann_mauguin_extended": null, "space_group_it_number": null, "cartesian_site_positions": [[0.0, 0.0, 0.0], [0.0, 1.9530098844635175, 1.9530098844635175], [1.9530098844635175, 0.0, 1.9530098844635175], [1.9530098844635175, 1.9530098844635175, 0.0]], "nsites": 4, "species": [{"name": "Al", "chemical_symbols": ["Al"], "concentration": [1.0], "mass": null, "original_name": null, "attached": null, "nattached": null}], "species_at_sites": ["Al", "Al", "Al", "Al"], "assemblies": null, "structure_features": []}', 'energy': -1074.8457446150612, 'volume': 59.59410625268055}, detour=None, addition=None, replace=None, stored_data=None, stop_children=False, stop_jobflow=False, job_dir=PosixPath('/home/jovyan/example_workflows/quantum_espresso'))},
 '6f1b1b10-81d7-4f4a-95a9-c37697b4ff22': {1: Response(output={'structure': '{"immutable_id": null, "last_modified": null, "elements": ["Al"], "nelements": 1, "elements_ratios": [1.0], "chemical_formula_descriptive": "Al4", "chemical_formula_reduced": "Al", "chemical_formula_hill": null, "chemical_formula_anonymous": "A", "dimension_types": [1, 1, 1], "nperiodic_dimensions": 3, "lattice_vectors": [[3.97705382693461, 0.0, 0.0], [0.0, 3.97705382693461, 0.0], [0.0, 0.0, 3.97705382693461]], "space_group_symmetry_operations_xyz": null, "space_group_symbol_hall": null, "space_group_symbol_hermann_mauguin": null, "space_group_symbol_hermann_mauguin_extended": null, "space_group_it_number": null, "cartesian_site_positions": [[0.0, 0.0, 0.0], [0.0, 1.9885269135082753, 1.9885269135082753], [1.9885269135082753, 0.0, 1.9885269135082753], [1.9885269135082753, 1.9885269135082753, 0.0]], "nsites": 4, "species": [{"name": "Al", "chemical_symbols": ["Al"], "concentration": [1.0], "mass": null, "original_name": null, "attached": null, "nattached": null}], "species_at_sites": ["Al", "Al", "Al", "Al"], "assemblies": null, "structure_features": []}', 'energy': -1074.9161488594598, 'volume': 62.90488993338502}, detour=None, addition=None, replace=None, stored_data=None, stop_children=False, stop_jobflow=False, job_dir=PosixPath('/home/jovyan/example_workflows/quantum_espresso'))},
 'adfa9cb1-8d89-4943-832b-9e21782861cd': {1: Response(output={'structure': '{"immutable_id": null, "last_modified": null, "elements": ["Al"], "nelements": 1, "elements_ratios": [1.0], "chemical_formula_descriptive": "Al4", "chemical_formula_reduced": "Al", "chemical_formula_hill": null, "chemical_formula_anonymous": "A", "dimension_types": [1, 1, 1], "nperiodic_dimensions": 3, "lattice_vectors": [[4.045637198263626, 0.0, 0.0], [0.0, 4.045637198263626, 0.0], [0.0, 0.0, 4.045637198263626]], "space_group_symmetry_operations_xyz": null, "space_group_symbol_hall": null, "space_group_symbol_hermann_mauguin": null, "space_group_symbol_hermann_mauguin_extended": null, "space_group_it_number": null, "cartesian_site_positions": [[0.0, 0.0, 0.0], [0.0, 2.0228185991583882, 2.0228185991583882], [2.0228185991583882, 0.0, 2.0228185991583882], [2.0228185991583882, 2.0228185991583882, 0.0]], "nsites": 4, "species": [{"name": "Al", "chemical_symbols": ["Al"], "concentration": [1.0], "mass": null, "original_name": null, "attached": null, "nattached": null}], "species_at_sites": ["Al", "Al", "Al", "Al"], "assemblies": null, "structure_features": []}', 'energy': -1074.9365241668352, 'volume': 66.21567361408935}, detour=None, addition=None, replace=None, stored_data=None, stop_children=False, stop_jobflow=False, job_dir=PosixPath('/home/jovyan/example_workflows/quantum_espresso'))},
 'c8bd32cf-c431-4189-9f09-708a86fa8aa0': {1: Response(output={'structure': '{"immutable_id": null, "last_modified": null, "elements": ["Al"], "nelements": 1, "elements_ratios": [1.0], "chemical_formula_descriptive": "Al4", "chemical_formula_reduced": "Al", "chemical_formula_hill": null, "chemical_formula_anonymous": "A", "dimension_types": [1, 1, 1], "nperiodic_dimensions": 3, "lattice_vectors": [[4.111970909309796, 0.0, 0.0], [0.0, 4.111970909309796, 0.0], [0.0, 0.0, 4.111970909309796]], "space_group_symmetry_operations_xyz": null, "space_group_symbol_hall": null, "space_group_symbol_hermann_mauguin": null, "space_group_symbol_hermann_mauguin_extended": null, "space_group_it_number": null, "cartesian_site_positions": [[0.0, 0.0, 0.0], [0.0, 2.0559854546134178, 2.0559854546134178], [2.0559854546134178, 0.0, 2.0559854546134178], [2.0559854546134178, 2.0559854546134178, 0.0]], "nsites": 4, "species": [{"name": "Al", "chemical_symbols": ["Al"], "concentration": [1.0], "mass": null, "original_name": null, "attached": null, "nattached": null}], "species_at_sites": ["Al", "Al", "Al", "Al"], "assemblies": null, "structure_features": []}', 'energy': -1074.9192860025823, 'volume': 69.52645729479359}, detour=None, addition=None, replace=None, stored_data=None, stop_children=False, stop_jobflow=False, job_dir=PosixPath('/home/jovyan/example_workflows/quantum_espresso'))},
 '140c1cae-54ed-492f-8589-d9c0490142c6': {1: Response(output={'structure': '{"immutable_id": null, "last_modified": null, "elements": ["Al"], "nelements": 1, "elements_ratios": [1.0], "chemical_formula_descriptive": "Al4", "chemical_formula_reduced": "Al", "chemical_formula_hill": null, "chemical_formula_anonymous": "A", "dimension_types": [1, 1, 1], "nperiodic_dimensions": 3, "lattice_vectors": [[4.17623083411815, 0.0, 0.0], [0.0, 4.17623083411815, 0.0], [0.0, 0.0, 4.17623083411815]], "space_group_symmetry_operations_xyz": null, "space_group_symbol_hall": null, "space_group_symbol_hermann_mauguin": null, "space_group_symbol_hermann_mauguin_extended": null, "space_group_it_number": null, "cartesian_site_positions": [[0.0, 0.0, 0.0], [0.0, 2.0881154170729803, 2.0881154170729803], [2.0881154170729803, 0.0, 2.0881154170729803], [2.0881154170729803, 2.0881154170729803, 0.0]], "nsites": 4, "species": [{"name": "Al", "chemical_symbols": ["Al"], "concentration": [1.0], "mass": null, "original_name": null, "attached": null, "nattached": null}], "species_at_sites": ["Al", "Al", "Al", "Al"], "assemblies": null, "structure_features": []}', 'energy': -1074.8737904693437, 'volume': 72.83724097549829}, detour=None, addition=None, replace=None, stored_data=None, stop_children=False, stop_jobflow=False, job_dir=PosixPath('/home/jovyan/example_workflows/quantum_espresso'))},
 '1eade2dd-772e-4e49-8264-2ff6ee8ff6ff': {1: Response(output=[59.59410625268055, 62.90488993338502, 66.21567361408935, 69.52645729479359, 72.83724097549829], detour=None, addition=None, replace=None, stored_data=None, stop_children=False, stop_jobflow=False, job_dir=PosixPath('/home/jovyan/example_workflows/quantum_espresso'))},
 '0b1cb308-c310-4995-b18b-1441b1ff1a22': {1: Response(output=[-1074.8457446150612, -1074.9161488594598, -1074.9365241668352, -1074.9192860025823, -1074.8737904693437], detour=None, addition=None, replace=None, stored_data=None, stop_children=False, stop_jobflow=False, job_dir=PosixPath('/home/jovyan/example_workflows/quantum_espresso'))},
 '2fd7c54d-8f3d-437c-a59f-8236978defdc': {1: Response(output=None, detour=None, addition=None, replace=None, stored_data=None, stop_children=False, stop_jobflow=False, job_dir=PosixPath('/home/jovyan/example_workflows/quantum_espresso'))}}
../../_images/00ce3c223068484bcf4dba9a7a1500c5d8596f449dda925e4b421eda3e431098.png

Load Workflow with pyiron_base#

from python_workflow_definition.pyiron_base import load_workflow_json
delayed_object_lst = load_workflow_json(file_name=workflow_json_filename)
delayed_object_lst[-1].draw()
../../_images/e875331f444a825bec71a89bcf70c9d41c766b641f56474dab36803dccc994fa.svg
delayed_object_lst[0].input['a'] = 4.05
delayed_object_lst[-1].pull()
The job get_bulk_structure_2ca4aeae204ceaa28593c93054b07908 was saved and received the ID: 1
The job get_dict_20400c1655d51731f9f5ffb50c2b401f was saved and received the ID: 2
The job calculate_qe_b261e97e2e1714bf57ce6e5016ae4632 was saved and received the ID: 3
[jupyter-pythonworkflow-fl--x---d7231032:08955] mca_base_component_repository_open: unable to open mca_btl_openib: librdmacm.so.1: cannot open shared object file: No such file or directory (ignored)
Note: The following floating-point exceptions are signalling: IEEE_INVALID_FLAG
The job generate_structures_fcb3884e78b15be7a9a6069869171c61 was saved and received the ID: 4
The job get_dict_9d50dca89ce2c8f1319206888212f261 was saved and received the ID: 5
The job calculate_qe_495edf27cca1893fd71d860b009fde57 was saved and received the ID: 6
[jupyter-pythonworkflow-fl--x---d7231032:08970] mca_base_component_repository_open: unable to open mca_btl_openib: librdmacm.so.1: cannot open shared object file: No such file or directory (ignored)
Note: The following floating-point exceptions are signalling: IEEE_INVALID_FLAG
The job get_dict_c6f3d017cbf308a2712facb53625f0ca was saved and received the ID: 7
The job calculate_qe_7dc568c59eb166c911415fcb78d508b6 was saved and received the ID: 8
[jupyter-pythonworkflow-fl--x---d7231032:08982] mca_base_component_repository_open: unable to open mca_btl_openib: librdmacm.so.1: cannot open shared object file: No such file or directory (ignored)
Note: The following floating-point exceptions are signalling: IEEE_INVALID_FLAG
The job get_dict_df08484509ac6c4b41f32ea3fb5035cf was saved and received the ID: 9
The job calculate_qe_923ca5c6b53423773a8c74e3340d3471 was saved and received the ID: 10
[jupyter-pythonworkflow-fl--x---d7231032:08993] mca_base_component_repository_open: unable to open mca_btl_openib: librdmacm.so.1: cannot open shared object file: No such file or directory (ignored)
Note: The following floating-point exceptions are signalling: IEEE_INVALID_FLAG
The job get_dict_04da5d650a8c957b7325cc9188f1cd07 was saved and received the ID: 11
The job calculate_qe_49ab6c2d99e5462024081421d2c1b7a7 was saved and received the ID: 12
[jupyter-pythonworkflow-fl--x---d7231032:09004] mca_base_component_repository_open: unable to open mca_btl_openib: librdmacm.so.1: cannot open shared object file: No such file or directory (ignored)
Note: The following floating-point exceptions are signalling: IEEE_INVALID_FLAG
The job get_dict_9d21f3f8e376847d495acc88b24aa2bd was saved and received the ID: 13
The job calculate_qe_4ca4360fd423b8cef4abf77502fef1ca was saved and received the ID: 14
[jupyter-pythonworkflow-fl--x---d7231032:09015] mca_base_component_repository_open: unable to open mca_btl_openib: librdmacm.so.1: cannot open shared object file: No such file or directory (ignored)
Note: The following floating-point exceptions are signalling: IEEE_INVALID_FLAG
The job get_list_b7d643bf967628f7c04f17614baa0c5f was saved and received the ID: 15
The job get_list_1980b54721033684c33ad75357848857 was saved and received the ID: 16
The job plot_energy_volume_curve_9ba5af92db6796aafb006576962dec7c was saved and received the ID: 17
../../_images/00ce3c223068484bcf4dba9a7a1500c5d8596f449dda925e4b421eda3e431098.png