-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Updates in RVE generation from EBSD maps
- Loading branch information
1 parent
ef7c5a5
commit 2c97a1b
Showing
12 changed files
with
392 additions
and
205 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,6 +8,7 @@ | |
from kanapy.plotting import plot_voxels_3D, plot_polygons_3D | ||
from kanapy.input_output import writeAbaqusMat, pickle2microstructure, import_voxels, \ | ||
import_stats, write_stats | ||
from kanapy.rve_stats import find_rot_axis | ||
from kanapy.util import ROOT_DIR, MAIN_DIR, MTEX_DIR, poly_scale | ||
|
||
log_level = 20 # Levels for logging: 10: DEBUG, 20: INFO, 30: WARNING, 40: ERROR | ||
|
@@ -21,6 +22,12 @@ | |
logging.error('Inconsistent installation of Kanapy package. MTEX tools will not be available.') | ||
MTEX_AVAIL = False | ||
|
||
try: | ||
from kanapy.triple_surface import create_ref_ell | ||
triple_surf = True | ||
except: | ||
triple_surf = False | ||
|
||
__author__ = 'Mahesh R.G Prasad, Abhishek Biswas, Golsa Tolooei Eshlaghi, Alexander Hartmaier' | ||
__email__ = '[email protected]' | ||
__version__ = version('kanapy') |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.