DAMASK_EICMD/python/damask/solver/_marc.py

100 lines
3.2 KiB
Python
Raw Normal View History

2019-12-13 03:28:37 +05:30
import subprocess
import shlex
2020-10-31 17:29:46 +05:30
import re
2020-06-03 17:02:47 +05:30
from pathlib import Path
2019-12-13 03:28:37 +05:30
2022-05-10 12:30:55 +05:30
_marc_version = '2022.1'
_marc_root = '/opt/msc'
_damask_root = str(Path(__file__).parents[3])
2020-03-22 00:48:46 +05:30
class Marc:
"""Wrapper to run DAMASK with MSC Marc."""
2019-12-13 03:28:37 +05:30
def __init__(self,
version: str = _marc_version,
marc_root: str = _marc_root,
damask_root: str = _damask_root):
"""
Create a Marc solver object.
2020-03-22 00:47:50 +05:30
Parameters
----------
version : str, optional
Marc version. Defaults to latest supported Marc version.
marc_root : str, optional
Marc root location. Defaults to /opt/msc.
damask_root : str, optional
DAMASK root location.
Default is autodected based on location of the Python library.
"""
self.marc_version = version
self.marc_root = Path(marc_root)
self.damask_root = Path(damask_root)
2019-12-13 03:28:37 +05:30
2020-06-03 17:02:47 +05:30
@property
def library_path(self):
2019-12-13 03:28:37 +05:30
2021-11-25 22:06:41 +05:30
path_lib = self.marc_root/f'mentat{self.marc_version}/shlib/linux64'
2020-10-31 17:29:46 +05:30
if not path_lib.is_dir():
raise FileNotFoundError(f'library path "{path_lib}" not found')
return path_lib
2019-12-13 03:28:37 +05:30
2020-06-03 17:02:47 +05:30
@property
def tools_path(self):
2019-12-13 03:28:37 +05:30
2021-11-25 22:06:41 +05:30
path_tools = self.marc_root/f'marc{self.marc_version}/tools'
2020-10-31 17:29:46 +05:30
if not path_tools.is_dir():
raise FileNotFoundError(f'tools path "{path_tools}" not found')
return path_tools
2019-12-13 03:28:37 +05:30
def submit_job(self, model: str, job: str,
compile: bool = False,
optimization: str = '',
env = None):
2021-08-25 17:56:25 +05:30
"""
Assemble command line arguments and call Marc executable.
2019-12-13 03:28:37 +05:30
2021-08-25 17:56:25 +05:30
Parameters
----------
model : str
Name of model.
job : str
Name of job.
compile : bool, optional
Compile DAMASK_Marc user subroutine (and save for future use).
2021-08-25 17:56:25 +05:30
Defaults to False.
optimization : str, optional
Optimization level '' (-O0), 'l' (-O1), or 'h' (-O3).
2021-08-25 19:40:39 +05:30
Defaults to ''.
env : dict, optional
Environment for execution.
2021-08-25 17:56:25 +05:30
"""
2022-04-24 22:20:23 +05:30
usersub = (self.damask_root/'src/Marc/DAMASK_Marc').with_suffix('.f90' if compile else '.marc')
2020-06-25 01:04:51 +05:30
if not usersub.is_file():
2020-10-31 17:29:46 +05:30
raise FileNotFoundError(f'subroutine ({"source" if compile else "binary"}) "{usersub}" not found')
2019-12-13 03:28:37 +05:30
# Define options [see Marc Installation and Operation Guide, pp 23]
2020-06-25 01:04:51 +05:30
script = f'run_damask_{optimization}mp'
2020-03-22 00:47:50 +05:30
2021-08-25 00:44:39 +05:30
cmd = f'{self.tools_path/script} -jid {model}_{job} -nprocd 1 -autorst 0 -ci n -cr n -dcoup 0 -b no -v no ' \
+ (f'-u {usersub} -save y' if compile else f'-prog {usersub.with_suffix("")}')
print(cmd)
2020-10-31 17:29:46 +05:30
ret = subprocess.run(shlex.split(cmd),capture_output=True,env=env)
2020-10-31 17:29:46 +05:30
if (m := re.search('Exit number ([0-9]+)',ret.stderr.decode())) is not None:
if 3004 != (v := int(m.group(1))):
print(ret.stderr.decode())
print(ret.stdout.decode())
raise RuntimeError(f'Marc simulation failed ({v})')
else:
print(ret.stderr.decode())
print(ret.stdout.decode())
2020-10-31 17:29:46 +05:30
raise RuntimeError('Marc simulation failed (unknown return value)')