-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #649 from HEXRD/absorption-correction
Absorption correction
- Loading branch information
Showing
16 changed files
with
1,142 additions
and
15 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,3 @@ | ||
coverage: | ||
status: | ||
patch: 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 |
---|---|---|
@@ -0,0 +1,64 @@ | ||
from hexrd.constants import DENSITY, DENSITY_COMPOUNDS | ||
|
||
|
||
# default filter and coating materials | ||
class FILTER_DEFAULTS: | ||
TARDIS = { | ||
'material': 'Ge', | ||
'density' : DENSITY['Ge'], | ||
'thickness' : 10 # microns | ||
} | ||
PXRDIP = { | ||
'material': 'Cu', | ||
'density' : DENSITY['Cu'], | ||
'thickness' : 10 # microns | ||
} | ||
|
||
COATING_DEFAULT = { | ||
'material': 'C10H8O4', | ||
'density': DENSITY_COMPOUNDS['C10H8O4'], | ||
'thickness': 9 # microns | ||
} | ||
|
||
PHOSPHOR_DEFAULT = { | ||
'material': 'Ba2263F2263Br1923I339C741H1730N247O494', | ||
'density': DENSITY_COMPOUNDS['Ba2263F2263Br1923I339C741H1730N247O494'], # g/cc | ||
'thickness': 115, # microns | ||
'readout_length': 222, #microns | ||
'pre_U0': 0.695 | ||
} | ||
|
||
|
||
class PHYSICS_PACKAGE_DEFAULTS: | ||
# Default physics package for dynamic compression | ||
HED = { | ||
'sample_material': 'Fe', | ||
'sample_density': DENSITY['Fe'], | ||
'sample_thickness': 15, # in microns | ||
'window_material': 'LiF', | ||
'window_density': DENSITY_COMPOUNDS['LiF'], | ||
'window_thickness': 150, # in microns | ||
} | ||
# # Template for HEDM type physics package | ||
# HEDM = { | ||
# 'sample_material': 'Fe', | ||
# 'sample_density': DENSITY['Fe'], | ||
# 'sample_thickness': 1000, # in microns | ||
# 'sample_geometry': 'cylinder' | ||
# } | ||
|
||
|
||
# Default pinhole area correction parameters | ||
class PINHOLE_DEFAULTS: | ||
TARDIS = { | ||
'pinhole_material' : 'Ta', | ||
'pinhole_diameter' : 400, # in microns | ||
'pinhole_thickness' : 100, # in microns | ||
'pinhole_density' : 16.65, # g/cc | ||
} | ||
PXRDIP = { | ||
'pinhole_material' : 'Ta', | ||
'pinhole_diameter' : 130, # in microns | ||
'pinhole_thickness' : 70, # in microns | ||
'pinhole_density' : 16.65, # g/cc | ||
} |
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.