diff --git a/src/kanapy/textures.py b/src/kanapy/textures.py index 85d80d16..3127efbb 100644 --- a/src/kanapy/textures.py +++ b/src/kanapy/textures.py @@ -47,7 +47,7 @@ def __init__(self, fname, matname=None, gs_min=3, vf_min=0.03, plot=True): List of dictionaries with phase specific microstructure information. name : name of phase - fill_factor : volume fraction + vf : volume fraction ngrain : number of grains in phase ori : matlab object with grain orientations cs : matlab object with crystal structure @@ -100,7 +100,7 @@ def __init__(self, fname, matname=None, gs_min=3, vf_min=0.03, plot=True): vf = phist[0][i] / npx if vf < vf_min: break - data['fill_factor'] = vf + data['vf'] = vf # Texture analysis: orientation set from the EBSD ori0 = eng.getfield(ebsd_h, 'orientations')