2016-07-18 23:05:35 +05:30
|
|
|
#!/usr/bin/env python2.7
|
2014-08-29 00:20:48 +05:30
|
|
|
# -*- coding: UTF-8 no BOM -*-
|
|
|
|
|
2016-03-02 02:42:04 +05:30
|
|
|
import os,sys,math
|
2014-11-07 16:43:14 +05:30
|
|
|
import numpy as np
|
|
|
|
from optparse import OptionParser
|
2014-08-29 00:20:48 +05:30
|
|
|
import damask
|
|
|
|
|
2016-01-27 22:36:00 +05:30
|
|
|
scriptName = os.path.splitext(os.path.basename(__file__))[0]
|
|
|
|
scriptID = ' '.join([scriptName,damask.version])
|
2014-08-29 00:20:48 +05:30
|
|
|
|
|
|
|
#--------------------------------------------------------------------------------------------------
|
|
|
|
# MAIN
|
|
|
|
#--------------------------------------------------------------------------------------------------
|
|
|
|
identifiers = {
|
|
|
|
'grid': ['a','b','c'],
|
|
|
|
'size': ['x','y','z'],
|
|
|
|
'origin': ['x','y','z'],
|
|
|
|
}
|
|
|
|
mappings = {
|
|
|
|
'grid': lambda x: int(x),
|
|
|
|
'size': lambda x: float(x),
|
|
|
|
'origin': lambda x: float(x),
|
|
|
|
'homogenization': lambda x: int(x),
|
|
|
|
'microstructures': lambda x: int(x),
|
|
|
|
}
|
|
|
|
|
2016-05-12 12:24:34 +05:30
|
|
|
parser = OptionParser(option_class=damask.extendableOption, usage='%prog option(s) [geomfile(s)]', description = """
|
2014-08-29 00:20:48 +05:30
|
|
|
Positions a geometric object within the (three-dimensional) canvas of a spectral geometry description.
|
|
|
|
Depending on the sign of the dimension parameters, these objects can be boxes, cylinders, or ellipsoids.
|
2014-11-07 16:43:14 +05:30
|
|
|
|
|
|
|
""", version = scriptID)
|
2014-08-29 00:20:48 +05:30
|
|
|
|
Improve performance and generalize primitive shape
- Behavior is mostly unchanged, but the primitive may be shifted by a voxel when compared to the previous version, which had rounding issues near the edge of the primitive.
- exponent flag specifies the exponents that satisfy the equation x^e1 + y^e2 + z^e3 < 1. (1,1,1) gives an octahedron, (2,2,2) a sphere, and large values (1e10, 1e10, 1e10) gives a hexahedral box for any reasonable resolution. Mixing the two can produce a cylinder, (1e10, 2, 2) gives one with rotational symmetry about the x-axis.
2017-02-24 11:03:47 +05:30
|
|
|
parser.add_option('-c', '--center', dest='center', type='float', nargs = 3, metavar=' '.join(['float']*3),
|
2014-08-29 00:20:48 +05:30
|
|
|
help='a,b,c origin of primitive %default')
|
Improve performance and generalize primitive shape
- Behavior is mostly unchanged, but the primitive may be shifted by a voxel when compared to the previous version, which had rounding issues near the edge of the primitive.
- exponent flag specifies the exponents that satisfy the equation x^e1 + y^e2 + z^e3 < 1. (1,1,1) gives an octahedron, (2,2,2) a sphere, and large values (1e10, 1e10, 1e10) gives a hexahedral box for any reasonable resolution. Mixing the two can produce a cylinder, (1e10, 2, 2) gives one with rotational symmetry about the x-axis.
2017-02-24 11:03:47 +05:30
|
|
|
parser.add_option('-d', '--dimension', dest='dimension', type='float', nargs = 3, metavar=' '.join(['float']*3),
|
2014-08-29 00:20:48 +05:30
|
|
|
help='a,b,c extension of hexahedral box; negative values are diameters')
|
Improve performance and generalize primitive shape
- Behavior is mostly unchanged, but the primitive may be shifted by a voxel when compared to the previous version, which had rounding issues near the edge of the primitive.
- exponent flag specifies the exponents that satisfy the equation x^e1 + y^e2 + z^e3 < 1. (1,1,1) gives an octahedron, (2,2,2) a sphere, and large values (1e10, 1e10, 1e10) gives a hexahedral box for any reasonable resolution. Mixing the two can produce a cylinder, (1e10, 2, 2) gives one with rotational symmetry about the x-axis.
2017-02-24 11:03:47 +05:30
|
|
|
parser.add_option('-e', '--exponent', dest='exponent', type='float', nargs = 3, metavar=' '.join(['float']*3),
|
|
|
|
help='i,j,k exponents for axes - 2 gives a sphere (x^2 + y^2 + z^2 < 1), 1 makes \
|
|
|
|
octahedron (|x| + |y| + |z| < 1). Large values produce boxes, 0 - 1 is concave. ')
|
2014-08-29 00:20:48 +05:30
|
|
|
parser.add_option('-f', '--fill', dest='fill', type='int', metavar = 'int',
|
|
|
|
help='grain index to fill primitive. "0" selects maximum microstructure index + 1 [%default]')
|
|
|
|
parser.add_option('-q', '--quaternion', dest='quaternion', type='float', nargs = 4, metavar=' '.join(['float']*4),
|
|
|
|
help = 'rotation of primitive as quaternion')
|
2014-09-12 19:44:55 +05:30
|
|
|
parser.add_option('-a', '--angleaxis', dest='angleaxis', nargs = 4, metavar=' '.join(['float']*4),
|
Improve performance and generalize primitive shape
- Behavior is mostly unchanged, but the primitive may be shifted by a voxel when compared to the previous version, which had rounding issues near the edge of the primitive.
- exponent flag specifies the exponents that satisfy the equation x^e1 + y^e2 + z^e3 < 1. (1,1,1) gives an octahedron, (2,2,2) a sphere, and large values (1e10, 1e10, 1e10) gives a hexahedral box for any reasonable resolution. Mixing the two can produce a cylinder, (1e10, 2, 2) gives one with rotational symmetry about the x-axis.
2017-02-24 11:03:47 +05:30
|
|
|
help = 'angle,x,y,z clockwise rotation of primitive about axis by angle')
|
2014-08-29 00:20:48 +05:30
|
|
|
parser.add_option( '--degrees', dest='degrees', action='store_true',
|
|
|
|
help = 'angle is given in degrees [%default]')
|
Improve performance and generalize primitive shape
- Behavior is mostly unchanged, but the primitive may be shifted by a voxel when compared to the previous version, which had rounding issues near the edge of the primitive.
- exponent flag specifies the exponents that satisfy the equation x^e1 + y^e2 + z^e3 < 1. (1,1,1) gives an octahedron, (2,2,2) a sphere, and large values (1e10, 1e10, 1e10) gives a hexahedral box for any reasonable resolution. Mixing the two can produce a cylinder, (1e10, 2, 2) gives one with rotational symmetry about the x-axis.
2017-02-24 11:03:47 +05:30
|
|
|
parser.add_option( '--nonperiodic', dest='periodic', action='store_false',
|
|
|
|
help = 'wrap around edges [%default]')
|
2017-03-08 07:07:30 +05:30
|
|
|
parser.add_option( '--voxelspace', dest='voxelspace', action='store_true',
|
|
|
|
help = '-c and -d are given in (0 to grid) coordinates instead of (origin to origin+size) \
|
|
|
|
coordinates [%default]')
|
2017-03-08 23:16:53 +05:30
|
|
|
parser.set_defaults(center = (.0,.0,.0),
|
2014-08-29 00:20:48 +05:30
|
|
|
fill = 0,
|
|
|
|
degrees = False,
|
2017-03-08 23:16:53 +05:30
|
|
|
exponent = (1e10,1e10,1e10), # box shape by default
|
2017-03-08 07:07:30 +05:30
|
|
|
periodic = True,
|
|
|
|
voxelspace = False
|
2014-08-29 00:20:48 +05:30
|
|
|
)
|
|
|
|
|
|
|
|
(options, filenames) = parser.parse_args()
|
2017-03-08 23:16:53 +05:30
|
|
|
if options.dimension is None:
|
|
|
|
parser.error('no dimension specified.')
|
|
|
|
if options.angleaxis is not None:
|
2014-08-29 00:20:48 +05:30
|
|
|
options.angleaxis = map(float,options.angleaxis)
|
2014-11-07 16:43:14 +05:30
|
|
|
rotation = damask.Quaternion().fromAngleAxis(np.radians(options.angleaxis[0]) if options.degrees else options.angleaxis[0],
|
Improve performance and generalize primitive shape
- Behavior is mostly unchanged, but the primitive may be shifted by a voxel when compared to the previous version, which had rounding issues near the edge of the primitive.
- exponent flag specifies the exponents that satisfy the equation x^e1 + y^e2 + z^e3 < 1. (1,1,1) gives an octahedron, (2,2,2) a sphere, and large values (1e10, 1e10, 1e10) gives a hexahedral box for any reasonable resolution. Mixing the two can produce a cylinder, (1e10, 2, 2) gives one with rotational symmetry about the x-axis.
2017-02-24 11:03:47 +05:30
|
|
|
options.angleaxis[1:4])
|
2017-03-08 23:16:53 +05:30
|
|
|
elif options.quaternion is not None:
|
2015-06-19 10:08:00 +05:30
|
|
|
options.quaternion = map(float,options.quaternion)
|
Improve performance and generalize primitive shape
- Behavior is mostly unchanged, but the primitive may be shifted by a voxel when compared to the previous version, which had rounding issues near the edge of the primitive.
- exponent flag specifies the exponents that satisfy the equation x^e1 + y^e2 + z^e3 < 1. (1,1,1) gives an octahedron, (2,2,2) a sphere, and large values (1e10, 1e10, 1e10) gives a hexahedral box for any reasonable resolution. Mixing the two can produce a cylinder, (1e10, 2, 2) gives one with rotational symmetry about the x-axis.
2017-02-24 11:03:47 +05:30
|
|
|
rotation = damask.Quaternion(options.quaternion)
|
2014-08-29 00:20:48 +05:30
|
|
|
else:
|
Improve performance and generalize primitive shape
- Behavior is mostly unchanged, but the primitive may be shifted by a voxel when compared to the previous version, which had rounding issues near the edge of the primitive.
- exponent flag specifies the exponents that satisfy the equation x^e1 + y^e2 + z^e3 < 1. (1,1,1) gives an octahedron, (2,2,2) a sphere, and large values (1e10, 1e10, 1e10) gives a hexahedral box for any reasonable resolution. Mixing the two can produce a cylinder, (1e10, 2, 2) gives one with rotational symmetry about the x-axis.
2017-02-24 11:03:47 +05:30
|
|
|
rotation = damask.Quaternion()
|
2014-08-29 00:20:48 +05:30
|
|
|
|
2014-11-07 16:43:14 +05:30
|
|
|
options.center = np.array(options.center)
|
2017-03-08 07:07:30 +05:30
|
|
|
options.dimension = np.array(options.dimension)
|
2014-11-06 03:32:40 +05:30
|
|
|
|
2015-08-18 10:02:19 +05:30
|
|
|
# --- loop over input files -------------------------------------------------------------------------
|
2015-09-24 22:22:58 +05:30
|
|
|
if filenames == []: filenames = [None]
|
2015-08-18 10:02:19 +05:30
|
|
|
|
|
|
|
for name in filenames:
|
2015-09-24 22:22:58 +05:30
|
|
|
try:
|
|
|
|
table = damask.ASCIItable(name = name,
|
|
|
|
buffered = False, labeled = False)
|
|
|
|
except: continue
|
|
|
|
damask.util.report(scriptName,name)
|
2015-08-18 10:02:19 +05:30
|
|
|
|
|
|
|
# --- interpret header ----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
table.head_read()
|
|
|
|
info,extra_header = table.head_getGeom()
|
2016-09-13 04:39:48 +05:30
|
|
|
|
2015-09-24 22:22:58 +05:30
|
|
|
damask.util.croak(['grid a b c: %s'%(' x '.join(map(str,info['grid']))),
|
|
|
|
'size x y z: %s'%(' x '.join(map(str,info['size']))),
|
|
|
|
'origin x y z: %s'%(' : '.join(map(str,info['origin']))),
|
|
|
|
'homogenization: %i'%info['homogenization'],
|
|
|
|
'microstructures: %i'%info['microstructures'],
|
2015-08-18 10:02:19 +05:30
|
|
|
])
|
|
|
|
|
|
|
|
errors = []
|
|
|
|
if np.any(info['grid'] < 1): errors.append('invalid grid a b c.')
|
|
|
|
if np.any(info['size'] <= 0.0): errors.append('invalid size x y z.')
|
|
|
|
if errors != []:
|
2015-09-24 22:22:58 +05:30
|
|
|
damask.util.croak(errors)
|
2015-08-18 10:02:19 +05:30
|
|
|
table.close(dismiss = True)
|
2014-08-29 00:20:48 +05:30
|
|
|
continue
|
|
|
|
|
|
|
|
#--- read data ------------------------------------------------------------------------------------
|
|
|
|
|
2015-08-18 10:02:19 +05:30
|
|
|
microstructure = table.microstructure_read(info['grid']) # read microstructure
|
|
|
|
|
|
|
|
# --- do work ------------------------------------------------------------------------------------
|
2014-08-29 00:20:48 +05:30
|
|
|
|
2015-08-18 10:02:19 +05:30
|
|
|
newInfo = {
|
|
|
|
'microstructures': 0,
|
|
|
|
}
|
2014-08-29 00:20:48 +05:30
|
|
|
|
|
|
|
if options.fill == 0:
|
|
|
|
options.fill = microstructure.max()+1
|
Improve performance and generalize primitive shape
- Behavior is mostly unchanged, but the primitive may be shifted by a voxel when compared to the previous version, which had rounding issues near the edge of the primitive.
- exponent flag specifies the exponents that satisfy the equation x^e1 + y^e2 + z^e3 < 1. (1,1,1) gives an octahedron, (2,2,2) a sphere, and large values (1e10, 1e10, 1e10) gives a hexahedral box for any reasonable resolution. Mixing the two can produce a cylinder, (1e10, 2, 2) gives one with rotational symmetry about the x-axis.
2017-02-24 11:03:47 +05:30
|
|
|
|
|
|
|
# If we have a negative dimension, make it an ellipsoid for backwards compatibility
|
|
|
|
options.exponent = np.where(np.array(options.dimension) > 0, options.exponent, 2)
|
2014-08-29 00:20:48 +05:30
|
|
|
microstructure = microstructure.reshape(info['grid'],order='F')
|
Improve performance and generalize primitive shape
- Behavior is mostly unchanged, but the primitive may be shifted by a voxel when compared to the previous version, which had rounding issues near the edge of the primitive.
- exponent flag specifies the exponents that satisfy the equation x^e1 + y^e2 + z^e3 < 1. (1,1,1) gives an octahedron, (2,2,2) a sphere, and large values (1e10, 1e10, 1e10) gives a hexahedral box for any reasonable resolution. Mixing the two can produce a cylinder, (1e10, 2, 2) gives one with rotational symmetry about the x-axis.
2017-02-24 11:03:47 +05:30
|
|
|
|
2017-03-08 07:07:30 +05:30
|
|
|
# coordinates given in real space (default) vs voxel space
|
|
|
|
if not options.voxelspace:
|
2017-03-08 23:16:53 +05:30
|
|
|
options.center += info['origin']
|
2017-03-08 07:07:30 +05:30
|
|
|
options.center *= np.array(info['grid']) / np.array(info['size'])
|
|
|
|
options.dimension *= np.array(info['grid']) / np.array(info['size'])
|
|
|
|
|
Improve performance and generalize primitive shape
- Behavior is mostly unchanged, but the primitive may be shifted by a voxel when compared to the previous version, which had rounding issues near the edge of the primitive.
- exponent flag specifies the exponents that satisfy the equation x^e1 + y^e2 + z^e3 < 1. (1,1,1) gives an octahedron, (2,2,2) a sphere, and large values (1e10, 1e10, 1e10) gives a hexahedral box for any reasonable resolution. Mixing the two can produce a cylinder, (1e10, 2, 2) gives one with rotational symmetry about the x-axis.
2017-02-24 11:03:47 +05:30
|
|
|
size = microstructure.shape
|
2017-03-05 22:20:17 +05:30
|
|
|
|
|
|
|
# change to coordinate space where the primitive is the unit sphere/cube/etc
|
Improve performance and generalize primitive shape
- Behavior is mostly unchanged, but the primitive may be shifted by a voxel when compared to the previous version, which had rounding issues near the edge of the primitive.
- exponent flag specifies the exponents that satisfy the equation x^e1 + y^e2 + z^e3 < 1. (1,1,1) gives an octahedron, (2,2,2) a sphere, and large values (1e10, 1e10, 1e10) gives a hexahedral box for any reasonable resolution. Mixing the two can produce a cylinder, (1e10, 2, 2) gives one with rotational symmetry about the x-axis.
2017-02-24 11:03:47 +05:30
|
|
|
if options.periodic: # use padding to achieve periodicity
|
2017-02-25 09:00:04 +05:30
|
|
|
(X, Y, Z) = np.meshgrid(np.arange(-size[0]/2, (3*size[0])/2, dtype=np.float32), # 50% padding on each side
|
|
|
|
np.arange(-size[1]/2, (3*size[1])/2, dtype=np.float32),
|
|
|
|
np.arange(-size[2]/2, (3*size[2])/2, dtype=np.float32),
|
|
|
|
indexing='ij')
|
|
|
|
# Padding handling
|
|
|
|
X = np.roll(np.roll(np.roll(X,
|
|
|
|
-size[0]/2, axis=0),
|
|
|
|
-size[1]/2, axis=1),
|
|
|
|
-size[2]/2, axis=2)
|
|
|
|
Y = np.roll(np.roll(np.roll(Y,
|
|
|
|
-size[0]/2, axis=0),
|
|
|
|
-size[1]/2, axis=1),
|
|
|
|
-size[2]/2, axis=2)
|
|
|
|
Z = np.roll(np.roll(np.roll(Z,
|
|
|
|
-size[0]/2, axis=0),
|
|
|
|
-size[1]/2, axis=1),
|
|
|
|
-size[2]/2, axis=2)
|
2017-03-05 22:20:17 +05:30
|
|
|
else: # nonperiodic, much lighter on resources
|
|
|
|
# change to coordinate space where the primitive is the unit sphere/cube/etc
|
|
|
|
(X, Y, Z) = np.meshgrid(np.arange(0, size[0], dtype=np.float32),
|
|
|
|
np.arange(0, size[1], dtype=np.float32),
|
|
|
|
np.arange(0, size[2], dtype=np.float32),
|
|
|
|
indexing='ij')
|
2017-02-25 09:00:04 +05:30
|
|
|
|
2017-03-05 22:20:17 +05:30
|
|
|
# first by translating the center onto 0, 0.5 shifts the voxel origin onto the center of the voxel
|
|
|
|
X -= options.center[0] - 0.5
|
|
|
|
Y -= options.center[1] - 0.5
|
|
|
|
Z -= options.center[2] - 0.5
|
|
|
|
# and then by applying the quaternion
|
|
|
|
# this should be rotation.conjugate() * (X,Y,Z), but it is this way for backwards compatibility with the older version of this script
|
|
|
|
(X, Y, Z) = rotation * (X, Y, Z)
|
|
|
|
# and finally by scaling (we don't worry about options.dimension being negative, np.abs occurs on the microstructure = np.where... line)
|
|
|
|
X /= options.dimension[0] * 0.5
|
|
|
|
Y /= options.dimension[1] * 0.5
|
|
|
|
Z /= options.dimension[2] * 0.5
|
Improve performance and generalize primitive shape
- Behavior is mostly unchanged, but the primitive may be shifted by a voxel when compared to the previous version, which had rounding issues near the edge of the primitive.
- exponent flag specifies the exponents that satisfy the equation x^e1 + y^e2 + z^e3 < 1. (1,1,1) gives an octahedron, (2,2,2) a sphere, and large values (1e10, 1e10, 1e10) gives a hexahedral box for any reasonable resolution. Mixing the two can produce a cylinder, (1e10, 2, 2) gives one with rotational symmetry about the x-axis.
2017-02-24 11:03:47 +05:30
|
|
|
|
2017-03-05 22:20:17 +05:30
|
|
|
|
|
|
|
# High exponents can cause underflow & overflow - loss of precision is okay here, we just compare it to 1, so +infinity and 0 are fine
|
|
|
|
old_settings = np.seterr()
|
|
|
|
np.seterr(over='ignore', under='ignore')
|
|
|
|
|
|
|
|
if options.periodic: # use padding to achieve periodicity
|
Improve performance and generalize primitive shape
- Behavior is mostly unchanged, but the primitive may be shifted by a voxel when compared to the previous version, which had rounding issues near the edge of the primitive.
- exponent flag specifies the exponents that satisfy the equation x^e1 + y^e2 + z^e3 < 1. (1,1,1) gives an octahedron, (2,2,2) a sphere, and large values (1e10, 1e10, 1e10) gives a hexahedral box for any reasonable resolution. Mixing the two can produce a cylinder, (1e10, 2, 2) gives one with rotational symmetry about the x-axis.
2017-02-24 11:03:47 +05:30
|
|
|
inside = np.zeros(size, dtype=bool)
|
2017-02-25 09:00:04 +05:30
|
|
|
for i in range(2):
|
|
|
|
for j in range(2):
|
|
|
|
for k in range(2):
|
Improve performance and generalize primitive shape
- Behavior is mostly unchanged, but the primitive may be shifted by a voxel when compared to the previous version, which had rounding issues near the edge of the primitive.
- exponent flag specifies the exponents that satisfy the equation x^e1 + y^e2 + z^e3 < 1. (1,1,1) gives an octahedron, (2,2,2) a sphere, and large values (1e10, 1e10, 1e10) gives a hexahedral box for any reasonable resolution. Mixing the two can produce a cylinder, (1e10, 2, 2) gives one with rotational symmetry about the x-axis.
2017-02-24 11:03:47 +05:30
|
|
|
inside = inside | ( # Most of this is handling the padding
|
|
|
|
np.abs(X[size[0] * i : size[0] * (i+1),
|
|
|
|
size[1] * j : size[1] * (j+1),
|
|
|
|
size[2] * k : size[2] * (k+1)])**options.exponent[0] +
|
|
|
|
np.abs(Y[size[0] * i : size[0] * (i+1),
|
|
|
|
size[1] * j : size[1] * (j+1),
|
|
|
|
size[2] * k : size[2] * (k+1)])**options.exponent[1] +
|
|
|
|
np.abs(Z[size[0] * i : size[0] * (i+1),
|
|
|
|
size[1] * j : size[1] * (j+1),
|
|
|
|
size[2] * k : size[2] * (k+1)])**options.exponent[2] < 1)
|
|
|
|
|
2017-03-05 22:20:17 +05:30
|
|
|
microstructure = np.where(inside, options.fill, microstructure)
|
|
|
|
|
Improve performance and generalize primitive shape
- Behavior is mostly unchanged, but the primitive may be shifted by a voxel when compared to the previous version, which had rounding issues near the edge of the primitive.
- exponent flag specifies the exponents that satisfy the equation x^e1 + y^e2 + z^e3 < 1. (1,1,1) gives an octahedron, (2,2,2) a sphere, and large values (1e10, 1e10, 1e10) gives a hexahedral box for any reasonable resolution. Mixing the two can produce a cylinder, (1e10, 2, 2) gives one with rotational symmetry about the x-axis.
2017-02-24 11:03:47 +05:30
|
|
|
else: # nonperiodic, much lighter on resources
|
|
|
|
microstructure = np.where(np.abs(X)**options.exponent[0] +
|
|
|
|
np.abs(Y)**options.exponent[1] +
|
|
|
|
np.abs(Z)**options.exponent[2] < 1, options.fill, microstructure)
|
2014-08-29 00:20:48 +05:30
|
|
|
|
2017-03-05 22:20:17 +05:30
|
|
|
np.seterr(**old_settings) # Reset warnings to old state
|
2014-08-29 00:20:48 +05:30
|
|
|
newInfo['microstructures'] = microstructure.max()
|
|
|
|
|
2015-08-18 10:02:19 +05:30
|
|
|
# --- report ---------------------------------------------------------------------------------------
|
Improve performance and generalize primitive shape
- Behavior is mostly unchanged, but the primitive may be shifted by a voxel when compared to the previous version, which had rounding issues near the edge of the primitive.
- exponent flag specifies the exponents that satisfy the equation x^e1 + y^e2 + z^e3 < 1. (1,1,1) gives an octahedron, (2,2,2) a sphere, and large values (1e10, 1e10, 1e10) gives a hexahedral box for any reasonable resolution. Mixing the two can produce a cylinder, (1e10, 2, 2) gives one with rotational symmetry about the x-axis.
2017-02-24 11:03:47 +05:30
|
|
|
if (newInfo['microstructures'] != info['microstructures']):
|
2016-03-02 02:42:04 +05:30
|
|
|
damask.util.croak('--> microstructures: %i'%newInfo['microstructures'])
|
2015-08-18 10:02:19 +05:30
|
|
|
|
2014-08-29 00:20:48 +05:30
|
|
|
|
|
|
|
#--- write header ---------------------------------------------------------------------------------
|
2015-08-18 10:02:19 +05:30
|
|
|
|
2014-08-29 00:20:48 +05:30
|
|
|
table.info_clear()
|
2015-08-18 10:02:19 +05:30
|
|
|
table.info_append([
|
2014-08-29 00:20:48 +05:30
|
|
|
scriptID + ' ' + ' '.join(sys.argv[1:]),
|
2015-08-18 10:02:19 +05:30
|
|
|
"grid\ta {grid[0]}\tb {grid[1]}\tc {grid[2]}".format(grid=info['grid']),
|
|
|
|
"size\tx {size[0]}\ty {size[1]}\tz {size[2]}".format(size=info['size']),
|
|
|
|
"origin\tx {origin[0]}\ty {origin[1]}\tz {origin[2]}".format(origin=info['origin']),
|
|
|
|
"homogenization\t{homog}".format(homog=info['homogenization']),
|
2015-09-24 22:22:58 +05:30
|
|
|
"microstructures\t{microstructures}".format(microstructures=newInfo['microstructures']),
|
|
|
|
extra_header
|
2014-08-29 00:20:48 +05:30
|
|
|
])
|
2015-08-18 10:02:19 +05:30
|
|
|
table.labels_clear()
|
2014-08-29 00:20:48 +05:30
|
|
|
table.head_write()
|
|
|
|
table.output_flush()
|
2016-09-13 04:39:48 +05:30
|
|
|
|
2014-08-29 00:20:48 +05:30
|
|
|
# --- write microstructure information ------------------------------------------------------------
|
2015-08-18 10:02:19 +05:30
|
|
|
|
2014-08-29 00:20:48 +05:30
|
|
|
formatwidth = int(math.floor(math.log10(microstructure.max())+1))
|
|
|
|
table.data = microstructure.reshape((info['grid'][0],info['grid'][1]*info['grid'][2]),order='F').transpose()
|
2015-08-18 10:02:19 +05:30
|
|
|
table.data_writeArray('%%%ii'%(formatwidth),delimiter = ' ')
|
|
|
|
|
2015-09-24 22:22:58 +05:30
|
|
|
#--- output finalization --------------------------------------------------------------------------
|
2015-08-18 10:02:19 +05:30
|
|
|
|
2015-09-24 22:22:58 +05:30
|
|
|
table.close()
|