2014-07-02 16:12:51 +05:30
|
|
|
#!/usr/bin/python
|
|
|
|
# -*- coding: UTF-8 no BOM -*-
|
|
|
|
|
2014-07-23 03:29:58 +05:30
|
|
|
import threading,time,os,subprocess,shlex,string
|
2014-07-02 16:12:51 +05:30
|
|
|
import numpy as np
|
|
|
|
from scipy.optimize import curve_fit
|
|
|
|
from scipy.linalg import svd
|
2014-07-09 15:01:26 +05:30
|
|
|
from optparse import OptionParser
|
2014-07-23 03:29:58 +05:30
|
|
|
import damask
|
2014-07-09 15:01:26 +05:30
|
|
|
|
2014-07-23 03:29:58 +05:30
|
|
|
scriptID = '$Id$'
|
|
|
|
scriptName = scriptID.split()[1]
|
2014-07-07 19:47:44 +05:30
|
|
|
|
|
|
|
def execute(cmd,dir='./'):
|
|
|
|
|
|
|
|
initialPath=os.getcwd()
|
2014-07-23 03:29:58 +05:30
|
|
|
os.chdir(dir)
|
2014-07-07 19:47:44 +05:30
|
|
|
out = ''
|
|
|
|
line = True
|
|
|
|
process = subprocess.Popen(shlex.split(cmd),stdout=subprocess.PIPE,stderr = subprocess.STDOUT)
|
|
|
|
while line:
|
|
|
|
line = process.stdout.readline()
|
|
|
|
out += line
|
|
|
|
os.chdir(initialPath)
|
2014-07-02 16:12:51 +05:30
|
|
|
|
|
|
|
def asFullTensor(voigt):
|
|
|
|
return np.array([[voigt[0],voigt[3],voigt[5]],\
|
2014-07-07 19:47:44 +05:30
|
|
|
[voigt[3],voigt[1],voigt[4]],\
|
|
|
|
[voigt[5],voigt[4],voigt[2]]])
|
2014-07-02 16:12:51 +05:30
|
|
|
|
|
|
|
#---------------------------------------------------------------------------------------------------
|
|
|
|
class Loadcase():
|
|
|
|
#---------------------------------------------------------------------------------------------------
|
|
|
|
'''
|
|
|
|
Class for generating load cases for the spectral solver
|
|
|
|
'''
|
|
|
|
|
|
|
|
# ------------------------------------------------------------------
|
2014-07-09 15:01:26 +05:30
|
|
|
def __init__(self,finalStrain,incs,time):
|
2014-07-02 16:12:51 +05:30
|
|
|
print('using the random load case generator')
|
2014-07-09 15:01:26 +05:30
|
|
|
self.finalStrain = finalStrain
|
|
|
|
self.incs = incs
|
|
|
|
self.time = time
|
2014-07-02 16:12:51 +05:30
|
|
|
|
2014-07-09 15:01:26 +05:30
|
|
|
def getLoadcase(self,N=0):
|
2014-07-02 16:12:51 +05:30
|
|
|
defgrad=['*']*9
|
|
|
|
stress =[0]*9
|
2014-07-09 15:01:26 +05:30
|
|
|
values=(np.random.random_sample(9)-.5)*self.finalStrain*2
|
2014-07-02 16:12:51 +05:30
|
|
|
|
|
|
|
main=np.array([0,4,8])
|
|
|
|
np.random.shuffle(main)
|
2014-07-07 19:47:44 +05:30
|
|
|
for i in main[:2]: # fill 2 out of 3 main entries
|
2014-07-02 16:12:51 +05:30
|
|
|
defgrad[i]=1.+values[i]
|
|
|
|
stress[i]='*'
|
2014-07-07 19:47:44 +05:30
|
|
|
for off in [[1,3,0],[2,6,0],[5,7,0]]: # fill 3 off-diagonal pairs of defgrad (1 or 2 entries)
|
2014-07-02 16:12:51 +05:30
|
|
|
off=np.array(off)
|
|
|
|
np.random.shuffle(off)
|
2014-07-07 19:47:44 +05:30
|
|
|
for i in off[0:2]:
|
|
|
|
if i != 0:
|
|
|
|
defgrad[i]=values[i]
|
|
|
|
stress[i]='*'
|
|
|
|
|
2014-07-02 16:12:51 +05:30
|
|
|
return 'f '+' '.join(str(c) for c in defgrad)+\
|
|
|
|
' p '+' '.join(str(c) for c in stress)+\
|
2014-07-09 15:01:26 +05:30
|
|
|
' incs %s'%self.incs+\
|
|
|
|
' time %s'%self.time
|
2014-07-02 16:12:51 +05:30
|
|
|
|
|
|
|
#---------------------------------------------------------------------------------------------------
|
|
|
|
class Criterion(object):
|
|
|
|
#---------------------------------------------------------------------------------------------------
|
|
|
|
'''
|
|
|
|
Fitting to certain criterion
|
|
|
|
'''
|
2014-07-23 03:29:58 +05:30
|
|
|
def __init__(self,name='worst'):
|
|
|
|
self.name = name
|
|
|
|
self.results = {
|
|
|
|
'vonmises':{'fit':np.ones(1,'d'),'err':np.inf},
|
|
|
|
'hill48' :{'fit':np.ones(6,'d'),'err':np.inf},
|
|
|
|
'worst' :{'err':np.inf},
|
|
|
|
'best' :{'err':np.inf}
|
|
|
|
}
|
|
|
|
if self.name.lower not in self.results.keys():
|
|
|
|
raise Exception as detail:
|
|
|
|
print detail
|
|
|
|
else:
|
|
|
|
print('fitting to the %s criterion'%name)
|
|
|
|
|
|
|
|
def Hill48(x, F,G,H,L,M,N):
|
|
|
|
a = F*(x[1]-x[2])**2 + G*(x[2]-x[0])**2 + H*(x[0]-x[1])** + \
|
|
|
|
2*L*x[4]**2 + 2*M*x[5]**2 + 2*N*x[3]**2 -1.
|
|
|
|
return a.ravel()
|
|
|
|
|
|
|
|
def vonMises(x, S_y):
|
|
|
|
sv=np.zeros(0,'d')
|
|
|
|
for i in xrange(np.shape(x)[1]):
|
|
|
|
U, l, Vh = svd(np.array(x[:,i]).reshape(3,3))
|
|
|
|
sv = np.append(sv,l)
|
|
|
|
sv = sv.reshape(np.shape(x)[1],3)
|
|
|
|
ooo = (sv[:,2]-sv[:,1])**2+(sv[:,1]-sv[:,0])**2+(sv[:,0]-sv[:,2])**2-2*S_y**2
|
|
|
|
return ooo.ravel()
|
2014-07-02 16:12:51 +05:30
|
|
|
|
|
|
|
def fit(self,stress):
|
2014-07-09 15:01:26 +05:30
|
|
|
try:
|
|
|
|
popt1[0], pcov = curve_fit(vonMises, stress, np.zeros(np.shape(stress)[1]),p0=popt1[0])
|
|
|
|
print 'Mises', popt1[0], pcov
|
|
|
|
except Exception as detail:
|
|
|
|
print detail
|
|
|
|
pass
|
|
|
|
try:
|
|
|
|
popt1[1], pcov = curve_fit(Hill48, stress, np.zeros(np.shape(stress)[1]),p0=popt1[1])
|
|
|
|
print 'Hill48', popt1[1], pcov
|
2014-07-07 19:47:44 +05:30
|
|
|
except Exception as detail:
|
|
|
|
print detail
|
|
|
|
pass
|
2014-07-02 16:12:51 +05:30
|
|
|
|
|
|
|
|
|
|
|
#---------------------------------------------------------------------------------------------------
|
|
|
|
|
|
|
|
#---------------------------------------------------------------------------------------------------
|
|
|
|
'''
|
|
|
|
Runner class
|
|
|
|
'''
|
|
|
|
class myThread (threading.Thread):
|
|
|
|
def __init__(self, threadID):
|
|
|
|
threading.Thread.__init__(self)
|
|
|
|
self.threadID = threadID
|
|
|
|
def run(self):
|
|
|
|
s.acquire()
|
|
|
|
conv=converged()
|
|
|
|
s.release()
|
|
|
|
while not conv:
|
|
|
|
doSim(4.,self.name)
|
|
|
|
s.acquire()
|
|
|
|
conv=converged()
|
|
|
|
s.release()
|
|
|
|
|
|
|
|
def doSim(delay,thread):
|
2014-07-21 23:19:45 +05:30
|
|
|
|
|
|
|
global geomName
|
2014-07-02 16:12:51 +05:30
|
|
|
s.acquire()
|
2014-07-04 19:10:15 +05:30
|
|
|
me=getLoadcase()
|
2014-07-08 21:39:02 +05:30
|
|
|
if not os.path.isfile('%s.load'%me):
|
|
|
|
print('generating loadcase for sim %s from %s'%(me,thread))
|
|
|
|
f=open('%s.load'%me,'w')
|
2014-07-21 23:19:45 +05:30
|
|
|
f.write(myLoad.getLoadcase(me))
|
2014-07-08 21:39:02 +05:30
|
|
|
f.close()
|
|
|
|
s.release()
|
|
|
|
else: s.release()
|
|
|
|
|
|
|
|
s.acquire()
|
2014-07-09 12:47:58 +05:30
|
|
|
if not os.path.isfile('%s_%i.spectralOut'%(geomName,me)):
|
|
|
|
print('starting simulation %s from %s'%(me,thread))
|
2014-07-08 21:39:02 +05:30
|
|
|
s.release()
|
2014-07-09 12:47:58 +05:30
|
|
|
execute('DAMASK_spectral -g %s -l %i'%(geomName,me))
|
2014-07-08 21:39:02 +05:30
|
|
|
else: s.release()
|
|
|
|
|
|
|
|
s.acquire()
|
2014-07-09 12:47:58 +05:30
|
|
|
if not os.path.isfile('./postProc/%s_%i.txt'%(geomName,me)):
|
2014-07-08 21:39:02 +05:30
|
|
|
print('starting post processing for sim %i from %s'%(me,thread))
|
|
|
|
s.release()
|
2014-07-09 12:47:58 +05:30
|
|
|
execute('postResults --cr f,p %s_%i.spectralOut'%(geomName,me))
|
|
|
|
execute('addCauchy ./postProc/%s_%i.txt'%(geomName,me))
|
|
|
|
execute('addStrainTensors -l -v ./postProc/%s_%i.txt'%(geomName,me))
|
|
|
|
execute('addMises -s Cauchy -e ln(V) ./postProc/%s_%i.txt'%(geomName,me))
|
2014-07-08 21:39:02 +05:30
|
|
|
else: s.release()
|
2014-07-07 19:47:44 +05:30
|
|
|
|
|
|
|
s.acquire()
|
2014-07-08 21:39:02 +05:30
|
|
|
print('reading values for sim %i from %s'%(me,thread))
|
2014-07-07 19:47:44 +05:30
|
|
|
s.release()
|
|
|
|
|
2014-07-09 12:47:58 +05:30
|
|
|
refFile = open('./postProc/%s_%i.txt'%(geomName,me))
|
2014-07-07 19:47:44 +05:30
|
|
|
table = damask.ASCIItable(refFile)
|
|
|
|
table.head_read()
|
|
|
|
for l in ['Mises(ln(V))','1_Cauchy']:
|
|
|
|
if l not in table.labels: print '%s not found'%l
|
|
|
|
while table.data_read():
|
|
|
|
if float(table.data[table.labels.index('Mises(ln(V))')]) > 0.002:
|
2014-07-09 15:01:26 +05:30
|
|
|
yieldStress = np.array(table.data[table.labels.index('1_Cauchy'):table.labels.index('9_Cauchy')+1],'d')/10.e8
|
2014-07-08 21:39:02 +05:30
|
|
|
|
2014-07-07 19:47:44 +05:30
|
|
|
s.acquire()
|
2014-07-08 21:39:02 +05:30
|
|
|
print('starting fitting for sim %i from %s'%(me,thread))
|
2014-07-02 16:12:51 +05:30
|
|
|
global stressAll
|
2014-07-08 21:39:02 +05:30
|
|
|
stressAll=np.append(yieldStress,stressAll)
|
|
|
|
myFit.fit(stressAll.reshape(len(stressAll)//9,9).transpose())
|
2014-07-02 16:12:51 +05:30
|
|
|
s.release()
|
|
|
|
|
|
|
|
def getLoadcase():
|
|
|
|
global N_simulations
|
|
|
|
N_simulations+=1
|
|
|
|
return N_simulations
|
|
|
|
|
|
|
|
def converged():
|
|
|
|
global N_simulations
|
|
|
|
global maxN_simulations
|
|
|
|
if N_simulations < maxN_simulations:
|
|
|
|
return False
|
|
|
|
else:
|
|
|
|
return True
|
|
|
|
|
2014-07-09 15:01:26 +05:30
|
|
|
# --------------------------------------------------------------------
|
|
|
|
# MAIN
|
|
|
|
# --------------------------------------------------------------------
|
|
|
|
|
|
|
|
parser = OptionParser(option_class=damask.extendableOption, usage='%prog options [file[s]]', description = """
|
2014-07-21 23:19:45 +05:30
|
|
|
Performs calculations with various loads on given geometry file and fits yield surface.
|
2014-07-09 15:01:26 +05:30
|
|
|
|
|
|
|
""", version=string.replace(scriptID,'\n','\\n')
|
|
|
|
)
|
|
|
|
|
|
|
|
parser.add_option('-l','--load' , dest='load', type='float', nargs=3, \
|
|
|
|
help='load: final strain; increments; time', metavar='float int float')
|
2014-07-21 23:19:45 +05:30
|
|
|
parser.add_option('-g','--geometry', dest='geometry', type='string', \
|
|
|
|
help='name of the geometry file', metavar='string')
|
|
|
|
#parser.add_option('-c','--criterion',dest='formulas', action='extend', type='string', \
|
|
|
|
# help='(list of) formulas corresponding to labels', metavar='<LIST>')
|
|
|
|
parser.set_defaults(load = [0.008,80,80.0])
|
|
|
|
parser.set_defaults(geometry ='20grains16x16x16')
|
2014-07-09 15:01:26 +05:30
|
|
|
|
|
|
|
options = parser.parse_args()[0]
|
2014-07-02 16:12:51 +05:30
|
|
|
|
2014-07-21 23:19:45 +05:30
|
|
|
geomName =options.geometry
|
2014-07-02 16:12:51 +05:30
|
|
|
minN_simulations=20
|
2014-07-09 15:01:26 +05:30
|
|
|
maxN_simulations=40
|
2014-07-02 16:12:51 +05:30
|
|
|
N_simulations=0
|
|
|
|
s=threading.Semaphore(1)
|
|
|
|
scale = 0.02
|
2014-07-08 21:39:02 +05:30
|
|
|
stressAll=np.zeros(0,'d').reshape(0,0)
|
2014-07-02 16:12:51 +05:30
|
|
|
|
2014-07-09 15:01:26 +05:30
|
|
|
myLoad = Loadcase(options.load[0],options.load[1],options.load[2])
|
|
|
|
myFit = Criterion('vonmises')
|
2014-07-02 16:12:51 +05:30
|
|
|
|
2014-07-21 23:19:45 +05:30
|
|
|
N_threads=4
|
2014-07-02 16:12:51 +05:30
|
|
|
t=[]
|
|
|
|
|
|
|
|
for i in range(N_threads):
|
|
|
|
t.append(myThread(i))
|
|
|
|
t[i].start()
|
|
|
|
|
|
|
|
for i in range(N_threads):
|
|
|
|
t[i].join()
|
|
|
|
print "Exiting Main Thread"
|