-
Notifications
You must be signed in to change notification settings - Fork 90
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
Use ENDF/B-VII.1 MC2-3 nuclide IDs #1982
Merged
opotowsky
merged 31 commits into
terrapower:main
from
aaronjamesreynolds:add_endfb-VII.1_support
Nov 8, 2024
Merged
Changes from all commits
Commits
Show all changes
31 commits
Select commit
Hold shift + click to select a range
3fb09a6
Add ENDF/B-VII.1 isotopes
04fb9e0
Add ENDF/B-VII.1 MC2-3 ID dictionary
838015d
Declare some global variables and fix typos
1ff770e
Add tests for loading VII.0 and VII.1 MC2-3 data
67be3f2
Have byMcc3Id point to ENDF/B-VII.0 isotopes
541334b
Revert "Have byMcc3Id point to ENDF/B-VII.0 isotopes"
3adb1a9
Add getMcc3Id() for LFP
2c1860b
Assume ENDF/B-VII.1 elemental data by default
28922f2
Update tests to use isotopic vanadium
63ee9e8
Update size of expected diff vector
0c263e6
Merge branch 'main' into add_endfb-VII.1_support
f809b56
Merge branch 'main' into add_endfb-VII.1_support
9c1bda0
Merge branch 'main' into add_endfb-VII.1_support
be3baa4
Correct typos in docstrings
b1787bb
Add release notes
50e10b8
Black formatting
760cab3
Merge branch 'main' into add_endfb-VII.1_support
bb4167a
Update doc/release/0.4.rst
aaronjamesreynolds ce2f7f4
Update doc/release/0.4.rst
aaronjamesreynolds 5ff7841
Update impl and test sphinx fields
9f9c708
Fix typo in docstring
b6d238f
Format docstring
11752a6
Merge branch 'main' into add_endfb-VII.1_support
dd6cc03
Merge branch 'main' into add_endfb-VII.1_support
65a7273
Merge branch 'main' into add_endfb-VII.1_support
john-science 7729139
Merge branch 'main' into add_endfb-VII.1_support
41d554b
Merge branch 'main' into add_endfb-VII.1_support
d5e7205
Merge branch 'main' into add_endfb-VII.1_support
john-science dd703be
Merge branch 'main' into add_endfb-VII.1_support
08b30e2
Use ENDF/B-VII.0 elementals with Serpent
f7664f8
Merge branch 'main' into add_endfb-VII.1_support
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
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.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
I feel like
SERPENT
can be removed from this list since its not tested here. Additionally, doesn't this remove support ofENDF/B-VII.0
explicitly? It feels like there should be a setting for which library is being selected OR we should ensure that that changelog notes that this removes the backwards capability.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.
@john-science, any concerns with removing
SERPENT
from this list? We could also just make another conditional that hasSERPENT
default to theendf70Elementals
.Having a setting for the library was my original plan, but global nuclides complicates this. John and I have are hoping to implement such a setting once global nuclides are addressed (#473).
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.
I understand the complications of the mixed library options based on that ticket and I agree that fixing the global nuclides issue would be a reasonable resolution.
@drewejohnson originally made this setting, so I think it should be appropriate to remove at this time since there is no use for it. I am OK with keeping it as an option though and adding
endf70Elementals
on that branch or removingSERPENT
and updating the changelog.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.
Alright Jake, I added a conditional so that VII.0 elementals are used with Serpent.