-
Notifications
You must be signed in to change notification settings - Fork 98
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'develop' into Release5.0
- Loading branch information
Showing
11 changed files
with
375 additions
and
61 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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
&IntegrateSTEMNamelist | ||
! DO NOT CHANGE THIS LINE | ||
!------------------------ | ||
! IO Filenames | ||
!------------------------ | ||
! Name of the file containing diffraction data | ||
inputfilename = 'undefined', | ||
!------------------------ | ||
! Detector Parameters | ||
!------------------------ | ||
! Size of detector pixels in nm | ||
pixsize = 9000, | ||
! Inner diameter of the annular detector, if used [mm] | ||
id = 4, | ||
! Outer diamater of the annular detector, if used [mm] | ||
od = 10, | ||
! Camera length [cm] | ||
camlen = 3, | ||
!------------------------ | ||
! Operating Parameters | ||
!------------------------ | ||
! Operating mode | ||
! 1 = single reflection, 2 = annular detector | ||
! default is annular detector | ||
mode = 2, | ||
! If using a single reflection integration, specify the reflection here | ||
! Default is the through-beam 0,0,0 | ||
ref = 0,0,0, | ||
! Generate a CBED pattern, only works if mode = 2 | ||
CBED = .False., | ||
/ |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,37 +1,52 @@ | ||
&MDSTEMlist | ||
! do not change the first line in this file ! | ||
! | ||
! Note: All parameter values are default values for the program | ||
! | ||
!-------------- | ||
! the name of the crystal input file MUST be specified (full pathname) | ||
xtalname = 'xtalfile', | ||
! DDD or MD input file MUST be specified | ||
inputfilename = 'input' | ||
! output will be stored here (full pathname) | ||
datafile = 'output.h5', | ||
! scale factor for DDD data - this MUST be specified based on scaling of your displacement grid (sx,sy,sz,dx,dy,dz) | ||
scalefactor = sx,sy,sz,dx,dy,dz, | ||
! size of the CBED disk in pixels | ||
discsize = 10, | ||
! orientation of crystal; euler angle representation in degrees | ||
eu = 0.0,0.0,0.0, | ||
! orientation of crystal; euler angle representation in degrees | ||
eulerconvention = 'bsd', | ||
! ph1,ph2,phi3 | ||
phi1 = 0.0, | ||
phi2 = 0.0, | ||
phi3 = 0.0, | ||
! minimum d-spacing to be taken into account [nm] | ||
dmin = 0.06, | ||
! microscope accelerating voltage [kV] | ||
&MDSTEMlist | ||
! DO NOT CHANGE THIS LINE | ||
!------------------------ | ||
! IO Filenames | ||
!------------------------ | ||
! Name of the crystal structure file | ||
xtalname = 'undefined', | ||
! Name of the file containing displace vectors | ||
inputfilename = 'undefined', | ||
! Output file containing diffracted intensities | ||
datafile = 'undefined', | ||
!------------------------ | ||
! Diffraction Parameters | ||
!------------------------ | ||
! Accelerating Voltage, in kV | ||
voltage = 200.0, | ||
! beam convergence angle | ||
convergence = 4.0, | ||
! platform id for opencl | ||
! Smallest d-spacing to take into account [nm] | ||
dmin = 0.08, | ||
! Convergence angle of the beam cone, in mRad | ||
convergence = 3.0, | ||
! Number of rings in the beam cone discretization | ||
discsize = 81, | ||
!------------------------ | ||
! Crystal Parameters | ||
!------------------------ | ||
! Crystal orientation Euler angles | ||
eu = 0.0, 0.0, 0.0, | ||
! Nearest zone axis in this orientation | ||
ZAindex = 0,0,1, | ||
! Laue shift values in the basis vectors of the CBED pattern | ||
lauec = 0,0, | ||
! Distance between points in the Z direction in the displacement field, in nm | ||
thk = 4.0, | ||
! Number of subslices to use for each displacement point. E | ||
subslice = 20, | ||
!------------------------ | ||
! OpenCL Parameters | ||
!------------------------ | ||
! Device ID for GPU | ||
devid = 1, | ||
! device id for opencl | ||
platid = 1 | ||
! this last line must be present! | ||
/ | ||
|
||
! Platform ID for GPU | ||
platid = 1, | ||
!------------------------ | ||
! Parameters for DDD simulations | ||
!------------------------ | ||
! Is the data presorted into a 4D array in an h5 file? | ||
presorted = .True., | ||
! Scaling factor for input data that is not presorted, (x,y,z,dx,dy,dz) | ||
! If you used a python script similar to the one in the ***** folder, to | ||
! format your data as an h5 file, this is not used | ||
scalefactor = 1,1,1,1,1,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.