-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
f45adc5
commit 7db0dd0
Showing
9 changed files
with
2,113 additions
and
60 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 |
---|---|---|
@@ -0,0 +1,38 @@ | ||
&HREBSDDICdata | ||
!################################################################### | ||
! EBSD Pattern Parameters will be read from an EMDI output file | ||
!################################################################### | ||
! name of the dot product file (.h5) path relative to EMdatapathname | ||
DIfile = 'undefined', | ||
! output HDF5 file; path relative to EMdatapathname | ||
datafile = 'undefined', | ||
! relative path to the namelist file for EMppEBSD program | ||
ppEBSDnml = 'undefined' | ||
! coordinates of the reference pattern to be used (0-based coordinates) | ||
patx = 0, | ||
paty = 0, | ||
! width of the exclusion zone surrounding the sub-region | ||
nbx = 0, | ||
nby = 0, | ||
! number of threads (default = 1) | ||
nthreads = 1, | ||
! | ||
! name of experimental pattern file; path relative to EMdatapathname | ||
! for this program, this should be a preprocessed data file (EMppEBSD output) | ||
patternfile = 'undefined', | ||
|
||
!################################################################### | ||
! Stiffness tensor parameters (unit:GPa) | ||
!################################################################### | ||
! type of crystal (cubic: 'cub' or hcp: 'hex') | ||
crystal= 'cub', | ||
|
||
! cubic | ||
C11 = 276.0, | ||
C12 = 159.0, | ||
C44 = 132.0, | ||
|
||
! additional terms for HCP | ||
C13 = 0.0 | ||
C33 = 0.0 | ||
/ |
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 |
---|---|---|
@@ -0,0 +1,51 @@ | ||
&ppEBSDdata | ||
! The line above must not be changed | ||
! | ||
! The values below are the default values for this program | ||
! | ||
! width of data set in pattern input file | ||
ipf_wd = 100, | ||
! height of data set in pattern input file | ||
ipf_ht = 100, | ||
! define the region of interest as x0 y0 w h; leave all at 0 for full field of view | ||
! region of interest has the point (x0,y0) as its upper left corner and is w x h patterns | ||
ROI = 0 0 0 0, | ||
! to use a custom mask, enter the mask filename here; leave undefined for standard mask option | ||
maskfile = 'undefined', | ||
! mask or not | ||
maskpattern = 'n', | ||
! mask radius (in pixels, AFTER application of the binning operation) | ||
maskradius = 240, | ||
! hi pass filter w parameter; 0.05 is a reasonable value | ||
hipassw = 0.05, | ||
! number of regions for adaptive histogram equalization | ||
nregions = 10, | ||
! pattern dimensions (actual) | ||
numsx = 640, | ||
numsy = 480, | ||
! | ||
!################################################################### | ||
! INPUT FILE PARAMETERS: COMMON TO 'STATIC' AND 'DYNAMIC' | ||
!################################################################### | ||
! | ||
! name of datafile where the patterns are stored; path relative to EMdatapathname | ||
exptfile = 'undefined', | ||
! input file type parameter: Binary, EMEBSD, EMEBSD32i, EMEBSD32f, TSLHDF, TSLup2, | ||
! OxfordHDF, OxfordBinary, BrukerHDF, NORDIF | ||
inputtype = 'Binary', | ||
! here we enter the HDF group names and data set names as individual strings (up to 10) | ||
! enter the full path of a data set in individual strings for each group, in the correct order, | ||
! and with the data set name as the last name; leave the remaining strings empty (they should all | ||
! be empty for the Binary and TSLup2 formats) | ||
HDFstrings = '' '' '' '' '' '' '' '' '' '', | ||
! | ||
!################################################################### | ||
! OTHER FILE PARAMETERS: COMMON TO 'STATIC' AND 'DYNAMIC' | ||
!################################################################### | ||
! | ||
! temporary data storage file name ; path will be relative to EMdatapathname | ||
tmpfile = 'EMEBSD_pp.data', | ||
! | ||
! number of threads for parallel pre-processing (0 to use all available) | ||
nthreads = 1, | ||
/ |
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.