Skip to content

Commit

Permalink
renamed to surfaxe
Browse files Browse the repository at this point in the history
  • Loading branch information
brlec committed Sep 29, 2020
1 parent 78e622f commit 025e39a
Show file tree
Hide file tree
Showing 10 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion examples/analysis/analysis_example.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
"metadata": {},
"outputs": [],
"source": [
"from slabbystabby import analysis as a"
"from surfaxe import analysis as a"
]
},
{
Expand Down
2 changes: 1 addition & 1 deletion examples/convergence/convergence_example.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
"metadata": {},
"outputs": [],
"source": [
"from slabbystabby import convergence as c"
"from surfaxe import convergence as c"
]
},
{
Expand Down
2 changes: 1 addition & 1 deletion examples/generation/generation_example.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
"metadata": {},
"outputs": [],
"source": [
"from slabbystabby import generation as g"
"from surfaxe import generation as g"
]
},
{
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@

if __name__ == "__main__":
setup(
name='slabbystabby',
name='surfaxe',
version='0.1',
description='Dealing with slabs for first principles calculations of surfaces',
long_description=open(os.path.join(module_dir, 'README.md')).read(),
Expand All @@ -24,7 +24,7 @@
author='Katarina Brlec',
author_email='[email protected]',
license='MIT',
packages=['slabbystabby'],
packages=['surfaxe'],
zip_safe=False,
install_requires=['scipy', 'numpy', 'spglib', 'pymatgen','pandas'],
classifiers=[
Expand Down
Binary file removed slabbystabby/__pycache__/__init__.cpython-37.pyc
Binary file not shown.
Binary file removed slabbystabby/__pycache__/creation.cpython-37.pyc
Binary file not shown.
File renamed without changes.
2 changes: 1 addition & 1 deletion slabbystabby/analysis.py → surfaxe/analysis.py
Original file line number Diff line number Diff line change
Expand Up @@ -297,7 +297,7 @@ def simple_nn(start, elements, end=None, ox_states=None, nn_method=CrystalNN(),
elif type(ox_states) is list:
end_struc.add_oxidation_state_by_site(ox_states)
else:
end_struc.add_oxidation_state_by_guess
end_struc.add_oxidation_state_by_guess(max_sites=-1)

# Get the bonded end structure
bonded_end = nn_method.get_bonded_structure(end_struc)
Expand Down
File renamed without changes.
File renamed without changes.

0 comments on commit 025e39a

Please sign in to comment.