This commit is contained in:
Martin Diehl 2015-12-01 16:37:20 +00:00
parent 3365edc6cb
commit 0ffcb7fdaf
2 changed files with 1 additions and 1 deletions

View File

@ -10,7 +10,6 @@ class Abaqus(Solver):
def __init__(self,version='',solver=''): # example of version string: 6.12-2, solver: either std or exp
self.solver='Abaqus'
if version =='':
print 'hallo'
import subprocess
process = subprocess.Popen(['abaqus', 'information=release'],stdout = subprocess.PIPE,stderr = subprocess.PIPE)
self.version = process.stdout.readlines()[1].split()[1]

View File

@ -2,6 +2,7 @@
# -*- coding: UTF-8 no BOM -*-
import os,re,sys,string
import math # flake8: noqa
import numpy as np
from optparse import OptionParser
import damask