-
Notifications
You must be signed in to change notification settings - Fork 0
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
7 changed files
with
86 additions
and
38 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
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,25 @@ | ||
import pandas as pd | ||
import numpy as np | ||
|
||
from .utils import _make_df | ||
|
||
AVOGADRO = 6.02214076e23 | ||
|
||
# The isotopic mass data is from G. Audi, A. H. Wapstra Nucl. Phys A. 1993, 565, 1-65 and G. Audi, A. H. Wapstra Nucl. Phys A. 1995, | ||
# 595, 409-480. The percent natural abundance data is from the 1997 report of the IUPAC Subcommittee for Isotopic | ||
# Abundance Measurements by K.J.R. Rosman, P.D.P. Taylor Pure Appl. Chem. 1999, 71, 1593-1607. | ||
# WHEN AVAILABLE, nucleon number otherwise. | ||
ATOMIC_MASS = pd.DataFrame( | ||
{"U233": [233.0, 0.0], | ||
"U234": [234.040916, 0.0], | ||
"U235": [235.043923, 0.0], | ||
"U236": [236.0, 0.0], | ||
"U238": [238.050783, 0.0], | ||
"Np237": [237.048167, 0.0], | ||
"Pu238": [238.0, 0.0], | ||
"Pu239": [239.0521634, 0.0], | ||
"Pu240": [240.053807, 0.0], | ||
"Pu241": [241.0, 0.0], | ||
"Pu242": [242.0, 0.0], | ||
"Am241": [241.0, 0.0] | ||
}, index=['value', 'uncertainty']) |
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 |
---|---|---|
@@ -1,6 +1,6 @@ | ||
numpy==1.23.4 | ||
pandas==1.5.1 | ||
pytest==8.2.0 | ||
serpentTools==0.10.1 | ||
pytest-cov==4.0.0 | ||
xlwt==1.3.0 | ||
numpy<=1.26.4 | ||
pandas>=1.5.1 | ||
pytest>=8.2.0 | ||
serpentTools>=0.10.1 | ||
pytest-cov>=4.0.0 | ||
xlwt>=1.3.0 |
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