2018-11-17 12:42:12 +05:30
|
|
|
#!/usr/bin/env python3
|
2014-04-02 00:11:14 +05:30
|
|
|
# -*- coding: UTF-8 no BOM -*-
|
2011-06-21 21:55:48 +05:30
|
|
|
|
2016-03-01 22:55:14 +05:30
|
|
|
import os,sys
|
2014-08-04 23:23:41 +05:30
|
|
|
import numpy as np
|
|
|
|
from optparse import OptionParser
|
|
|
|
import damask
|
2011-06-21 21:55:48 +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-03-10 19:31:39 +05:30
|
|
|
|
2012-11-30 20:32:25 +05:30
|
|
|
def operator(stretch,strain,eigenvalues):
|
2016-03-02 01:41:43 +05:30
|
|
|
"""Albrecht Bertram: Elasticity and Plasticity of Large Deformations An Introduction (3rd Edition, 2012), p. 102"""
|
2014-08-04 23:23:41 +05:30
|
|
|
return {
|
|
|
|
'V#ln': np.log(eigenvalues) ,
|
|
|
|
'U#ln': np.log(eigenvalues) ,
|
|
|
|
'V#Biot': ( np.ones(3,'d') - 1.0/eigenvalues ) ,
|
|
|
|
'U#Biot': ( eigenvalues - np.ones(3,'d') ) ,
|
2015-08-08 00:33:26 +05:30
|
|
|
'V#Green': ( np.ones(3,'d') - 1.0/eigenvalues/eigenvalues) *0.5,
|
2014-08-04 23:23:41 +05:30
|
|
|
'U#Green': ( eigenvalues*eigenvalues - np.ones(3,'d')) *0.5,
|
2012-11-30 20:32:25 +05:30
|
|
|
}[stretch+'#'+strain]
|
2011-12-04 15:27:13 +05:30
|
|
|
|
2011-06-21 21:55:48 +05:30
|
|
|
|
|
|
|
# --------------------------------------------------------------------
|
|
|
|
# MAIN
|
|
|
|
# --------------------------------------------------------------------
|
|
|
|
|
2019-02-17 02:50:10 +05:30
|
|
|
parser = OptionParser(option_class=damask.extendableOption, usage='%prog options [ASCIItable(s)]', description = """
|
2011-06-21 21:55:48 +05:30
|
|
|
Add column(s) containing given strains based on given stretches of requested deformation gradient column(s).
|
|
|
|
|
2014-08-06 18:57:09 +05:30
|
|
|
""", version = scriptID)
|
2011-06-21 21:55:48 +05:30
|
|
|
|
2015-08-08 00:33:26 +05:30
|
|
|
parser.add_option('-u','--right',
|
|
|
|
dest = 'right',
|
|
|
|
action = 'store_true',
|
|
|
|
help = 'material strains based on right Cauchy--Green deformation, i.e., C and U')
|
|
|
|
parser.add_option('-v','--left',
|
|
|
|
dest = 'left',
|
|
|
|
action = 'store_true',
|
|
|
|
help = 'spatial strains based on left Cauchy--Green deformation, i.e., B and V')
|
|
|
|
parser.add_option('-0','--logarithmic',
|
|
|
|
dest = 'logarithmic',
|
|
|
|
action = 'store_true',
|
|
|
|
help = 'calculate logarithmic strain tensor')
|
|
|
|
parser.add_option('-1','--biot',
|
|
|
|
dest = 'biot',
|
|
|
|
action = 'store_true',
|
|
|
|
help = 'calculate biot strain tensor')
|
|
|
|
parser.add_option('-2','--green',
|
|
|
|
dest = 'green',
|
|
|
|
action = 'store_true',
|
|
|
|
help = 'calculate green strain tensor')
|
|
|
|
parser.add_option('-f','--defgrad',
|
|
|
|
dest = 'defgrad',
|
|
|
|
action = 'extend',
|
|
|
|
metavar = '<string LIST>',
|
|
|
|
help = 'heading(s) of columns containing deformation tensor values [%default]')
|
|
|
|
|
2019-02-16 19:23:56 +05:30
|
|
|
parser.set_defaults(
|
2015-08-08 00:33:26 +05:30
|
|
|
defgrad = ['f'],
|
|
|
|
)
|
2011-06-21 21:55:48 +05:30
|
|
|
|
|
|
|
(options,filenames) = parser.parse_args()
|
|
|
|
|
2019-02-16 19:23:56 +05:30
|
|
|
if len(options.defgrad) > 1:
|
|
|
|
options.defgrad = options.defgrad[1:]
|
|
|
|
|
2011-06-21 21:55:48 +05:30
|
|
|
stretches = []
|
|
|
|
strains = []
|
|
|
|
|
|
|
|
if options.right: stretches.append('U')
|
|
|
|
if options.left: stretches.append('V')
|
|
|
|
if options.logarithmic: strains.append('ln')
|
2015-07-01 21:18:34 +05:30
|
|
|
if options.biot: strains.append('Biot')
|
|
|
|
if options.green: strains.append('Green')
|
2011-06-21 21:55:48 +05:30
|
|
|
|
2016-03-02 01:41:43 +05:30
|
|
|
if options.defgrad is None:
|
2015-08-08 00:33:26 +05:30
|
|
|
parser.error('no data column specified.')
|
|
|
|
|
|
|
|
# --- loop over input files -------------------------------------------------------------------------
|
|
|
|
|
2015-08-21 01:12:05 +05:30
|
|
|
if filenames == []: filenames = [None]
|
2015-08-08 00:33:26 +05:30
|
|
|
|
|
|
|
for name in filenames:
|
2015-08-21 01:12:05 +05:30
|
|
|
try:
|
|
|
|
table = damask.ASCIItable(name = name,
|
|
|
|
buffered = False)
|
|
|
|
except: continue
|
2015-09-24 14:54:42 +05:30
|
|
|
damask.util.report(scriptName,name)
|
2015-08-08 00:33:26 +05:30
|
|
|
|
|
|
|
# ------------------------------------------ read header ------------------------------------------
|
|
|
|
|
|
|
|
table.head_read()
|
|
|
|
|
|
|
|
# ------------------------------------------ sanity checks ----------------------------------------
|
|
|
|
|
|
|
|
items = {
|
|
|
|
'tensor': {'dim': 9, 'shape': [3,3], 'labels':options.defgrad, 'column': []},
|
|
|
|
}
|
|
|
|
errors = []
|
|
|
|
remarks = []
|
|
|
|
|
2018-07-19 19:46:10 +05:30
|
|
|
for type, data in items.items():
|
2015-08-08 00:33:26 +05:30
|
|
|
for what in data['labels']:
|
|
|
|
dim = table.label_dimension(what)
|
|
|
|
if dim != data['dim']: remarks.append('column {} is not a {}...'.format(what,type))
|
|
|
|
else:
|
|
|
|
items[type]['column'].append(table.label_index(what))
|
|
|
|
for theStretch in stretches:
|
|
|
|
for theStrain in strains:
|
|
|
|
table.labels_append(['{}_{}({}){}'.format(i+1, # extend ASCII header with new labels
|
|
|
|
theStrain,
|
|
|
|
theStretch,
|
2016-10-25 00:46:29 +05:30
|
|
|
what if what != 'f' else '') for i in range(9)])
|
2015-08-08 00:33:26 +05:30
|
|
|
|
2015-09-24 14:54:42 +05:30
|
|
|
if remarks != []: damask.util.croak(remarks)
|
2015-08-08 00:33:26 +05:30
|
|
|
if errors != []:
|
2015-09-24 14:54:42 +05:30
|
|
|
damask.util.croak(errors)
|
2015-07-01 21:18:34 +05:30
|
|
|
table.close(dismiss = True)
|
|
|
|
continue
|
2014-08-04 23:23:41 +05:30
|
|
|
|
2015-08-08 00:33:26 +05:30
|
|
|
# ------------------------------------------ assemble header --------------------------------------
|
2014-08-04 23:23:41 +05:30
|
|
|
|
2015-08-08 00:33:26 +05:30
|
|
|
table.info_append(scriptID + '\t' + ' '.join(sys.argv[1:]))
|
2011-12-04 15:27:13 +05:30
|
|
|
table.head_write()
|
2011-06-21 21:55:48 +05:30
|
|
|
|
2014-08-06 20:55:18 +05:30
|
|
|
# ------------------------------------------ process data ------------------------------------------
|
2015-08-08 00:33:26 +05:30
|
|
|
|
|
|
|
stretch = {}
|
2014-08-04 23:23:41 +05:30
|
|
|
outputAlive = True
|
2015-08-08 00:33:26 +05:30
|
|
|
|
2014-08-04 23:23:41 +05:30
|
|
|
while outputAlive and table.data_read(): # read next data line of ASCII table
|
2015-08-08 00:33:26 +05:30
|
|
|
for column in items['tensor']['column']: # loop over all requested defgrads
|
2018-07-19 20:23:48 +05:30
|
|
|
F = np.array(list(map(float,table.data[column:column+items['tensor']['dim']])),'d').reshape(items['tensor']['shape'])
|
2015-08-08 00:33:26 +05:30
|
|
|
(U,S,Vh) = np.linalg.svd(F) # singular value decomposition
|
|
|
|
R = np.dot(U,Vh) # rotation of polar decomposition
|
|
|
|
stretch['U'] = np.dot(np.linalg.inv(R),F) # F = RU
|
|
|
|
stretch['V'] = np.dot(F,np.linalg.inv(R)) # F = VR
|
|
|
|
|
2014-08-04 23:23:41 +05:30
|
|
|
for theStretch in stretches:
|
2015-08-10 03:42:49 +05:30
|
|
|
stretch[theStretch] = np.where(abs(stretch[theStretch]) < 1e-12, 0, stretch[theStretch]) # kill nasty noisy data
|
2014-08-04 23:23:41 +05:30
|
|
|
(D,V) = np.linalg.eig(stretch[theStretch]) # eigen decomposition (of symmetric matrix)
|
2015-08-08 00:33:26 +05:30
|
|
|
neg = np.where(D < 0.0) # find negative eigenvalues ...
|
|
|
|
D[neg] *= -1. # ... flip value ...
|
|
|
|
V[:,neg] *= -1. # ... and vector
|
2014-08-04 23:23:41 +05:30
|
|
|
for i,eigval in enumerate(D):
|
2015-08-08 00:33:26 +05:30
|
|
|
if np.dot(V[:,i],V[:,(i+1)%3]) != 0.0: # check each vector for orthogonality
|
|
|
|
V[:,(i+1)%3] = np.cross(V[:,(i+2)%3],V[:,i]) # correct next vector
|
|
|
|
V[:,(i+1)%3] /= np.sqrt(np.dot(V[:,(i+1)%3],V[:,(i+1)%3].conj())) # and renormalize (hyperphobic?)
|
2014-08-04 23:23:41 +05:30
|
|
|
for theStrain in strains:
|
|
|
|
d = operator(theStretch,theStrain,D) # operate on eigenvalues of U or V
|
|
|
|
eps = (np.dot(V,np.dot(np.diag(d),V.T)).real).reshape(9) # build tensor back from eigenvalue/vector basis
|
|
|
|
|
|
|
|
table.data_append(list(eps))
|
2011-06-21 21:55:48 +05:30
|
|
|
|
2014-08-06 20:55:18 +05:30
|
|
|
# ------------------------------------------ output result -----------------------------------------
|
2011-06-21 21:55:48 +05:30
|
|
|
|
2015-08-08 00:33:26 +05:30
|
|
|
outputAlive = table.data_write() # output processed line
|
|
|
|
|
|
|
|
# ------------------------------------------ output finalization -----------------------------------
|
|
|
|
|
|
|
|
table.close() # close ASCII tables
|