2011-11-19 01:29:20 +05:30
|
|
|
import os,string,re
|
|
|
|
|
2011-11-09 17:39:54 +05:30
|
|
|
class DAMASK_TOOLS():
|
2011-11-19 01:29:20 +05:30
|
|
|
|
|
|
|
def check_env(self):
|
|
|
|
import os
|
|
|
|
if os.getenv('DAMASK_ROOT') is None:
|
|
|
|
print('No DAMASK_ROOT environment variable, did you run DAMASK/installation/setup_shellrc?')
|
|
|
|
sys.exit(1)
|
|
|
|
else:
|
|
|
|
return True
|
2011-11-17 19:35:39 +05:30
|
|
|
|
|
|
|
|
|
|
|
class MATERIAL_CONFIG():
|
2011-11-19 01:29:20 +05:30
|
|
|
__slots__ = ['data']
|
2011-11-17 19:35:39 +05:30
|
|
|
|
2011-11-19 01:29:20 +05:30
|
|
|
def __init__(self):
|
2011-11-21 22:10:23 +05:30
|
|
|
self.parts = [
|
|
|
|
'homogenization',
|
|
|
|
'microstructure',
|
|
|
|
'crystallite',
|
|
|
|
'phase',
|
|
|
|
'texture',
|
|
|
|
]
|
2011-11-19 01:29:20 +05:30
|
|
|
self.data = {\
|
|
|
|
'homogenization': {'__order__': []},
|
|
|
|
'microstructure': {'__order__': []},
|
|
|
|
'crystallite': {'__order__': []},
|
|
|
|
'phase': {'__order__': []},
|
|
|
|
'texture': {'__order__': []},
|
|
|
|
}
|
|
|
|
|
|
|
|
def __repr__(self):
|
|
|
|
me = []
|
2011-11-21 22:10:23 +05:30
|
|
|
for part in self.parts:
|
2011-11-19 01:29:20 +05:30
|
|
|
me += ['','#-----------------------------#','<%s>'%part,'#-----------------------------#',]
|
|
|
|
for section in self.data[part]['__order__']:
|
|
|
|
me += ['','[%s]\t\t#-----------------------'%section,'',]
|
|
|
|
for key in self.data[part][section]['__order__']:
|
|
|
|
if key.startswith('(') and key.endswith(')'): # multiple (key)
|
|
|
|
me += ['%s\t%s'%(key,' '.join(values)) for values in self.data[part][section][key]]
|
|
|
|
else: # plain key
|
|
|
|
me += ['%s\t%s'%(key,' '.join(self.data[part][section][key]))]
|
|
|
|
|
|
|
|
return '\n'.join(me)
|
2011-11-17 19:35:39 +05:30
|
|
|
|
|
|
|
|
2011-11-19 01:29:20 +05:30
|
|
|
def parse_data(self, part=None, sections=[], content=None):
|
|
|
|
|
|
|
|
re_part = re.compile(r'^<(.+)>$') # pattern for part
|
|
|
|
re_sec = re.compile(r'^\[(.+)\]$') # pattern for section
|
|
|
|
|
|
|
|
name_section = ''
|
|
|
|
idx_section = 0
|
|
|
|
active = False
|
|
|
|
|
|
|
|
for line in content:
|
|
|
|
line = line.split('#')[0].strip() # kill comments and extra whitespace
|
|
|
|
if line: # content survives...
|
|
|
|
match_part = re_part.match(line)
|
|
|
|
if match_part: # found <part> separator
|
|
|
|
active = (match_part.group(1) == part) # only active in <part>
|
|
|
|
continue
|
|
|
|
if active:
|
|
|
|
match_sec = re_sec.match(line)
|
|
|
|
if match_sec: # found [section]
|
|
|
|
name_section = match_sec.group(1) # remember name ...
|
|
|
|
if '__order__' not in self.data[part]: self.data[part]['__order__'] = []
|
|
|
|
self.data[part]['__order__'].append(name_section) # ... and position
|
|
|
|
self.data[part][name_section] = {'__order__':[]}
|
|
|
|
continue
|
|
|
|
|
|
|
|
if sections == [] or name_section in sections: # respect subset
|
|
|
|
items = line.split()
|
|
|
|
if items[0] not in self.data[part][name_section]: # first encounter of key?
|
|
|
|
self.data[part][name_section][items[0]] = [] # create item
|
|
|
|
self.data[part][name_section]['__order__'].append(items[0])
|
|
|
|
if items[0].startswith('(') and items[0].endswith(')'): # multiple "(key)"
|
|
|
|
self.data[part][name_section][items[0]].append(items[1:])
|
|
|
|
else: # plain key
|
|
|
|
self.data[part][name_section][items[0]] = items[1:]
|
|
|
|
|
2011-11-21 22:10:23 +05:30
|
|
|
def read(self,file=None):
|
|
|
|
f=open(file,'r')
|
|
|
|
c=f.readlines()
|
|
|
|
f.close()
|
|
|
|
for p in self.parts:
|
|
|
|
self.parse_data(part=p, content=c)
|
|
|
|
|
|
|
|
def write(self,file='material.config', overwrite=False):
|
|
|
|
if overwrite is False:
|
|
|
|
if os.path.exists(file):
|
|
|
|
i=1
|
|
|
|
while os.path.exists(file+'_%i'%i):i+=1
|
|
|
|
file=file+'_%i'%i
|
|
|
|
print('Writing material data to file %s'%file)
|
|
|
|
f=open(file,'w')
|
|
|
|
f.write(str(self))
|
|
|
|
f.close()
|
|
|
|
|
|
|
|
def add_homogenization(self, label='', type='', Ngrains=None):
|
|
|
|
old_len=len(self.data['homogenization'])
|
|
|
|
if type is 'isostrain':
|
|
|
|
h={'type':[type]}
|
|
|
|
h['Ngrains']=[Ngrains]
|
|
|
|
h['__order__']=['type','Ngrains']
|
|
|
|
#return h
|
|
|
|
self.data['homogenization'][label]=h
|
|
|
|
if len(self.data['homogenization'])>old_len: # added new label
|
|
|
|
self.data['homogenization']['__order__'].append(label)
|
2011-11-19 01:29:20 +05:30
|
|
|
|
2011-11-21 22:10:23 +05:30
|
|
|
def add_crystallite(self, label='', output=[]):
|
|
|
|
old_len=len(self.data['crystallite'])
|
|
|
|
self.data['crystallite'][label]={'(output)':[[o] for o in output],'__order__':'(output)'}
|
|
|
|
if len(self.data['crystallite'])>old_len: # added new label
|
|
|
|
self.data['crystallite']['__order__'].append(label)
|
|
|
|
|
|
|
|
def add_texture(self, label='',type='', eulers=[], scatter=0., fraction=1.):
|
|
|
|
''' Experimental! Needs expansion to multi-component textures...'''
|
|
|
|
old_len=len(self.data['texture'])
|
|
|
|
if type is '(gauss)':
|
|
|
|
gauss={type:[['phi1',eulers[0],'Phi',eulers[1], 'phi2',eulers[2],'scatter',scatter, 'fraction',fraction]],'__order__':label}
|
|
|
|
self.data['texture'][label]=gauss
|
|
|
|
if len(self.data['texture'])>old_len: # added new label
|
|
|
|
self.data['texture']['__order__'].append(label)
|
|
|
|
|
|
|
|
def add_phase(self, file='', label='', phase=None):
|
|
|
|
''' USAGE:
|
|
|
|
-read phase "label" from file
|
|
|
|
OR
|
|
|
|
-phase is dict with one key
|
|
|
|
'''
|
|
|
|
import copy
|
|
|
|
print(file,label,phase)
|
|
|
|
old_len=len(self.data['phase'])
|
|
|
|
if file and label and (phase is None):
|
|
|
|
data_so_far = copy.deepcopy(self.data)
|
|
|
|
self.__init__()
|
|
|
|
self.read(file=file)
|
|
|
|
phase={label:self.data['phase'][label]}
|
|
|
|
label=None
|
|
|
|
self.data=copy.deepcopy(data_so_far)
|
|
|
|
print phase
|
|
|
|
if len(phase)==1 and label is None:
|
|
|
|
print('Adding phase %s'%phase.keys()[0])
|
|
|
|
label=phase.keys()[0]
|
|
|
|
self.data['phase'][label]=phase[label]
|
|
|
|
if len(self.data['phase'])>old_len: # added new label
|
|
|
|
self.data['phase']['__order__'].append(label)
|
|
|
|
else:
|
|
|
|
raise Exception('Wrong arguments')
|
|
|
|
|
|
|
|
def add_microstructure(self, crystallite=None,
|
|
|
|
label=None,
|
|
|
|
phases=None,
|
|
|
|
textures=None,
|
|
|
|
fractions=None):
|
|
|
|
''' Experimental! Needs expansion to multi-constituent microstructures...'''
|
|
|
|
old_len=len(self.data['microstructure'])
|
|
|
|
c=self.data['crystallite']['__order__'].index(crystallite)+1
|
|
|
|
constituent=phases[:]
|
|
|
|
for i in range(len(phases)):
|
|
|
|
p=self.data['phase']['__order__'].index(phases[i])+1
|
|
|
|
t=self.data['texture']['__order__'].index(textures[i])+1
|
|
|
|
f=fractions[i]
|
|
|
|
constituent[i]=['phase','%i'%p,'texture','%i'%t,'fraction','%f'%f]
|
|
|
|
self.data['microstructure'][label]={'crystallite':['%i'%c],
|
|
|
|
'(constituent)':constituent,
|
|
|
|
'__order__':['crystallite','(constituent)']}
|
|
|
|
if len(self.data['microstructure'])>old_len: # added new label
|
|
|
|
self.data['microstructure']['__order__'].append(label)
|
2011-11-19 01:29:20 +05:30
|
|
|
|
2011-11-21 22:10:23 +05:30
|
|
|
class HOMOGENIZATION():
|
|
|
|
def __init__(self):
|
|
|
|
pass
|
|
|
|
|
2011-11-17 19:35:39 +05:30
|
|
|
|
2011-11-21 22:10:23 +05:30
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2011-11-19 01:29:20 +05:30
|
|
|
|