-
Notifications
You must be signed in to change notification settings - Fork 3
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
Showing
20 changed files
with
2,822 additions
and
21 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 |
---|---|---|
|
@@ -2,4 +2,7 @@ build | |
misc | ||
commit_msg | ||
__pycache__ | ||
|
||
*.egg-info | ||
*.swp | ||
*.json |
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
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
Binary file not shown.
Binary file not shown.
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,22 @@ | ||
#!/usr/bin/env python | ||
# -*- coding: utf-8 -*- | ||
|
||
from setuptools import setup | ||
|
||
def main(): | ||
setup( | ||
name="spentfuelgpr", | ||
version="0.1", | ||
description="Python part of the MIsoEnrichment module", | ||
author="Nuclear Verification and Disarmament Group, RWTH Aachen University", | ||
url="https://github.com/maxschalz/miso_enrichment/", | ||
license="BSD-3-Clause", | ||
packages=["spentfuelgpr"], | ||
classifiers=["License :: OSI Approved :: BSD-3-Clause License", | ||
"Programming Language :: Python :: 3"], | ||
install_requires=["numpy", "scipy"] | ||
) | ||
return | ||
|
||
if __name__=="__main__": | ||
main() |
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,24 @@ | ||
#!/usr/bin/env python3 | ||
# -*- coding: utf-8 -*- | ||
""" | ||
Calculate the composition of spent fuel based on a set of trained GPRs. | ||
This module is part of the misoenrichment module for Cyclus, see | ||
https://github.com/maxschalz/miso_enrichment/ . | ||
The module is strongly based on Antonio Figueroa's work, who kindly | ||
provided the original code. For more information, please see | ||
https://doi.org/10.1016/j.anucene.2020.108085 | ||
or https://arxiv.org/abs/2006.12921 | ||
or https://github.com/FigueroaAC/GPs-for-SpentFuel | ||
""" | ||
|
||
__author__ = "Nuclear Verification and Disarmament Group, RWTH Aachen University" | ||
__copyright__ = "Copyright 2020-2021, Nuclear Verification and Disarmament Group, RWTH Aachen University" | ||
__credits__ = ["Antonio Figueroa", "Max Schalz"] | ||
__license__ = "BSD-3-Clause" | ||
__version__ = "2.0" | ||
__maintainer__ = "Max Schalz" | ||
|
||
from .kernel import * | ||
from .predict_posterior import * |
Oops, something went wrong.