-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmarchinghex_hexmeshing.post.py
executable file
·34 lines (28 loc) · 1.33 KB
/
marchinghex_hexmeshing.post.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
#!/usr/bin/env python
# post-processing for marchinghex_hexmeshing.yml
from shutil import move
from pathlib import Path
from os import curdir, unlink
# own module
from dds import *
def post_processing(input_subfolder: DataFolder, output_subfolder: Optional[Path], arguments: dict, data_from_pre_processing: dict, silent_output: bool):
assert(input_subfolder.type == 'marchinghex_grid')
assert(output_subfolder is not None)
# It may be interesting to read the last printed line to have the average Hausdorff distance between the domain and the hex-mesh
# The executable also writes debug files
for debug_filename in [
'dist_hex_mesh.mesh',
'dist_hex_sampling.geogram',
'dist_tet_mesh.mesh',
'dist_tet_sampling.geogram',
'mh_result.mesh'
] + [x for x in Path(curdir).iterdir() if x.is_file() and x.stem.startswith('iter_')]: # and all 'iter_*' files
if Path(debug_filename).exists():
if arguments['keep_debug_files']:
if not silent_output:
print(f'Renaming {debug_filename}...')
move(debug_filename, output_subfolder / f'marchinghex_hexmeshing.{debug_filename}')
else:
if not silent_output:
print(f'Removing {debug_filename}...')
unlink(debug_filename)