Skip to content

Commit

Permalink
Merge branch 'main' into graphene
Browse files Browse the repository at this point in the history
  • Loading branch information
RemDelaporteMathurin committed Jun 5, 2024
2 parents a660fb0 + df92eae commit 3d580b7
Show file tree
Hide file tree
Showing 2 changed files with 63 additions and 0 deletions.
49 changes: 49 additions & 0 deletions h_transport_materials/property_database/hastelloy_n.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,49 @@
source="zhang_diffusion_2020",
)

fuerst_permeability_h = Permeability(
pre_exp=5.70e-7 * u.mol * u.m**-1 * u.Pa**-0.5 * u.s**-1,
act_energy=66.2 * u.kJ * u.mol**-1,
range=(u.Quantity(500, u.degC), u.Quantity(700, u.degC)),
isotope="H",
source="fuerst_hastelloyn_2024",
)
fuerst_permeability_d = Permeability(
pre_exp=2.40e-7 * u.mol * u.m**-1 * u.Pa**-0.5 * u.s**-1,
act_energy=62.3 * u.kJ * u.mol**-1,
range=(u.Quantity(500, u.degC), u.Quantity(700, u.degC)),
isotope="D",
source="fuerst_hastelloyn_2024",
)
fuerst_diffusivity_h = Diffusivity(
D_0=2.89e-6 * u.m**2 * u.s**-1,
E_D=55.9 * u.kJ * u.mol**-1,
range=(u.Quantity(500, u.degC), u.Quantity(700, u.degC)),
isotope="H",
source="fuerst_hastelloyn_2024",
)
fuerst_diffusivity_d = Diffusivity(
D_0=1.95e-6 * u.m**2 * u.s**-1,
E_D=54.7 * u.kJ * u.mol**-1,
range=(u.Quantity(500, u.degC), u.Quantity(700, u.degC)),
isotope="D",
source="fuerst_hastelloyn_2024",
)
fuerst_solubility_h = Solubility(
S_0=1.97e-1 * u.mol * u.m**-3 * u.Pa**-0.5,
E_S=10.2 * u.kJ * u.mol**-1,
range=(u.Quantity(500, u.degC), u.Quantity(700, u.degC)),
isotope="H",
source="fuerst_hastelloyn_2024",
)
fuerst_solubility_d = Solubility(
S_0=1.23e-1 * u.mol * u.m**-3 * u.Pa**-0.5,
E_S=7.50 * u.kJ * u.mol**-1,
range=(u.Quantity(500, u.degC), u.Quantity(700, u.degC)),
isotope="D",
source="fuerst_hastelloyn_2024",
)

properties = [
webb_permeability,
zhang_permeability_h,
Expand All @@ -76,6 +119,12 @@
zhang_diffusivity_d,
zhang_solubility_h,
zhang_solubility_d,
fuerst_permeability_h,
fuerst_permeability_d,
fuerst_solubility_h,
fuerst_solubility_d,
fuerst_diffusivity_h,
fuerst_diffusivity_d,
]

for prop in properties:
Expand Down
14 changes: 14 additions & 0 deletions h_transport_materials/references.bib
Original file line number Diff line number Diff line change
Expand Up @@ -2674,4 +2674,18 @@ @article{petucci_diffusion_2013
month = jul,
year = {2013},
pages = {044706},
}
@article{fuerst_hastelloyn_2024,
title = {Hydrogen and deuterium permeation in Hastelloy N},
journal = {Journal of Nuclear Materials},
volume = {589},
pages = {154851},
year = {2024},
issn = {0022-3115},
doi = {https://doi.org/10.1016/j.jnucmat.2023.154851},
url = {https://www.sciencedirect.com/science/article/pii/S0022311523006189},
author = {Thomas F. Fuerst and Masashi Shimada and Hanns Gietl and Paul W. Humrickhouse},
keywords = {Hydrogen, Tritium, Permeation, Hastelloy N, FLiBe},
abstract = {Hastelloy N was chosen as the fluoride salt-contacting structural material for the Molten Salt Reactor Experiment due to its excellent compatibility with the fuel salt FLiBe. FLiBe is currently investigated for several advanced fusion and fission reactor concepts where tritium generation in the FLiBe is anticipated. Knowledge of hydrogen transport properties through Hastelloy N is important to understand how tritium would permeate through this material and result in an unintentional release. In this study, the hydrogen and deuterium permeability, diffusivity, and solubility were measured from 500 to 700 °C at a primary-side pressure of 10 kPa in a well-characterized sample of Hastelloy N. The prepared polycrystalline Hastelloy N had C and O impurities present on the surface. These impurities were investigated using Auger Emission Spectroscopy and Ar depth profiling. The adventitious C was removed upon the first Ar sputter cycle whereas O persisted deeper into the sample. For permeation experiments, applied deuterium pressures ranged from 13 Pa to 100 kPa and deuterium transport remained in the diffusion-limited regime (J ∝ P0.5) throughout the pressure range examined. Two methods are employed to measure the effective hydrogen and deuterium diffusivity: rise and decline. The decline method produced improved statistical model fits for calculating the effective diffusion coefficient compared to the rise method. The resultant transport properties compared well to published values for other nickel alloys.}
}

0 comments on commit 3d580b7

Please sign in to comment.