37 lines
1.3 KiB
Python
37 lines
1.3 KiB
Python
import subprocess
|
|
|
|
from .solver import Solver
|
|
import damask
|
|
|
|
|
|
class Abaqus(Solver):
|
|
"""Wrapper to run DAMASK with Abaqus."""
|
|
|
|
def __init__(self,version=damask.Environment().options['ABAQUS_VERSION']):
|
|
"""
|
|
Create a Abaqus solver object.
|
|
|
|
Parameters
|
|
----------
|
|
version : integer
|
|
Abaqus version
|
|
|
|
"""
|
|
self.solver = 'Abaqus'
|
|
try:
|
|
self.version = int(version)
|
|
except TypeError:
|
|
self.version = -1
|
|
|
|
def return_run_command(self,model):
|
|
try:
|
|
cmd = 'abq{}'.format(self.version)
|
|
subprocess.check_output([cmd,'information=release'])
|
|
except OSError: # link to abqXXX not existing
|
|
cmd = 'abaqus'
|
|
process = subprocess.Popen([cmd,'information=release'],stdout = subprocess.PIPE,stderr = subprocess.PIPE)
|
|
detectedVersion = int(process.stdout.readlines()[1].split()[1].decode('utf-8'))
|
|
if self.version not in [detectedVersion,-1]:
|
|
raise Exception('found Abaqus version {}, but requested {}'.format(detectedVersion,self.version))
|
|
return '{} -job {} -user {}/src/DAMASK_abaqus interactive'.format(cmd,model,damask.Environment().rootDir())
|