Merge branch 'account-for-floating-point-precision-in-orientation' into 'development'

Account for floating point precision in orientation

See merge request damask/DAMASK!338
This commit is contained in:
Philip Eisenlohr 2021-02-15 23:02:13 +00:00
commit e2708d29f4
1 changed files with 2 additions and 2 deletions

View File

@ -243,7 +243,7 @@ class TestOrientation:
N = np.random.randint(10,40) N = np.random.randint(10,40)
size = np.ones(3)*np.pi**(2./3.) size = np.ones(3)*np.pi**(2./3.)
grid = grid_filters.coordinates0_node([N+1,N+1,N+1],size,-size*.5) grid = grid_filters.coordinates0_node([N+1,N+1,N+1],size,-size*.5)
evenly_distributed = Orientation.from_cubochoric(c=grid[:-2,:-2,:-2],lattice=lattice) evenly_distributed = Orientation.from_cubochoric(x=grid[:-2,:-2,:-2],lattice=lattice)
assert evenly_distributed.shape == evenly_distributed.reduced.shape assert evenly_distributed.shape == evenly_distributed.reduced.shape