2016-07-18 23:05:35 +05:30
|
|
|
#!/usr/bin/env python2.7
|
2014-08-05 00:11:44 +05:30
|
|
|
# -*- coding: UTF-8 no BOM -*-
|
|
|
|
|
2016-03-02 02:42:04 +05:30
|
|
|
import sys,os,re
|
2014-08-05 00:11:44 +05:30
|
|
|
from optparse import OptionParser
|
2016-10-25 00:46:29 +05:30
|
|
|
import damask
|
2014-08-05 00:11:44 +05:30
|
|
|
|
2016-01-27 22:36:00 +05:30
|
|
|
scriptName = os.path.splitext(os.path.basename(__file__))[0]
|
|
|
|
scriptID = ' '.join([scriptName,damask.version])
|
2014-08-05 00:11:44 +05:30
|
|
|
|
|
|
|
# -----------------------------
|
|
|
|
def ParseOutputFormat(filename,what,me):
|
|
|
|
format = {'outputs':{},'specials':{'brothers':[]}}
|
|
|
|
|
|
|
|
outputmetafile = filename+'.output'+what
|
|
|
|
try:
|
2016-10-25 00:46:29 +05:30
|
|
|
myFile = open(outputmetafile)
|
2014-08-05 00:11:44 +05:30
|
|
|
except:
|
|
|
|
print('Could not open file %s'%outputmetafile)
|
|
|
|
raise
|
|
|
|
else:
|
2016-10-25 00:46:29 +05:30
|
|
|
content = myFile.readlines()
|
|
|
|
myFile.close()
|
2014-08-05 00:11:44 +05:30
|
|
|
|
|
|
|
tag = ''
|
|
|
|
tagID = 0
|
|
|
|
for line in content:
|
|
|
|
if re.match("\s*$",line) or re.match("#",line): # skip blank lines and comments
|
|
|
|
continue
|
|
|
|
m = re.match("\[(.+)\]",line) # look for block indicator
|
|
|
|
if m: # next section
|
|
|
|
tag = m.group(1)
|
|
|
|
tagID += 1
|
|
|
|
format['specials']['brothers'].append(tag)
|
|
|
|
if tag == me or (me.isdigit() and tagID == int(me)):
|
|
|
|
format['specials']['_id'] = tagID
|
|
|
|
format['outputs'] = []
|
|
|
|
tag = me
|
|
|
|
else: # data from section
|
|
|
|
if tag == me:
|
|
|
|
(output,length) = line.split()
|
|
|
|
output.lower()
|
|
|
|
if length.isdigit():
|
|
|
|
length = int(length)
|
|
|
|
if re.match("\((.+)\)",output): # special data, (e.g. (Ngrains)
|
|
|
|
format['specials'][output] = length
|
|
|
|
elif length > 0:
|
|
|
|
format['outputs'].append([output,length])
|
|
|
|
return format
|
|
|
|
|
|
|
|
|
2016-05-12 12:24:34 +05:30
|
|
|
parser = OptionParser(option_class=damask.extendableOption, usage='%prog [option(s)] Abaqus.Inputfile(s)', description = """
|
2014-08-05 00:11:44 +05:30
|
|
|
Transfer the output variables requested in the material.config to
|
2016-10-31 20:10:58 +05:30
|
|
|
properly labelled user-defined variables within the Abaqus input file (*.inp).
|
2014-08-05 00:11:44 +05:30
|
|
|
|
|
|
|
Requires the files
|
|
|
|
<modelname_jobname>.output<Homogenization/Crystallite/Constitutive>
|
|
|
|
that are written during the first run of the model.
|
|
|
|
|
|
|
|
Specify which user block format you want to apply by stating the homogenization, crystallite, and phase identifiers.
|
|
|
|
Or have an existing set of user variables copied over from another *.inp file.
|
2014-08-07 21:46:02 +05:30
|
|
|
|
2016-10-25 00:46:29 +05:30
|
|
|
""", version = scriptID)
|
2014-08-07 21:46:02 +05:30
|
|
|
|
2015-11-16 16:22:56 +05:30
|
|
|
parser.add_option('-m', dest='number', type='int', metavar = 'int',
|
|
|
|
help='maximum requested User Defined Variable [%default]')
|
|
|
|
parser.add_option('--homogenization', dest='homog', metavar = 'string',
|
|
|
|
help='homogenization name or index [%default]')
|
|
|
|
parser.add_option('--crystallite', dest='cryst', metavar = 'string',
|
|
|
|
help='crystallite identifier name or index [%default]')
|
|
|
|
parser.add_option('--phase', dest='phase', metavar = 'string',
|
|
|
|
help='phase identifier name or index [%default]')
|
|
|
|
parser.add_option('--use', dest='useFile', metavar = 'string',
|
|
|
|
help='optionally parse output descriptors from '+
|
|
|
|
'outputXXX files of given name')
|
|
|
|
parser.add_option('--option', dest='damaskOption', metavar = 'string',
|
|
|
|
help='Add DAMASK option to input file, e.g. "periodic x z"')
|
|
|
|
|
|
|
|
parser.set_defaults(number = 0,
|
|
|
|
homog = '1',
|
|
|
|
cryst = '1',
|
|
|
|
phase = '1')
|
2014-08-05 00:11:44 +05:30
|
|
|
|
|
|
|
(options, files) = parser.parse_args()
|
|
|
|
|
|
|
|
if not files:
|
2016-10-31 20:10:58 +05:30
|
|
|
parser.error('no file(s) specified.')
|
2014-08-05 00:11:44 +05:30
|
|
|
|
|
|
|
me = { 'Homogenization': options.homog,
|
|
|
|
'Crystallite': options.cryst,
|
|
|
|
'Constitutive': options.phase,
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2016-10-25 00:46:29 +05:30
|
|
|
for myFile in files:
|
2016-10-31 20:10:58 +05:30
|
|
|
damask.util.report(scriptName,myFile)
|
2016-11-01 02:41:16 +05:30
|
|
|
if options.useFile is not None:
|
2014-08-05 00:11:44 +05:30
|
|
|
formatFile = os.path.splitext(options.useFile)[0]
|
|
|
|
else:
|
2016-10-25 00:46:29 +05:30
|
|
|
formatFile = os.path.splitext(myFile)[0]
|
|
|
|
myFile = os.path.splitext(myFile)[0]+'.inp'
|
|
|
|
if not os.path.lexists(myFile):
|
|
|
|
print('{} not found'.format(myFile))
|
2014-08-05 00:11:44 +05:30
|
|
|
continue
|
|
|
|
|
2016-10-31 20:10:58 +05:30
|
|
|
print('Scanning format files of: {}'.format(formatFile))
|
2014-08-05 00:11:44 +05:30
|
|
|
|
|
|
|
if options.number < 1:
|
|
|
|
outputFormat = {}
|
|
|
|
|
|
|
|
for what in me:
|
|
|
|
outputFormat[what] = ParseOutputFormat(formatFile,what,me[what])
|
2016-03-02 02:42:04 +05:30
|
|
|
if '_id' not in outputFormat[what]['specials']:
|
2016-10-25 00:46:29 +05:30
|
|
|
print("'{}' not found in <{}>".format(me[what],what))
|
|
|
|
print('\n'.join(map(lambda x:' '+x,outputFormat[what]['specials']['brothers'])))
|
2014-08-05 00:11:44 +05:30
|
|
|
sys.exit(1)
|
|
|
|
|
|
|
|
UserVars = ['HomogenizationCount']
|
|
|
|
for var in outputFormat['Homogenization']['outputs']:
|
|
|
|
if var[1] > 1:
|
|
|
|
UserVars += ['%i_%s'%(i+1,var[0]) for i in range(var[1])]
|
|
|
|
else:
|
|
|
|
UserVars += ['%s'%(var[0]) for i in range(var[1])]
|
|
|
|
|
|
|
|
UserVars += ['GrainCount']
|
|
|
|
|
|
|
|
for grain in range(outputFormat['Homogenization']['specials']['(ngrains)']):
|
|
|
|
UserVars += ['%i_CrystalliteCount'%(grain+1)]
|
|
|
|
for var in outputFormat['Crystallite']['outputs']:
|
|
|
|
if var[1] > 1:
|
|
|
|
UserVars += ['%i_%i_%s'%(grain+1,i+1,var[0]) for i in range(var[1])]
|
|
|
|
else:
|
|
|
|
UserVars += ['%i_%s'%(grain+1,var[0]) for i in range(var[1])]
|
|
|
|
|
|
|
|
UserVars += ['%i_ConstitutiveCount'%(grain+1)]
|
|
|
|
for var in outputFormat['Constitutive']['outputs']:
|
|
|
|
if var[1] > 1:
|
|
|
|
UserVars += ['%i_%i_%s'%(grain+1,i+1,var[0]) for i in range(var[1])]
|
|
|
|
else:
|
|
|
|
UserVars += ['%i_%s'%(grain+1,var[0]) for i in range(var[1])]
|
|
|
|
|
|
|
|
# Now change *.inp file(s)
|
2016-10-31 20:10:58 +05:30
|
|
|
print('Adding labels to: {}'.format(myFile))
|
2016-10-25 00:46:29 +05:30
|
|
|
inFile = open(myFile)
|
2014-08-05 00:11:44 +05:30
|
|
|
input = inFile.readlines()
|
|
|
|
inFile.close()
|
2016-10-25 00:46:29 +05:30
|
|
|
output = open(myFile,'w')
|
2014-08-05 00:11:44 +05:30
|
|
|
thisSection = ''
|
2016-11-01 02:41:16 +05:30
|
|
|
if options.damaskOption is not None:
|
2014-08-05 00:11:44 +05:30
|
|
|
output.write('$damask {0}\n'.format(options.damaskOption))
|
|
|
|
for line in input:
|
|
|
|
#Abaqus keyword line begins with: *keyword, argument1, ...
|
|
|
|
m = re.match('([*]\w+)\s',line)
|
|
|
|
if m:
|
|
|
|
lastSection = thisSection
|
|
|
|
thisSection = m.group(1)
|
2016-10-31 20:10:58 +05:30
|
|
|
if (lastSection.upper() == '*DEPVAR' and thisSection.upper() == '*USER'): # Abaqus keyword can be upper or lower case
|
2014-08-05 00:11:44 +05:30
|
|
|
if options.number > 0:
|
2016-10-31 20:10:58 +05:30
|
|
|
output.write('{}\n'.format(options.number)) # Abaqus needs total number of SDVs in the line after *Depvar keyword
|
2014-08-05 00:11:44 +05:30
|
|
|
else:
|
2016-10-31 20:10:58 +05:30
|
|
|
output.write('{}\n'.format(len(UserVars)))
|
2016-03-02 02:42:04 +05:30
|
|
|
|
2014-08-05 00:11:44 +05:30
|
|
|
for i in range(len(UserVars)):
|
2016-03-02 02:42:04 +05:30
|
|
|
output.write('%i,"%i%s","%i%s"\n'%(i+1,0,UserVars[i],0,UserVars[i])) #index,output variable key,output variable description
|
2014-08-05 00:11:44 +05:30
|
|
|
if (thisSection.upper() != '*DEPVAR' or not re.match('\s*\d',line)):
|
|
|
|
output.write(line)
|
|
|
|
output.close()
|