We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
order
Describe the feature
The problem arises when one reads anything from a fdfSile.
fdfSile
Doing fdf.read_geometry(order="fdf") does not tell how it should fetch the other information that might be associated with the geometry.
fdf.read_geometry(order="fdf")
This could be solved using contexts, or by passing dictionary like arguments:
fdf.read_geometry(order=[..., {"read_lattice" | "lattice": ["fdf"]}]
or similar. This can get quite complicated since it isn't clear which routines are called. (track is your friend here).
track
A context manager could resolve this:
with fdf.set_order(lattice=["fdf"], geometry="TSHS", nsc=None) as fdf_context: geom = fdf_context.read_geometry(...)
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Describe the feature
The problem arises when one reads anything from a
fdfSile
.Doing
fdf.read_geometry(order="fdf")
does not tell how it should fetch the other information that might be associated with the geometry.This could be solved using contexts, or by passing dictionary like arguments:
or similar.
This can get quite complicated since it isn't clear which routines are called. (
track
is your friend here).A context manager could resolve this:
The text was updated successfully, but these errors were encountered: