small fixes:
- numpy has multiple float variants - start renaming microstructure -> materialpoint where it does not hurt - no need for type check if comparing against set of valid directions (or I miss some corner cases)
This commit is contained in:
parent
2560f014a3
commit
71e08ea66a
|
@ -48,9 +48,9 @@ class Geom:
|
||||||
f'grid a b c: {util.srepr(self.get_grid ()," x ")}',
|
f'grid a b c: {util.srepr(self.get_grid ()," x ")}',
|
||||||
f'size x y z: {util.srepr(self.get_size ()," x ")}',
|
f'size x y z: {util.srepr(self.get_size ()," x ")}',
|
||||||
f'origin x y z: {util.srepr(self.get_origin()," ")}',
|
f'origin x y z: {util.srepr(self.get_origin()," ")}',
|
||||||
f'# microstructures: {self.N_microstructure}',
|
f'# materialpoints: {self.N_microstructure}',
|
||||||
f'max microstructure: {np.nanmax(self.microstructure)}',
|
f'max materialpoint: {np.nanmax(self.microstructure)}',
|
||||||
]+self.get_comments())
|
])
|
||||||
|
|
||||||
|
|
||||||
def __copy__(self):
|
def __copy__(self):
|
||||||
|
@ -182,7 +182,7 @@ class Geom:
|
||||||
else:
|
else:
|
||||||
self.microstructure = np.copy(microstructure)
|
self.microstructure = np.copy(microstructure)
|
||||||
|
|
||||||
if self.microstructure.dtype == float and \
|
if self.microstructure.dtype in np.sctypes['float'] and \
|
||||||
np.all(self.microstructure == self.microstructure.astype(int).astype(float)):
|
np.all(self.microstructure == self.microstructure.astype(int).astype(float)):
|
||||||
self.microstructure = self.microstructure.astype(int)
|
self.microstructure = self.microstructure.astype(int)
|
||||||
|
|
||||||
|
@ -640,9 +640,7 @@ class Geom:
|
||||||
|
|
||||||
"""
|
"""
|
||||||
valid = {'x','y','z'}
|
valid = {'x','y','z'}
|
||||||
if not all(isinstance(d, str) for d in directions):
|
if not set(directions).issubset(valid):
|
||||||
raise TypeError('Directions are not of type str.')
|
|
||||||
elif not set(directions).issubset(valid):
|
|
||||||
raise ValueError(f'Invalid direction {set(directions).difference(valid)} specified.')
|
raise ValueError(f'Invalid direction {set(directions).difference(valid)} specified.')
|
||||||
|
|
||||||
limits = [None,None]
|
limits = [None,None]
|
||||||
|
|
Loading…
Reference in New Issue