-
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.
* dead time correction and normalization * Serpent output mass normalization * Sepernt mass normalization SI correction * Version up * Version up * test Serpent mass correction in SI correction * lines del * less significan digits
- Loading branch information
Showing
6 changed files
with
77 additions
and
27 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 |
---|---|---|
|
@@ -8,4 +8,6 @@ | |
|
||
from .comparisons import * | ||
|
||
__version__ = '0.0.7.2' | ||
from .constants import * | ||
|
||
__version__ = '0.0.8' |
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