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

enabled ellipsis here and there #863

Merged
merged 5 commits into from
Dec 5, 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
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,12 @@ we hit release version 1.0.0.
sisl.geom.graphene

- added Nambu spin configuration, this is still experimental
- enabled `...` when extracting slices of MD steps in siesta output
files.
Here it is the same as `:`. But it also allows
inline arguments: `read_scf(imd=...)` where `imd=:` is not
allowed, partly fixes #835
- enabled `...` for `atoms=` arguments. Selects all atoms.

### Fixed
- `projection` arguments of several functions has been streamlined
Expand Down
5 changes: 5 additions & 0 deletions src/sisl/_core/geometry.py
Original file line number Diff line number Diff line change
Expand Up @@ -366,9 +366,12 @@
- name -> self._names[name]
- `Atom` -> self.atoms.index(atom)
- range/list/ndarray -> ndarray
- `...` -> ndarray
"""
if atoms is None:
return np.arange(self.na)
elif atoms is Ellipsis:
return np.arange(self.na)
atoms = _a.asarray(atoms)
if atoms.size == 0:
return _a.asarrayl([])
Expand Down Expand Up @@ -452,6 +455,8 @@
"""
if orbitals is None:
return np.arange(self.no)
elif orbitals is Ellipsis:
return np.arange(self.no)

Check warning on line 459 in src/sisl/_core/geometry.py

View check run for this annotation

Codecov / codecov/patch

src/sisl/_core/geometry.py#L459

Added line #L459 was not covered by tests
orbitals = _a.asarray(orbitals)
if orbitals.size == 0:
return _a.asarrayl([])
Expand Down
5 changes: 5 additions & 0 deletions src/sisl/_core/tests/test_geometry.py
Original file line number Diff line number Diff line change
Expand Up @@ -1654,6 +1654,11 @@ def test_geometry_sort_int():
assert np.all(np.diff(bi.fxyz[ix, 1] * bi.lattice.length[i]) <= atol)


def test_geometry_ellipsis():
gr = sisl_geom.graphene()
assert np.allclose(gr.axyz(...), gr.axyz(None))


def test_geometry_sort_atom():
bi = sisl_geom.bilayer().tile(2, 0).repeat(2, 1)

Expand Down
25 changes: 15 additions & 10 deletions src/sisl/io/siesta/stdout.py
Original file line number Diff line number Diff line change
Expand Up @@ -830,7 +830,7 @@
def read_scf(
self,
key: str = "scf",
iscf: Optional[int] = -1,
iscf: Optional[Union[int, Ellipsis]] = -1,
as_dataframe: bool = False,
ret_header: bool = False,
):
Expand All @@ -842,7 +842,7 @@
parse SCF information from Siesta SCF or TranSiesta SCF
iscf :
which SCF cycle should be stored. If ``-1`` only the final SCF step is stored,
for None *all* SCF cycles are returned. When `iscf` values queried are not found they
for `...`/`None` *all* SCF cycles are returned. When `iscf` values queried are not found they
will be truncated to the nearest SCF step.
as_dataframe:
whether the information should be returned as a `pandas.DataFrame`. The advantage of this
Expand All @@ -856,7 +856,9 @@
# These are the properties that are written in SIESTA scf
props = ["iscf", "Eharris", "E_KS", "FreeEng", "dDmax", "Ef", "dHmax"]

if not iscf is None:
if iscf is Ellipsis:
iscf = None

Check warning on line 860 in src/sisl/io/siesta/stdout.py

View check run for this annotation

Codecov / codecov/patch

src/sisl/io/siesta/stdout.py#L860

Added line #L860 was not covered by tests
elif iscf is not None:
if iscf == 0:
raise ValueError(
f"{self.__class__.__name__}.read_scf requires iscf argument to *not* be 0!"
Expand Down Expand Up @@ -1086,8 +1088,8 @@
def read_charge(
self,
name: Literal["voronoi", "hirshfeld", "mulliken", "mulliken:<5.2"],
iscf=Opt.ANY,
imd=Opt.ANY,
iscf: Union[Opt, int, Ellipsis] = Opt.ANY,
imd: Union[Opt, int, Ellipsis] = Opt.ANY,
key_scf: str = "scf",
as_dataframe: bool = False,
):
Expand Down Expand Up @@ -1129,15 +1131,15 @@
----------
name:
the name of the charges that you want to read
iscf: int or Opt, optional
iscf: int or Opt or `...`, optional
index (0-based) of the scf iteration you want the charges for.
If the enum specifier `Opt.ANY` or `Opt.ALL` are used, then
If the enum specifier `Opt.ANY` or `Opt.ALL`/`...` are used, then
the returned quantities depend on what is present.
If ``None/Opt.NONE`` it will not return any SCF charges.
If both `imd` and `iscf` are ``None`` then only the final charges will be returned.
imd: int or Opt, optional
index (0-based) of the md step you want the charges for.
If the enum specifier `Opt.ANY` or `Opt.ALL` are used, then
If the enum specifier `Opt.ANY` or `Opt.ALL`/`...` are used, then
the returned quantities depend on what is present.
If ``None/Opt.NONE`` it will not return any MD charges.
If both `imd` and `iscf` are ``None`` then only the final charges will be returned.
Expand Down Expand Up @@ -1570,9 +1572,9 @@
md_scf_charge = pd.concat(
[
pd.concat(
iscf, keys=pd.RangeIndex(1, len(iscf) + 1, name="iscf")
iscf_, keys=pd.RangeIndex(1, len(iscf_) + 1, name="iscf")
)
for iscf in md_scf_charge
for iscf_ in md_scf_charge
],
keys=pd.RangeIndex(1, len(md_scf_charge) + 1, name="imd"),
)
Expand Down Expand Up @@ -1607,6 +1609,9 @@
flag :
corrected flag
"""
if flag is Ellipsis:
flag = Opt.ALL

Check warning on line 1613 in src/sisl/io/siesta/stdout.py

View check run for this annotation

Codecov / codecov/patch

src/sisl/io/siesta/stdout.py#L1613

Added line #L1613 was not covered by tests

if isinstance(flag, Opt):
# correct flag depending on what `found` is
# If the values have been found we
Expand Down
8 changes: 8 additions & 0 deletions src/sisl/typing/_indices.py
Original file line number Diff line number Diff line change
Expand Up @@ -94,3 +94,11 @@
None,
]
"""Indexing orbitals via various construct methods"""

try:
from types import EllipsisType

AtomsIndex = Union[AtomsIndex, EllipsisType]
OrbitalsIndex = Union[OrbitalsIndex, EllipsisType]
except ImportError:
Dismissed Show dismissed Hide dismissed
pass
Loading