Skip to content

Commit 6be9746

Browse files
committed
fix output
1 parent 1cac320 commit 6be9746

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

nfdi_ing_workflow.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,8 @@ def convert_to_xdmf(gmsh_output_file : str) -> str:
3333
universal_newlines=True,
3434
).split("\n")
3535
return {
36-
"xdmf": os.path.abspath(os.path.join(stage_name, meshio_output_file_name)),
37-
"h5": os.path.join(os.path.abspath(stage_name), "square.h5"),
36+
"xdmf_file": os.path.abspath(os.path.join(stage_name, meshio_output_file_name)),
37+
"h5_file": os.path.join(os.path.abspath(stage_name), "square.h5"),
3838
}
3939

4040

@@ -58,8 +58,8 @@ def poisson(meshio_output_xdmf: str, meshio_output_h5: str) -> dict:
5858
).split("\n")
5959
return {
6060
"numdofs": _poisson_collect_output(numdofs_file=os.path.join(stage_name, poisson_output_numdofs_file_name)),
61-
"poisson_output_pvd_file": os.path.abspath(os.path.join(stage_name, poisson_output_pvd_file_name)),
62-
"poisson_output_vtu_file": os.path.abspath(os.path.join(stage_name, "poisson000000.vtu")),
61+
"pvd_file": os.path.abspath(os.path.join(stage_name, poisson_output_pvd_file_name)),
62+
"vtu_file": os.path.abspath(os.path.join(stage_name, "poisson000000.vtu")),
6363
}
6464

6565

0 commit comments

Comments
 (0)