-
Notifications
You must be signed in to change notification settings - Fork 43
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[ENH] Add Robles-Bartolotti and Gunnarsson-Lundqvist electronegativit…
…ies (#208) * fetch new electronegativities * add electronegativity scales * update data docs * update readme * update electronegativity docs page * update electronegativity plotting function * fix img file name
- Loading branch information
Showing
11 changed files
with
327 additions
and
222 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
29 changes: 29 additions & 0 deletions
29
alembic/versions/55a636dde7bf_add_gl_and_rb_electronegativities.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
"""add GL and RB electronegativities | ||
Revision ID: 55a636dde7bf | ||
Revises: db2973cd13af | ||
Create Date: 2024-11-10 21:39:28.836892 | ||
""" | ||
|
||
# revision identifiers, used by Alembic. | ||
revision = '55a636dde7bf' | ||
down_revision = 'db2973cd13af' | ||
branch_labels = None | ||
depends_on = None | ||
|
||
from alembic import op | ||
import sqlalchemy as sa | ||
|
||
|
||
def upgrade(): | ||
|
||
op.add_column("elements", sa.Column("en_gunnarsson_lundqvist", sa.Float)) | ||
op.add_column("elements", sa.Column("en_robles_bartolotti", sa.Float)) | ||
|
||
|
||
def downgrade(): | ||
|
||
with op.batch_alter_table("elements") as batch_op: | ||
batch_op.drop_column("en_gunnarsson_lundqvist") | ||
batch_op.drop_column("en_robles_bartolotti") |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters