Skip to content
Snippets Groups Projects
Commit c2133ef8 authored by Timo Koch's avatar Timo Koch
Browse files

Merge branch 'fix/porenetwork-dgf-script' into 'master'

[pnm][util] Fix missing new line in openpnm2dgf's dgf writer

See merge request !3220
parents 9fec51a9 43326033
No related branches found
No related tags found
1 merge request!3220[pnm][util] Fix missing new line in openpnm2dgf's dgf writer
Pipeline #19640 passed
......@@ -323,6 +323,7 @@ def writeDGF(filename, net, geo, policy):
outputfile.write(
" ".join([str(v if idx > 1 else int(v)) for idx, v in enumerate(elementData[i])])
)
outputfile.write("\n")
outputfile.write("\n\n#\n")
outputfile.write("BOUNDARYDOMAIN\ndefault 1\n#")
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment