Skip to content

[DOC] Add metadata on PhaseTransition and update docs #185

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

Merged
merged 2 commits into from
Sep 29, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
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
24 changes: 24 additions & 0 deletions docs/source/data.rst
Original file line number Diff line number Diff line change
Expand Up @@ -401,6 +401,30 @@ Oxidation States
| ``oxidation_state`` | Oxidation state | | stored | :cite:`enwiki:1102394064` |
+---------------------+--------------------------------------------------------------------------+------+--------------+---------------------------+

Phase Transitions
=================

+------------------------------+--------------------------------------+------+--------------+-----------------------+
| Attribute name | Description | Unit | Value origin | Citation keys |
+==============================+======================================+======+==============+=======================+
| ``allotrope`` | Allotrope name | | stored | :cite:`haynes2016crc` |
+------------------------------+--------------------------------------+------+--------------+-----------------------+
| ``atomic_number`` | Atomic number | | stored | |
+------------------------------+--------------------------------------+------+--------------+-----------------------+
| ``boiling_point`` | Boiling point | K | stored | :cite:`haynes2016crc` |
+------------------------------+--------------------------------------+------+--------------+-----------------------+
| ``critical_pressure`` | Critical pressure | MPa | stored | :cite:`haynes2016crc` |
+------------------------------+--------------------------------------+------+--------------+-----------------------+
| ``critical_temperature`` | Critical temperature | K | stored | :cite:`haynes2016crc` |
+------------------------------+--------------------------------------+------+--------------+-----------------------+
| ``melting_point`` | Melting point | K | stored | :cite:`haynes2016crc` |
+------------------------------+--------------------------------------+------+--------------+-----------------------+
| ``triple_point_pressure`` | Pressure in kPa of the triple point | kPa | stored | :cite:`haynes2016crc` |
+------------------------------+--------------------------------------+------+--------------+-----------------------+
| ``triple_point_temperature`` | Temperature in K of the triple point | K | stored | :cite:`haynes2016crc` |
+------------------------------+--------------------------------------+------+--------------+-----------------------+


Screening Constants
===================

Expand Down
Binary file modified mendeleev/elements.db
Binary file not shown.
27 changes: 27 additions & 0 deletions notebooks/render-docs-from-metadata.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -202,6 +202,33 @@
"table = render_doc_table(\"OxidationState\")\n",
"print(table)"
]
},
{
"cell_type": "markdown",
"id": "3408b575-0b11-4320-8847-8a44d09fc033",
"metadata": {},
"source": [
"## Phase Transition"
]
},
{
"cell_type": "code",
"execution_count": null,
"id": "ad55bb92-9a44-4130-9d5c-5ec53fea519e",
"metadata": {},
"outputs": [],
"source": [
"table = render_doc_table(\"PhaseTransition\")\n",
"print(table)"
]
},
{
"cell_type": "code",
"execution_count": null,
"id": "c33e17c6-0814-42ca-a33e-cbb64bd9db3c",
"metadata": {},
"outputs": [],
"source": []
}
],
"metadata": {
Expand Down
Loading