-
Notifications
You must be signed in to change notification settings - Fork 496
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add function for getting effective dose coefficients from ICRP-116 #1558
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Pretty simple and clean addition of the ICRP dose coefficients. As you said, these should be easy to hand off to an EnergyFunctionFilter
Thanks @paulromano!
A line comments and a couple questions.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks @paulromano! Will merge on ✔️
Pretty simple addition here based on a user request -- this PR adds a
openmc.data.dose_coefficients
function which provides effective dose coefficients from ICRP-116. The data tables were pulled directly from supplemental material distributed with the article itself. The new functionality reads in the data from those tables and provides an interface to access them. To actually use these in a tally, one would have to supply the returned energy/dose values to anEnergyFunctionFilter
.