Skip to content

Commit

Permalink
added Okana properties
Browse files Browse the repository at this point in the history
  • Loading branch information
RemDelaporteMathurin committed Sep 17, 2024
1 parent b28e41d commit 27060c7
Show file tree
Hide file tree
Showing 3 changed files with 58 additions and 16 deletions.
5 changes: 4 additions & 1 deletion h_transport_materials/material.py
Original file line number Diff line number Diff line change
Expand Up @@ -113,9 +113,11 @@ class MoltenSalt(Material):
class FeCrAl(Steel):
family = "fecral"


class PalladiumAlloy(Alloy):
family = "palladium alloy"


TUNGSTEN = Tungsten()
BERYLLIUM = Beryllium()
CARBON = Carbon()
Expand Down Expand Up @@ -165,4 +167,5 @@ class PalladiumAlloy(Alloy):

TZM = Alloy("tzm")

PD52CU = PalladiumAlloy("pd52cu")
PD60CU40 = PalladiumAlloy("60pd40cu")
PD52CU = PalladiumAlloy("pd52cu")
53 changes: 38 additions & 15 deletions h_transport_materials/property_database/palladium_copper.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,19 +2,22 @@
from h_transport_materials import (
Permeability,
Diffusivity,
)
)
import numpy as np

u = htm.ureg

li_data_T = np.array(
[
350,
375,
400,
425,
]
) * u.degC
li_data_T = (
np.array(
[
350,
375,
400,
425,
]
)
* u.degC
)

li_data_y = (
np.array(
Expand All @@ -25,9 +28,9 @@
1.60e-8,
]
)
* u.mol
* u.m**-1
* u.Pa**-0.5
* u.mol
* u.m**-1
* u.Pa**-0.5
* u.s**-1
)

Expand All @@ -36,7 +39,8 @@
data_y=li_data_y,
source="li_low_2023",
isotope="H",
note="SI Table 1 (supporting information)"
note="SI Table 1 (supporting information)",
material=htm.PD52CU,
)

piper_diffusivity_h = Diffusivity(
Expand All @@ -46,14 +50,33 @@
isotope="H",
source="piper_diffusion_2004",
note="Equation 6 - this Arrhenius fit holds for when the alloy is in the beta phase for 52.5 percent copper. These range values were found outside of the paper.",
material=htm.PD52CU,
)

onaka_diffusivity = Diffusivity(
D_0=2.9e-8 * u.m**2 * u.s**-1,
E_D=0.048 * u.eV * u.particle**-1,
isotope="D",
range=(u.Quantity(350, u.K), u.Quantity(600, u.K)),
source="onaka_characteristic_2016",
material=htm.PD60CU40,
)

onaka_recombination = htm.RecombinationCoeff(
pre_exp=1.43e-26 * u.m**4 * u.s**-1 * u.particle**-1,
act_energy=0.40 * u.eV * u.particle**-1,
isotope="D",
range=(u.Quantity(350, u.K), u.Quantity(600, u.K)),
source="onaka_characteristic_2016",
material=htm.PD60CU40,
)

properties = [
li_permeability_h,
piper_diffusivity_h,
onaka_recombination,
onaka_diffusivity,
]

for prop in properties:
prop.material = htm.PD52CU

htm.database += properties
16 changes: 16 additions & 0 deletions h_transport_materials/references.bib
Original file line number Diff line number Diff line change
Expand Up @@ -2708,6 +2708,22 @@ @article{shirasu_thermodynamic_1993
pages = {218--222},
}
@article{onaka_characteristic_2016,
title = {Characteristic of a {pdCu} membrane as atomic hydrogen probe for {QUEST}},
volume = {9},
issn = {2352-1791},
url = {https://www.sciencedirect.com/science/article/pii/S235217911530048X},
doi = {10.1016/j.nme.2016.09.001},
abstract = {A permeation probe is a useful device for detecting the atomic hydrogen flux to plasma-facing walls. Recently, we developed a new type of probe using 60Pd-40Cu alloy (PdCu) as the permeation material. The deuterium behaviors in PdCu samples were investigated using nuclear reaction analysis (NRA) and permeation observations, and the diffusion coefficient and recombination coefficients were determined from these observations. It was found that the sensitivity of a 0.02-mm-thick probe was as high as 0.5 below 473K and was independent of the incident flux. The response time at 473K was 0.41s and 1.3s under an incident flux of 1020m−2s−1 and 1019m−2s−1, respectively. Thus, we concluded that the new PdCu probe can effectively detect the incident atomic hydrogen with high sensitivity and a suitable response time.},
urldate = {2024-09-17},
journal = {Nuclear Materials and Energy},
author = {Onaka, Masayuki and Takagi, Ikuji and Kobayashi, Taishi and Sasaki, Takayuki and Kuzmin, Arseniy and Zushi, Hideki},
month = dec,
year = {2016},
keywords = {Diffusion, Hydrogen, Nuclear reaction analysis, Palladium alloy, Permeation, Plasma-wall interaction},
pages = {104--108},
}
@article{fuerst_hastelloyn_2024,
title = {Hydrogen and deuterium permeation in Hastelloy N},
journal = {Journal of Nuclear Materials},
Expand Down

0 comments on commit 27060c7

Please sign in to comment.