mirror of
https://github.com/openmc-dev/openmc.git
synced 2026-07-28 22:26:08 -04:00
Folded multiple temperatures in to each h5 data file; now im getting 50% less storage required of endf70. yay! Next I think I can get rid of some s(a,b) information, will investigate that and then on to revising openMC so it can read and use this data
This commit is contained in:
parent
fd6b22b454
commit
3b65dde0fd
5 changed files with 657 additions and 222 deletions
|
|
@ -218,3 +218,7 @@ def atomic_mass(isotope):
|
|||
isotope = isotope[:isotope.find('_')]
|
||||
|
||||
return _ATOMIC_MASS.get(isotope.lower())
|
||||
|
||||
def kT_to_K(kT):
|
||||
K = kT / 8.6173324e-11
|
||||
return K
|
||||
Loading…
Add table
Add a link
Reference in a new issue