-
Notifications
You must be signed in to change notification settings - Fork 12
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
added guthrie Mo data #271
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
# file generated by setuptools_scm | ||
# don't change, don't track in version control | ||
TYPE_CHECKING = False | ||
if TYPE_CHECKING: | ||
from typing import Tuple, Union | ||
VERSION_TUPLE = Tuple[Union[int, str], ...] | ||
else: | ||
VERSION_TUPLE = object | ||
|
||
version: str | ||
__version__: str | ||
__version_tuple__: VERSION_TUPLE | ||
version_tuple: VERSION_TUPLE | ||
|
||
__version__ = version = '0.1.dev1028+g6c1a840.d20240109' | ||
__version_tuple__ = version_tuple = (0, 1, 'dev1028', 'g6c1a840.d20240109') |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -49,6 +49,8 @@ | |
source="frauenfelder_permeation_1968", | ||
) | ||
|
||
guthrie_p_0 = 3.8e-3 * u.ccSTP * u.cm**-1 * u.s**-1 * u.atm**-0.5 | ||
|
||
Comment on lines
+52
to
+53
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I understand this is the pre-exponential factor for deuterium's permeability in Mo (Figure 7 in the paper).
Here it would look something like: guthrie_permeability = Permeability(
pre_exp=3.8e-3 * u.ccSTP * u.cm**-1 * u.s**-1 * u.atm**-0.5,
act_energy=17.4 * u.kcal * u.g**-1, # careful here with the conversion from kcal/g-atom to kcal/mol
range=(u.Quantity(270, u.degC), u.Quantity(640, u.degC)),
note="Figure 7",
source="Guthrie1974",
) |
||
properties = [ | ||
tanabe_diffusivity, | ||
katsuta_diffusivity, | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I think you accidentally added this file to version control, please remove |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
@article{article-minimal, | ||
author = "Lamport, L[eslie] B.", | ||
title = "The Gnats and Gnus Document Preparation System", | ||
journal = "G-Animal's Journal", | ||
year = "1986" | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This file shouldn't be included in version control (see the second line in the file) please remove