removed substitute call for direct mapping; added seed from averaging of material ID cloud

This commit is contained in:
Philip Eisenlohr 2020-09-24 21:59:48 -04:00
parent e8454c40c7
commit e58cc4bfa0
2 changed files with 24 additions and 18 deletions

View File

@ -256,15 +256,10 @@ class Geom:
else:
material_ = material_.reshape(grid)
geom = Geom(material = material_+1,
return Geom(material = material_+1 if material is None else material[material_],
size = size,
comments = util.execution_stamp('Geom','from_Laguerre_tessellation'),
)
if material is not None:
geom = geom.substitute(np.arange(seeds.shape[0])+1,material)
geom.comments = geom.comments[:-1]
return geom
@staticmethod
@ -291,15 +286,10 @@ class Geom:
KDTree = spatial.cKDTree(seeds,boxsize=size) if periodic else spatial.cKDTree(seeds)
devNull,material_ = KDTree.query(coords)
geom = Geom(material = material_.reshape(grid)+1,
return Geom(material = (material_+1 if material is None else material[material_]).reshape(grid),
size = size,
comments = util.execution_stamp('Geom','from_Voronoi_tessellation'),
)
if material is not None:
geom = geom.substitute(np.arange(seeds.shape[0])+1,material)
geom.comments = geom.comments[:-1]
return geom
def save_ASCII(self,fname,compress=None):

View File

@ -12,7 +12,7 @@ def from_random(size,N_seeds,grid=None,seed=None):
Parameters
----------
size : numpy.ndarray of shape (3)
Physical size of the periodic field.
Physical size of the seeding domain.
N_seeds : int
Number of seeds.
grid : numpy.ndarray of shape (3), optional.
@ -41,7 +41,7 @@ def from_Poisson_disc(size,N_seeds,N_candidates,distance,periodic=True,seed=None
Parameters
----------
size : numpy.ndarray of shape (3)
Physical size of the periodic field.
Physical size of the seeding domain.
N_seeds : int
Number of seeds.
N_candidates : int
@ -75,18 +75,22 @@ def from_Poisson_disc(size,N_seeds,N_candidates,distance,periodic=True,seed=None
return coords
def from_geom(geom,selection=None,invert=False):
def from_geom(geom,selection=None,invert=False,average=False,periodic=True):
"""
Create seed from existing geometry description.
Parameters
----------
geom : damask.Geom
Geometry, from which the material IDs are used as seeds
Geometry, from which the material IDs are used as seeds.
selection : iterable of integers, optional
Material IDs to consider
Material IDs to consider.
invert : boolean, false
Do not consider the material IDs given in selection. Defaults to False.
average : boolean, optional
Seed corresponds to center of gravity of material ID cloud.
periodic : boolean, optional
Center of gravity with periodic boundaries.
"""
material = geom.material.reshape((-1,1),order='F')
@ -94,4 +98,16 @@ def from_geom(geom,selection=None,invert=False):
_np.isin(material,selection,invert=invert)
coords = grid_filters.cell_coord0(geom.grid,geom.size).reshape(-1,3,order='F')
return (coords[mask],material[mask])
if not average:
return (coords[mask],material[mask])
else:
materials = _np.unique(material[mask])
coords_ = _np.zeros((materials.size,3),dtype=float)
for i,mat in enumerate(materials):
pc = (2*_np.pi*coords[material[:,0]==mat,:]-geom.origin)/geom.size
coords_[i] = geom.origin + geom.size / 2 / _np.pi * (_np.pi +
_np.arctan2(-_np.average(_np.sin(pc),axis=0),
-_np.average(_np.cos(pc),axis=0))) \
if periodic else \
_np.average(coords[material[:,0]==mat,:],axis=0)
return (coords_,materials)