need to reverse F->C flip

This commit is contained in:
Martin Diehl 2020-01-02 17:46:14 +01:00
parent 97e7f510e2
commit a3664bbde1
1 changed files with 1 additions and 1 deletions

View File

@ -40,7 +40,7 @@ for name in filenames:
"homogenization\t{}".format(geom.homogenization)]
table = damask.Table(coord0,{'pos':(3,)},comments)
table.add('microstructure',geom.microstructure.reshape((-1,1)))
table.add('microstructure',geom.microstructure.reshape((-1,1),order='F'))
table.to_ASCII(sys.stdout if name is None else \
os.path.splitext(name)[0]+'.txt')