2013-03-19 23:49:00 +05:30
|
|
|
#!/usr/bin/env python
|
2014-04-02 00:11:14 +05:30
|
|
|
# -*- coding: UTF-8 no BOM -*-
|
|
|
|
|
2013-03-19 23:55:01 +05:30
|
|
|
import os
|
2013-03-19 23:49:00 +05:30
|
|
|
import glob
|
|
|
|
from subprocess import call
|
|
|
|
|
|
|
|
geom_name = '20grains16x16x16_tensionX'
|
|
|
|
postResults = 'postResults --cr f,p --split --separation x,y,z '+geom_name+'.spectralOut'
|
|
|
|
|
|
|
|
sts = call(postResults, shell=True)
|
|
|
|
|
|
|
|
os.chdir('./postProc/')
|
|
|
|
ascii_files = glob.glob(geom_name+'_inc*.txt')
|
|
|
|
print ascii_files
|
|
|
|
|
|
|
|
showTable = "showTable -a "
|
|
|
|
addCauchy = 'addCauchy '
|
|
|
|
addMises = 'addMises -s Cauchy '
|
2015-09-19 00:33:53 +05:30
|
|
|
addStrainTensors = "addStrainTensors -0 -v "
|
2013-03-19 23:49:00 +05:30
|
|
|
visualize3D = "3Dvisualize -s 'Mises(Cauchy)',1_p Cauchy "
|
|
|
|
|
|
|
|
|
|
|
|
postProc = [addCauchy, addMises, addStrainTensors, visualize3D]
|
|
|
|
|
|
|
|
|
|
|
|
for f in ascii_files:
|
|
|
|
print f
|
|
|
|
for p in postProc:
|
|
|
|
p = p+f
|
|
|
|
print p
|
|
|
|
sts = call(p,shell=True)
|
|
|
|
|