Skip to content

Commit

Permalink
Merge pull request #297 from RemDelaporteMathurin/ti-wille
Browse files Browse the repository at this point in the history
Wille 1981 Ti diffusivities
  • Loading branch information
RemDelaporteMathurin authored Oct 9, 2024
2 parents 373565a + eed1673 commit ed04baa
Show file tree
Hide file tree
Showing 2 changed files with 63 additions and 1 deletion.
51 changes: 50 additions & 1 deletion h_transport_materials/property_database/titanium.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,56 @@
source="reiter_compilation_1996",
)

properties = [reiter_diffusivity, reiter_solubility]
wille_diffusivity_1 = Diffusivity(
D_0=0.9e-2 * u.cm**2 * u.s**-1,
E_D=12400 * u.cal * u.mol**-1,
range=(873 * u.K, 1123 * u.K),
source="wille_hydrogen_1981",
isotope="H",
note=(
"Table 3-1, item a, Commercial Pure Ti, alpha phase. "
"Range is unknown and not specified in the report, "
"assuming same as for Reiter 1996. The report cites "
"another paper from 1958, but don't have access to it."
),
)

wille_diffusivity_2 = Diffusivity(
D_0=0.27e-2 * u.cm**2 * u.s**-1,
E_D=14200 * u.cal * u.mol**-1,
range=(873 * u.K, 1123 * u.K),
source="wille_hydrogen_1981",
isotope="H",
note=(
"Table 3-1, item b, Commercial Pure Ti, alpha phase. "
"Range is unknown and not specified in the report, "
"assuming same as for Reiter 1996. The report cites "
"a master thesis from Schleicher, H but don't have access to it."
),
)

wille_diffusivity_3 = Diffusivity(
D_0=0.06e-2 * u.cm**2 * u.s**-1,
E_D=14400 * u.cal * u.mol**-1,
range=(873 * u.K, 1123 * u.K),
source="wille_hydrogen_1981",
isotope="H",
note=(
"Table 3-1, item d, Commercial Pure Ti, alpha phase. "
"Range is unknown and not specified in the report, "
"assuming same as for Reiter 1996. The report cites "
"another report from Covington 1979, but don't have access to it."
),
)


properties = [
reiter_diffusivity,
reiter_solubility,
wille_diffusivity_1,
wille_diffusivity_2,
wille_diffusivity_3,
]

for prop in properties:
prop.material = htm.TITANIUM
Expand Down
13 changes: 13 additions & 0 deletions h_transport_materials/references.bib
Original file line number Diff line number Diff line change
Expand Up @@ -2753,4 +2753,17 @@ @article{causey_hydrogen_1978
year = {1978},
note = {\_eprint: https://onlinelibrary.wiley.com/doi/pdf/10.1111/j.1151-2916.1978.tb09284.x},
pages = {221--225},
}
@techreport{wille_hydrogen_1981,
title = {Hydrogen in titanium alloys},
url = {https://www.osti.gov/biblio/6420120},
abstract = {The titanium alloys that offer properties worthy of consideration for fusion reactors are Ti-6Al-4V, Ti-6Al-2Sn-4Zr-2Mo-Si (Ti-6242S) and Ti-5Al-6Sn-2Zr-1Mo-Si (Ti-5621S). The Ti-6242S and Ti-5621S are being considered because of their high creep resistance at elevated temperatures of 500/sup 0/C. Also, irradiation tests on these alloys have shown irradiation creep properties comparable to 20\% cold worked 316 stainless steel. These alloys would be susceptible to slow strain rate embrittlement if sufficient hydrogen concentrations are obtained. Concentrations greater than 250 to 500 wppm hydrogen and temperatures lower than 100 to 150/sup 0/C are approximate threshold conditions for detrimental effects on tensile properties. Indications are that at the elevated temperature - low hydrogen pressure conditions of the reactors, there would be negligible hydrogen embrittlement.},
language = {English},
number = {DOE/ET/52039-2},
institution = {McDonnell Douglas Astronautics Co., St. Louis, MO (USA)},
author = {Wille, G. W. and Davis, J. W.},
month = apr,
year = {1981},
doi = {10.2172/6420120},
}

0 comments on commit ed04baa

Please sign in to comment.