2018-11-17 12:42:12 +05:30
|
|
|
#!/usr/bin/env python3
|
2012-06-12 19:39:16 +05:30
|
|
|
|
2019-06-14 16:33:30 +05:30
|
|
|
import os
|
|
|
|
import sys
|
2019-11-27 16:49:37 +05:30
|
|
|
from io import StringIO
|
2014-07-25 03:12:13 +05:30
|
|
|
from optparse import OptionParser
|
2019-06-14 16:33:30 +05:30
|
|
|
|
2014-07-25 03:12:13 +05:30
|
|
|
import damask
|
2012-06-12 19:39:16 +05:30
|
|
|
|
2019-06-14 16:33:30 +05:30
|
|
|
|
2016-01-27 22:36:00 +05:30
|
|
|
scriptName = os.path.splitext(os.path.basename(__file__))[0]
|
|
|
|
scriptID = ' '.join([scriptName,damask.version])
|
2012-06-12 19:39:16 +05:30
|
|
|
|
|
|
|
# --------------------------------------------------------------------
|
|
|
|
# MAIN
|
|
|
|
# --------------------------------------------------------------------
|
|
|
|
|
2019-02-16 22:55:41 +05:30
|
|
|
parser = OptionParser(option_class=damask.extendableOption, usage='%prog options [ASCIItable(s)]', description = """
|
2016-03-03 15:13:43 +05:30
|
|
|
Add column(s) containing Second Piola--Kirchhoff stress based on given column(s) of deformation
|
|
|
|
gradient and first Piola--Kirchhoff stress.
|
2012-06-12 19:39:16 +05:30
|
|
|
|
2014-08-06 18:57:09 +05:30
|
|
|
""", version = scriptID)
|
2012-06-12 19:39:16 +05:30
|
|
|
|
2015-08-08 00:33:26 +05:30
|
|
|
parser.add_option('-f','--defgrad',
|
|
|
|
dest = 'defgrad',
|
|
|
|
type = 'string', metavar = 'string',
|
|
|
|
help = 'heading of columns containing deformation gradient [%default]')
|
|
|
|
parser.add_option('-p','--stress',
|
|
|
|
dest = 'stress',
|
|
|
|
type = 'string', metavar = 'string',
|
|
|
|
help = 'heading of columns containing first Piola--Kirchhoff stress [%default]')
|
|
|
|
|
|
|
|
parser.set_defaults(defgrad = 'f',
|
|
|
|
stress = 'p',
|
|
|
|
)
|
2012-06-12 19:39:16 +05:30
|
|
|
|
|
|
|
(options,filenames) = parser.parse_args()
|
2015-08-21 01:12:05 +05:30
|
|
|
if filenames == []: filenames = [None]
|
2015-08-08 00:33:26 +05:30
|
|
|
|
|
|
|
for name in filenames:
|
2019-11-27 16:49:37 +05:30
|
|
|
damask.util.report(scriptName,name)
|
2012-06-12 19:39:16 +05:30
|
|
|
|
2019-11-27 16:49:37 +05:30
|
|
|
table = damask.Table.from_ASCII(StringIO(''.join(sys.stdin.read())) if name is None else name)
|
2012-06-12 19:39:16 +05:30
|
|
|
|
2019-12-05 10:40:27 +05:30
|
|
|
table.add('S',
|
|
|
|
damask.mechanics.PK2(table.get(options.defgrad).reshape(-1,3,3),
|
|
|
|
table.get(options.stress ).reshape(-1,3,3)).reshape(-1,9),
|
|
|
|
scriptID+' '+' '.join(sys.argv[1:]))
|
2012-06-12 19:39:16 +05:30
|
|
|
|
2019-11-27 16:49:37 +05:30
|
|
|
table.to_ASCII(sys.stdout if name is None else name)
|