2020-09-19 16:31:19 +05:30
|
|
|
import os
|
|
|
|
import pytest
|
2020-10-29 12:12:41 +05:30
|
|
|
import numpy as np
|
2020-09-19 16:31:19 +05:30
|
|
|
|
2020-09-30 11:23:25 +05:30
|
|
|
from damask import ConfigMaterial
|
2020-10-29 12:12:41 +05:30
|
|
|
from damask import Table
|
2021-02-23 09:14:12 +05:30
|
|
|
from damask import Rotation
|
2021-03-20 17:21:41 +05:30
|
|
|
from damask import Grid
|
2020-09-19 16:31:19 +05:30
|
|
|
|
|
|
|
@pytest.fixture
|
2020-11-30 01:20:41 +05:30
|
|
|
def ref_path(ref_path_base):
|
2020-09-19 16:31:19 +05:30
|
|
|
"""Directory containing reference results."""
|
2020-11-30 01:20:41 +05:30
|
|
|
return ref_path_base/'ConfigMaterial'
|
2020-09-19 16:31:19 +05:30
|
|
|
|
|
|
|
|
2020-09-30 12:19:55 +05:30
|
|
|
class TestConfigMaterial:
|
|
|
|
|
2020-09-19 16:31:19 +05:30
|
|
|
@pytest.mark.parametrize('fname',[None,'test.yaml'])
|
2020-11-30 01:20:41 +05:30
|
|
|
def test_load_save(self,ref_path,tmp_path,fname):
|
|
|
|
reference = ConfigMaterial.load(ref_path/'material.yaml')
|
2020-09-19 16:31:19 +05:30
|
|
|
os.chdir(tmp_path)
|
|
|
|
if fname is None:
|
|
|
|
reference.save()
|
2020-09-30 11:23:25 +05:30
|
|
|
new = ConfigMaterial.load('material.yaml')
|
2020-09-19 16:31:19 +05:30
|
|
|
else:
|
|
|
|
reference.save(fname)
|
2020-09-30 11:23:25 +05:30
|
|
|
new = ConfigMaterial.load(fname)
|
2020-09-19 16:31:19 +05:30
|
|
|
assert reference == new
|
|
|
|
|
2020-11-30 01:20:41 +05:30
|
|
|
def test_valid_complete(self,ref_path):
|
|
|
|
material_config = ConfigMaterial.load(ref_path/'material.yaml')
|
2020-09-19 16:31:19 +05:30
|
|
|
assert material_config.is_valid and material_config.is_complete
|
|
|
|
|
2020-11-30 01:20:41 +05:30
|
|
|
def test_invalid_lattice(self,ref_path):
|
|
|
|
material_config = ConfigMaterial.load(ref_path/'material.yaml')
|
2020-09-19 16:31:19 +05:30
|
|
|
material_config['phase']['Aluminum']['lattice']='fxc'
|
|
|
|
assert not material_config.is_valid
|
2020-09-30 12:19:55 +05:30
|
|
|
|
2020-11-30 01:20:41 +05:30
|
|
|
def test_invalid_orientation(self,ref_path):
|
|
|
|
material_config = ConfigMaterial.load(ref_path/'material.yaml')
|
2020-10-02 21:19:52 +05:30
|
|
|
material_config['material'][0]['constituents'][0]['O']=[0,0,0,0]
|
2020-09-19 16:31:19 +05:30
|
|
|
assert not material_config.is_valid
|
2020-09-30 12:19:55 +05:30
|
|
|
|
2020-11-30 01:20:41 +05:30
|
|
|
def test_invalid_fraction(self,ref_path):
|
|
|
|
material_config = ConfigMaterial.load(ref_path/'material.yaml')
|
2021-02-04 18:16:01 +05:30
|
|
|
material_config['material'][0]['constituents'][0]['v']=.9
|
2020-09-19 16:31:19 +05:30
|
|
|
assert not material_config.is_valid
|
|
|
|
|
2020-10-02 21:19:52 +05:30
|
|
|
@pytest.mark.parametrize('item',['homogenization','phase','material'])
|
2020-11-30 01:20:41 +05:30
|
|
|
def test_incomplete_missing(self,ref_path,item):
|
|
|
|
material_config = ConfigMaterial.load(ref_path/'material.yaml')
|
2020-09-19 16:31:19 +05:30
|
|
|
del material_config[item]
|
|
|
|
assert not material_config.is_complete
|
2020-09-30 12:19:55 +05:30
|
|
|
|
2020-10-02 21:19:52 +05:30
|
|
|
@pytest.mark.parametrize('item',['O','phase'])
|
2020-11-30 01:20:41 +05:30
|
|
|
def test_incomplete_material_constituent(self,ref_path,item):
|
|
|
|
material_config = ConfigMaterial.load(ref_path/'material.yaml')
|
2020-10-02 21:19:52 +05:30
|
|
|
del material_config['material'][0]['constituents'][0][item]
|
2020-09-30 12:19:55 +05:30
|
|
|
assert not material_config.is_complete
|
|
|
|
|
2020-11-30 01:20:41 +05:30
|
|
|
def test_incomplete_material_homogenization(self,ref_path):
|
|
|
|
material_config = ConfigMaterial.load(ref_path/'material.yaml')
|
2020-10-02 21:19:52 +05:30
|
|
|
del material_config['material'][0]['homogenization']
|
2020-09-30 12:19:55 +05:30
|
|
|
assert not material_config.is_complete
|
|
|
|
|
2020-11-30 01:20:41 +05:30
|
|
|
def test_incomplete_homogenization_N_constituents(self,ref_path):
|
|
|
|
material_config = ConfigMaterial.load(ref_path/'material.yaml')
|
2020-11-14 21:43:38 +05:30
|
|
|
for h in material_config['homogenization'].keys():
|
|
|
|
del material_config['homogenization'][h]['N_constituents']
|
|
|
|
assert not material_config.is_complete
|
|
|
|
|
2020-11-30 01:20:41 +05:30
|
|
|
def test_incomplete_phase_lattice(self,ref_path):
|
|
|
|
material_config = ConfigMaterial.load(ref_path/'material.yaml')
|
2020-09-30 12:19:55 +05:30
|
|
|
del material_config['phase']['Aluminum']['lattice']
|
|
|
|
assert not material_config.is_complete
|
|
|
|
|
2020-11-30 01:20:41 +05:30
|
|
|
def test_incomplete_wrong_phase(self,ref_path):
|
|
|
|
material_config = ConfigMaterial.load(ref_path/'material.yaml')
|
2020-10-02 21:19:52 +05:30
|
|
|
new = material_config.material_rename_phase({'Steel':'FeNbC'})
|
2020-09-19 16:31:19 +05:30
|
|
|
assert not new.is_complete
|
2020-09-30 12:19:55 +05:30
|
|
|
|
2020-11-30 01:20:41 +05:30
|
|
|
def test_incomplete_wrong_homogenization(self,ref_path):
|
|
|
|
material_config = ConfigMaterial.load(ref_path/'material.yaml')
|
2020-10-02 21:19:52 +05:30
|
|
|
new = material_config.material_rename_homogenization({'Taylor':'isostrain'})
|
2020-09-19 16:31:19 +05:30
|
|
|
assert not new.is_complete
|
2020-10-29 12:12:41 +05:30
|
|
|
|
|
|
|
def test_from_table(self):
|
|
|
|
N = np.random.randint(3,10)
|
2021-04-01 00:00:07 +05:30
|
|
|
a = np.vstack((np.hstack((np.arange(N),np.arange(N)[::-1])),
|
|
|
|
np.ones(N*2),np.zeros(N*2),np.ones(N*2),np.ones(N*2),
|
|
|
|
np.ones(N*2),
|
|
|
|
)).T
|
|
|
|
t = Table(a,{'varying':1,'constant':4,'ones':1})
|
|
|
|
c = ConfigMaterial.from_table(t,**{'phase':'varying','O':'constant','homogenization':'ones'})
|
2020-10-29 12:12:41 +05:30
|
|
|
assert len(c['material']) == N
|
2022-02-14 10:24:16 +05:30
|
|
|
for i,m in enumerate(c['material']):
|
|
|
|
assert m['homogenization'] == 1 and (m['constituents'][0]['O'] == [1,0,1,1]).all()
|
|
|
|
|
|
|
|
def test_from_table_with_constant(self):
|
|
|
|
N = np.random.randint(3,10)
|
|
|
|
a = np.vstack((np.hstack((np.arange(N),np.arange(N)[::-1])),
|
|
|
|
np.ones(N*2),np.zeros(N*2),np.ones(N*2),np.ones(N*2),
|
|
|
|
np.ones(N*2),
|
|
|
|
)).T
|
|
|
|
t = Table(a,{'varying':1,'constant':4,'ones':1})
|
|
|
|
c = ConfigMaterial.from_table(t,**{'phase':'varying','O':'constant','homogenization':1})
|
|
|
|
assert len(c['material']) == N
|
2021-02-23 22:20:13 +05:30
|
|
|
for i,m in enumerate(c['material']):
|
|
|
|
assert m['homogenization'] == 1 and (m['constituents'][0]['O'] == [1,0,1,1]).all()
|
2021-02-23 09:14:12 +05:30
|
|
|
|
|
|
|
@pytest.mark.parametrize('N,n,kw',[
|
|
|
|
(1,1,{'phase':'Gold',
|
|
|
|
'O':[1,0,0,0],
|
2021-11-14 16:15:13 +05:30
|
|
|
'F_i':np.eye(3),
|
2021-02-23 09:14:12 +05:30
|
|
|
'homogenization':'SX'}),
|
|
|
|
(3,1,{'phase':'Gold',
|
|
|
|
'O':Rotation.from_random(3),
|
2021-11-14 16:15:13 +05:30
|
|
|
'F_i':np.broadcast_to(np.eye(3),(3,3,3)),
|
2021-02-23 09:14:12 +05:30
|
|
|
'homogenization':'SX'}),
|
|
|
|
(2,3,{'phase':np.broadcast_to(['a','b','c'],(2,3)),
|
|
|
|
'O':Rotation.from_random((2,3)),
|
2021-11-14 16:15:13 +05:30
|
|
|
'F_i':np.broadcast_to(np.eye(3),(2,3,3,3)),
|
2021-02-23 09:14:12 +05:30
|
|
|
'homogenization':['SX','PX']}),
|
|
|
|
])
|
|
|
|
def test_material_add(self,kw,N,n):
|
|
|
|
m = ConfigMaterial().material_add(**kw)
|
|
|
|
assert len(m['material']) == N
|
|
|
|
assert len(m['material'][0]['constituents']) == n
|
2021-03-20 17:21:41 +05:30
|
|
|
|
|
|
|
|
|
|
|
@pytest.mark.parametrize('cell_ensemble_data',[None,'CellEnsembleData'])
|
|
|
|
def test_load_DREAM3D(self,ref_path,cell_ensemble_data):
|
|
|
|
grain_c = ConfigMaterial.load_DREAM3D(ref_path/'2phase_irregularGrid.dream3d','Grain Data',
|
|
|
|
cell_ensemble_data = cell_ensemble_data)
|
|
|
|
point_c = ConfigMaterial.load_DREAM3D(ref_path/'2phase_irregularGrid.dream3d',
|
|
|
|
cell_ensemble_data = cell_ensemble_data)
|
|
|
|
|
2021-03-23 18:12:04 +05:30
|
|
|
assert point_c.is_valid and grain_c.is_valid and \
|
|
|
|
len(point_c['material'])+1 == len(grain_c['material'])
|
2021-03-20 17:21:41 +05:30
|
|
|
|
|
|
|
grain_m = Grid.load_DREAM3D(ref_path/'2phase_irregularGrid.dream3d','FeatureIds').material.flatten()
|
|
|
|
point_m = Grid.load_DREAM3D(ref_path/'2phase_irregularGrid.dream3d').material.flatten()
|
|
|
|
|
|
|
|
for i in np.unique(point_m):
|
|
|
|
j = int(grain_m[(point_m==i).nonzero()[0][0]])
|
|
|
|
assert np.allclose(point_c['material'][i]['constituents'][0]['O'],
|
|
|
|
grain_c['material'][j]['constituents'][0]['O'])
|
|
|
|
assert point_c['material'][i]['constituents'][0]['phase'] == \
|
|
|
|
grain_c['material'][j]['constituents'][0]['phase']
|
2021-03-23 18:12:04 +05:30
|
|
|
|
|
|
|
|
|
|
|
def test_load_DREAM3D_reference(self,tmp_path,ref_path,update):
|
2021-03-26 03:02:09 +05:30
|
|
|
cur = ConfigMaterial.load_DREAM3D(ref_path/'measured.dream3d')
|
2021-04-01 14:17:45 +05:30
|
|
|
ref = ConfigMaterial.load(ref_path/'measured.material.yaml')
|
2021-03-23 18:12:04 +05:30
|
|
|
if update:
|
2021-04-01 14:17:45 +05:30
|
|
|
cur.save(ref_path/'measured.material.yaml')
|
2021-03-26 03:02:09 +05:30
|
|
|
for i,m in enumerate(ref['material']):
|
2021-04-05 21:54:03 +05:30
|
|
|
assert Rotation(m['constituents'][0]['O']).isclose(Rotation(cur['material'][i]['constituents'][0]['O']))
|
2021-03-26 03:02:09 +05:30
|
|
|
assert cur.is_valid and cur['phase'] == ref['phase'] and cur['homogenization'] == ref['homogenization']
|