Skip to content
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

Graphene and Graphite diffusivities by Petucci 2013 #285

Merged
merged 3 commits into from
Jun 6, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
73 changes: 72 additions & 1 deletion h_transport_materials/property_database/carbon.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,78 @@
isotope="H",
)

properties = [causey_diffusivity, atsumi_diffusivity, atsumi_solubility]
data_T_petucci_graphite = [
90.0,
100.0,
110.0,
125.0,
150.0,
175.0,
200.0,
250.0,
300.0,
350.0,
400.0,
450.0,
500.0,
550.0,
600.0,
650.0,
700.0,
] * u.K
data_y_petucci_graphite = (
[
2.16,
2.97,
3.16,
3.56,
4.08,
6.10,
10.95,
16.96,
25.76,
33.61,
38.41,
43.77,
60.75,
69.45,
82.01,
86.16,
89.95,
]
* u.angstrom**2
* u.ps**-1
)

petucci_diffusivity_graphite = Diffusivity(
data_T=data_T_petucci_graphite,
data_y=data_y_petucci_graphite,
source="petucci_diffusion_2013",
isotope="H",
note="graphite MD data from table III",
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I would change the note as such "H2 diffusion in graphite calculated by molecular dynamics".

Copy link
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Done

)


data_T_petucci_graphene = [40.0, 50.0, 60.0, 70.0, 80.0, 90.0, 100.0] * u.K
data_y_petucci_graphene = (
[175.71, 385.92, 490.17, 656.99, 789.03, 849.91, 1082.79] * u.angstrom**2 * u.ps**-1
)
petucci_diffusivity_graphene = Diffusivity(
data_T=data_T_petucci_graphene,
data_y=data_y_petucci_graphene,
source="petucci_diffusion_2013",
isotope="H",
note="graphene MD data from table III",
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I would change the note as such "H2 diffusion on graphene calculated by molecular dynamics".

Copy link
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Done

)


properties = [
causey_diffusivity,
atsumi_diffusivity,
atsumi_solubility,
petucci_diffusivity_graphite,
petucci_diffusivity_graphene,
]

for prop in properties:
prop.material = htm.CARBON
Expand Down
16 changes: 16 additions & 0 deletions h_transport_materials/references.bib
Original file line number Diff line number Diff line change
Expand Up @@ -2659,3 +2659,19 @@ @article{shimada_tritium_2019
pages = {1988--1992},
file = {ScienceDirect Snapshot:C\:\\Users\\remidm\\Zotero\\storage\\K6L4T4HI\\S0920379619304041.html:text/html},
}

@article{petucci_diffusion_2013,
title = {Diffusion, adsorption, and desorption of molecular hydrogen on graphene and in graphite},
volume = {139},
issn = {0021-9606},
url = {https://doi.org/10.1063/1.4813919},
doi = {10.1063/1.4813919},
abstract = {The diffusion of molecular hydrogen (H2) on a layer of graphene and in the interlayer space between the layers of graphite is studied using molecular dynamics computer simulations. The interatomic interactions were modeled by an Adaptive Intermolecular Reactive Empirical Bond Order (AIREBO) potential. Molecular statics calculations of H2 on graphene indicate binding energies ranging from 41 meV to 54 meV and migration barriers ranging from 3 meV to 12 meV. The potential energy surface of an H2 molecule on graphene, with the full relaxations of molecular hydrogen and carbon atoms is calculated. Barriers for the formation of H2 through the Langmuir-Hinshelwood mechanism are calculated. Molecular dynamics calculations of mean square displacements and average surface lifetimes of H2 on graphene at various temperatures indicate a diffusion barrier of 9.8 meV and a desorption barrier of 28.7 meV. Similar calculations for the diffusion of H2 in the interlayer space between the graphite sheets indicate high and low temperature regimes for the diffusion with barriers of 51.2 meV and 11.5 meV. Our results are compared with those of first principles.},
number = {4},
urldate = {2024-05-31},
journal = {The Journal of Chemical Physics},
author = {Petucci, Justin and LeBlond, Carl and Karimi, Majid and Vidali, Gianfranco},
month = jul,
year = {2013},
pages = {044706},
}
Loading