openmc-data 2.2.10__py3-none-any.whl → 2.2.12__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- openmc_data/_version.py +2 -2
- openmc_data/convert/convert_fendl.py +3 -3
- openmc_data/generate/generate_fendl.py +1 -1
- openmc_data/urls.py +27 -0
- {openmc_data-2.2.10.dist-info → openmc_data-2.2.12.dist-info}/METADATA +6 -6
- {openmc_data-2.2.10.dist-info → openmc_data-2.2.12.dist-info}/RECORD +10 -10
- {openmc_data-2.2.10.dist-info → openmc_data-2.2.12.dist-info}/WHEEL +1 -1
- {openmc_data-2.2.10.dist-info → openmc_data-2.2.12.dist-info}/LICENSE +0 -0
- {openmc_data-2.2.10.dist-info → openmc_data-2.2.12.dist-info}/entry_points.txt +0 -0
- {openmc_data-2.2.10.dist-info → openmc_data-2.2.12.dist-info}/top_level.txt +0 -0
openmc_data/_version.py
CHANGED
|
@@ -58,10 +58,10 @@ parser.add_argument(
|
|
|
58
58
|
parser.add_argument(
|
|
59
59
|
"-r",
|
|
60
60
|
"--release",
|
|
61
|
-
choices=["3.2b", "3.2a", "3.2", "3.1d", "3.1a", "3.1", "3.0", "2.1"],
|
|
62
|
-
default="3.
|
|
61
|
+
choices=["3.2c", "3.2b", "3.2a", "3.2", "3.1d", "3.1a", "3.1", "3.0", "2.1"],
|
|
62
|
+
default="3.2c",
|
|
63
63
|
help="The nuclear data library release version. The currently supported "
|
|
64
|
-
"options are 3.2b, 3.2a, 3.2, 3.1d, 3.1a, 3.1, 3.0, and 2.1",
|
|
64
|
+
"options are 3.2c 3.2b, 3.2a, 3.2, 3.1d, 3.1a, 3.1, 3.0, and 2.1",
|
|
65
65
|
)
|
|
66
66
|
parser.add_argument(
|
|
67
67
|
"-p",
|
|
@@ -38,7 +38,7 @@ parser.add_argument('--libver', choices=['earliest', 'latest'],
|
|
|
38
38
|
default='latest', help="Output HDF5 versioning. Use "
|
|
39
39
|
"'earliest' for backwards compatibility or 'latest' for "
|
|
40
40
|
"performance")
|
|
41
|
-
parser.add_argument('-r', '--release', choices=["3.2b", "3.2a", "3.2", "3.1d", "3.1a", "3.0"], default="3.
|
|
41
|
+
parser.add_argument('-r', '--release', choices=["3.2c", "3.2b", "3.2a", "3.2", "3.1d", "3.1a", "3.0"], default="3.2c",
|
|
42
42
|
help="The nuclear data library release version. "
|
|
43
43
|
"The options currently supported are 3.2b, 3.2a, 3.2, 3.1d, 3.1a, 3.0")
|
|
44
44
|
parser.add_argument('--cleanup', action='store_true',
|
openmc_data/urls.py
CHANGED
|
@@ -50,6 +50,33 @@ all_release_details = {
|
|
|
50
50
|
},
|
|
51
51
|
},
|
|
52
52
|
"fendl": {
|
|
53
|
+
"3.2c": {
|
|
54
|
+
"neutron": {
|
|
55
|
+
"endf": {
|
|
56
|
+
"base_url": "https://www-nds.iaea.org/fendl/data/neutron/",
|
|
57
|
+
"compressed_files": ["fendl-FENDL-3.2c-neutron-endf.zip"],
|
|
58
|
+
"endf_files": "neutron/endf/*.endf",
|
|
59
|
+
"compressed_file_size": 0,
|
|
60
|
+
"uncompressed_file_size": 0,
|
|
61
|
+
},
|
|
62
|
+
"ace": {
|
|
63
|
+
"base_url": "https://www-nds.iaea.org/fendl/data/neutron/",
|
|
64
|
+
"compressed_files": ["fendl-FENDL-3.2c-neutron-ace.zip"],
|
|
65
|
+
"ace_files": "neutron/ace/*",
|
|
66
|
+
"compressed_file_size": 0,
|
|
67
|
+
"uncompressed_file_size": 0,
|
|
68
|
+
}
|
|
69
|
+
},
|
|
70
|
+
"photon": {
|
|
71
|
+
"endf": {
|
|
72
|
+
"base_url": "https://www-nds.iaea.org/fendl/data/atom/",
|
|
73
|
+
"compressed_files": ["fendl-FENDL-3.2c-atom-endf.zip"],
|
|
74
|
+
"endf_files": "atom/endf/*.endf",
|
|
75
|
+
"compressed_file_size": 0,
|
|
76
|
+
"uncompressed_file_size": 0,
|
|
77
|
+
}
|
|
78
|
+
},
|
|
79
|
+
},
|
|
53
80
|
"3.2b": {
|
|
54
81
|
"neutron": {
|
|
55
82
|
"endf": {
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
Metadata-Version: 2.
|
|
1
|
+
Metadata-Version: 2.2
|
|
2
2
|
Name: openmc_data
|
|
3
|
-
Version: 2.2.
|
|
3
|
+
Version: 2.2.12
|
|
4
4
|
Summary: A Python package containing a collection of scripts for producing and downloading data for OpenMC
|
|
5
5
|
Author-email: Jonathan Shimwell <mail@jshimwell.com>
|
|
6
6
|
License: Copyright (c) 2019-2022 UChicago Argonne LLC and contributors
|
|
@@ -31,10 +31,10 @@ Classifier: Operating System :: OS Independent
|
|
|
31
31
|
Requires-Python: >=3.8
|
|
32
32
|
Description-Content-Type: text/markdown
|
|
33
33
|
License-File: LICENSE
|
|
34
|
-
Requires-Dist: numpy
|
|
34
|
+
Requires-Dist: numpy>=1.21.1
|
|
35
35
|
Provides-Extra: tests
|
|
36
|
-
Requires-Dist: pytest
|
|
37
|
-
Requires-Dist: requests
|
|
36
|
+
Requires-Dist: pytest; extra == "tests"
|
|
37
|
+
Requires-Dist: requests; extra == "tests"
|
|
38
38
|
|
|
39
39
|
[](https://github.com/shimwell/data/actions/workflows/test_urls.yml)
|
|
40
40
|
[](https://github.com/openmc-data-storage/openmc_data/actions/workflows/test_package.yml)
|
|
@@ -98,7 +98,7 @@ A few categories of scripts are available:
|
|
|
98
98
|
|convert_mcnp71 | ENDF/B | VII.1 | LANL |
|
|
99
99
|
|convert_endf | ENDF/B | VII.1 | NNDC |
|
|
100
100
|
|convert_lib80x | ENDF/B | VIII.0 | LANL |
|
|
101
|
-
|convert_fendl | FENDL | 3.2b<br>3.2a<br>3.2<br>3.1d<br>3.1a<br>3.1<br>3.0<br>2.1 |
|
|
101
|
+
|convert_fendl | FENDL | 3.2c<br>3.2b<br>3.2a<br>3.2<br>3.1d<br>3.1a<br>3.1<br>3.0<br>2.1 |
|
|
102
102
|
|convert_jeff32 | JEFF | 3.2 |
|
|
103
103
|
|convert_jeff33 | JEFF | 3.3 |
|
|
104
104
|
|convert_tendl | TENDL | 2015<br>2017<br>2019<br>2021 |
|
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
openmc_data/__init__.py,sha256=fOMSqMJm50askApEA9aDzgevM1QC4S-wyAh5xuLdltY,786
|
|
2
|
-
openmc_data/_version.py,sha256=
|
|
3
|
-
openmc_data/urls.py,sha256=
|
|
2
|
+
openmc_data/_version.py,sha256=t5tagAyP4PBX_5fnr47YJtRLvpFtoeqnoXKpulQQQMY,413
|
|
3
|
+
openmc_data/urls.py,sha256=_mS-1DqXB52hE3BSeDBVae5wMh5eTwGAgU7hcRkpUpg,20375
|
|
4
4
|
openmc_data/urls_chain.py,sha256=YGgGcQGq8LgbWJS8uqoB7xwtmIBY-CljAhxUBcOVivY,3774
|
|
5
5
|
openmc_data/urls_h5.py,sha256=jg6FezS4p-ltNVMzTLw6QVcOdyCzOaiCap7PqbfYFMY,1292
|
|
6
6
|
openmc_data/urls_xml.py,sha256=g08eB9uvAwz_87f1bEBkUbEESjBNcU9U59NGg7zAHso,1421
|
|
7
7
|
openmc_data/utils.py,sha256=mmYR2RNRe_GZfFU8WPyAlPIcbnOxF33W0BOI4jV0O70,7498
|
|
8
8
|
openmc_data/convert/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
9
9
|
openmc_data/convert/convert_endf.py,sha256=6pP4wgaPTrCIK4qxOIp2CacFl-tMhQ0XvjDcWoCcI18,6610
|
|
10
|
-
openmc_data/convert/convert_fendl.py,sha256=
|
|
10
|
+
openmc_data/convert/convert_fendl.py,sha256=2TFaiu83sg7GlExUmNvecOnZLcMhqhULt5R5pJQoOqo,10520
|
|
11
11
|
openmc_data/convert/convert_jeff32.py,sha256=iFWkOQ_Nsnw-aF3qJT9WuBfjqNZuMEACLhg-hhTKU6Y,8644
|
|
12
12
|
openmc_data/convert/convert_jeff33.py,sha256=CbSCBlgAzk1iALOJIYTmHRNK-z2ZbGSj7d9SNF_aFoo,6448
|
|
13
13
|
openmc_data/convert/convert_lib80x.py,sha256=ZVeMj2AW6HeP3TRUo791-gyfv0MA7JhIJn0Q9TKuPW0,3425
|
|
@@ -47,7 +47,7 @@ openmc_data/download/download_tendl.py,sha256=Ku1cHcmWXX93LT9s-Grcn-SoFHbqxw7T0z
|
|
|
47
47
|
openmc_data/generate/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
48
48
|
openmc_data/generate/generate_cendl.py,sha256=naeFyC99lLXutl6y9n4qebgMc-k2gMt9XC9kb_jL1HQ,6223
|
|
49
49
|
openmc_data/generate/generate_endf.py,sha256=PUMKt_3bhQSXCVKcY1v7Y3ECUHIOTNPX2QwOSHcHOfc,17971
|
|
50
|
-
openmc_data/generate/generate_fendl.py,sha256=
|
|
50
|
+
openmc_data/generate/generate_fendl.py,sha256=w_qA8-akrzHFo7iE4s6qPvOZLTrv7Tmd5d8oul0mRVw,4684
|
|
51
51
|
openmc_data/generate/generate_jeff33.py,sha256=nnLHR85jtrmks0O1bZxhOYNbfNRfB94ZLxZ6-pl3gM4,8698
|
|
52
52
|
openmc_data/generate/generate_jendl.py,sha256=haEIpvQPZRBD3ZXoFEps0mBNeYETGYY51Us07jIocLw,4990
|
|
53
53
|
openmc_data/other/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -56,9 +56,9 @@ openmc_data/other/convert_tendl_rand.py,sha256=F3fq4vQ0kin_FjwAhZm8HP8GzQsk-1gYf
|
|
|
56
56
|
openmc_data/other/make_compton.py,sha256=xsY4fLHWceiRA8tUBVavlZ1TbIDk5HKgikWytEqq6vE,2466
|
|
57
57
|
openmc_data/other/make_stopping_powers.py,sha256=4Qy9L6VAHm5sMLrDadWX-xS8TSeT-QTiNHDXmZIcT7I,1956
|
|
58
58
|
openmc_data/other/sample_sandy.py,sha256=uwmZk_XZ59VJOLYqp8cOCruW45qTKzlbeuBwXB6Fk1c,6184
|
|
59
|
-
openmc_data-2.2.
|
|
60
|
-
openmc_data-2.2.
|
|
61
|
-
openmc_data-2.2.
|
|
62
|
-
openmc_data-2.2.
|
|
63
|
-
openmc_data-2.2.
|
|
64
|
-
openmc_data-2.2.
|
|
59
|
+
openmc_data-2.2.12.dist-info/LICENSE,sha256=T8b4ZA1twIAqilf_sxR250dAe8AdFhM3k6hqEE0TzBs,1086
|
|
60
|
+
openmc_data-2.2.12.dist-info/METADATA,sha256=08ZaDKbT93b-CHxPSyCxuoCrynfZt7eZM3qtRbKa76E,9090
|
|
61
|
+
openmc_data-2.2.12.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
|
|
62
|
+
openmc_data-2.2.12.dist-info/entry_points.txt,sha256=H1l5rLT4viSg8fkiiv__vdcWvv8iJC8knU5Oz3gBCC4,1795
|
|
63
|
+
openmc_data-2.2.12.dist-info/top_level.txt,sha256=ORU-aSVgJUNjwtVsqnZjP4tvU3QUZZpa-XF90ZnE4MQ,12
|
|
64
|
+
openmc_data-2.2.12.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|