-
Notifications
You must be signed in to change notification settings - Fork 15
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
Fixes non parsing of incar/job metainformation from vasprun #1272
Draft
ligerzero-ai
wants to merge
5
commits into
main
Choose a base branch
from
fix_vasprun_nonparse_generator_incar
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Draft
Changes from 2 commits
Commits
Show all changes
5 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Original file line number | Diff line number | Diff line change | ||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
@@ -57,6 +57,7 @@ def from_file(self, filename="vasprun.xml"): | |||||||||||||||||||||||||
""" | ||||||||||||||||||||||||||
if not (os.path.isfile(filename)): | ||||||||||||||||||||||||||
raise AssertionError() | ||||||||||||||||||||||||||
self.filename=filename | ||||||||||||||||||||||||||
try: | ||||||||||||||||||||||||||
self.parse_root_to_dict(filename) | ||||||||||||||||||||||||||
except ParseError: | ||||||||||||||||||||||||||
|
@@ -83,9 +84,7 @@ def parse_root_to_dict(self, filename): | |||||||||||||||||||||||||
d["stress_tensors"] = list() | ||||||||||||||||||||||||||
for _, leaf in ETree.iterparse(filename): | ||||||||||||||||||||||||||
if leaf.tag in ["generator", "incar"]: | ||||||||||||||||||||||||||
d[leaf.tag] = dict() | ||||||||||||||||||||||||||
for items in leaf: | ||||||||||||||||||||||||||
d[leaf.tag] = self.parse_item_to_dict(items, d[leaf.tag]) | ||||||||||||||||||||||||||
d[leaf.tag] = self._parse_INCAR_and_generator(leaf) | ||||||||||||||||||||||||||
if leaf.tag in ["kpoints"]: | ||||||||||||||||||||||||||
d[leaf.tag] = dict() | ||||||||||||||||||||||||||
self.parse_kpoints_to_dict(leaf, d[leaf.tag]) | ||||||||||||||||||||||||||
|
@@ -538,18 +537,108 @@ def parse_structure_to_dict(self, node, d): | |||||||||||||||||||||||||
|
||||||||||||||||||||||||||
if leaf.tag == "varray" and leaf.attrib["name"] == "selective": | ||||||||||||||||||||||||||
d["selective_dynamics"] = self._parse_2d_matrix(leaf, vec_type=bool) | ||||||||||||||||||||||||||
|
||||||||||||||||||||||||||
def _parse_INCAR_generator_parameters(self, val_type, val): | ||||||||||||||||||||||||||
""" | ||||||||||||||||||||||||||
Helper function to convert a Vasprun parameter into the proper type. | ||||||||||||||||||||||||||
Boolean, int and float types are converted. | ||||||||||||||||||||||||||
|
||||||||||||||||||||||||||
Args: | ||||||||||||||||||||||||||
val_type: Value type parsed from vasprun.xml. | ||||||||||||||||||||||||||
val: Actual string value parsed for vasprun.xml. | ||||||||||||||||||||||||||
""" | ||||||||||||||||||||||||||
if val_type == "logical": | ||||||||||||||||||||||||||
return val == "T" | ||||||||||||||||||||||||||
if val_type == "int": | ||||||||||||||||||||||||||
return int(val) | ||||||||||||||||||||||||||
if val_type == "string": | ||||||||||||||||||||||||||
return val.strip() | ||||||||||||||||||||||||||
return float(val) | ||||||||||||||||||||||||||
|
||||||||||||||||||||||||||
|
||||||||||||||||||||||||||
def _parse_INCAR_generator_vector_parameters(self, val_type, val, filename, param_name): | ||||||||||||||||||||||||||
""" | ||||||||||||||||||||||||||
Helper function to convert a Vasprun array-type parameter into the proper | ||||||||||||||||||||||||||
type. Boolean, int and float types are converted. | ||||||||||||||||||||||||||
|
||||||||||||||||||||||||||
Args: | ||||||||||||||||||||||||||
val_type: Value type parsed from vasprun.xml. | ||||||||||||||||||||||||||
val: Actual string value parsed for vasprun.xml. | ||||||||||||||||||||||||||
filename: Fullpath of vasprun.xml. Used for robust error handling. | ||||||||||||||||||||||||||
E.g., if vasprun.xml contains *** for some Incar parameters, | ||||||||||||||||||||||||||
the code will try to read from an INCAR file present in the same | ||||||||||||||||||||||||||
directory. | ||||||||||||||||||||||||||
param_name: Name of parameter. | ||||||||||||||||||||||||||
|
||||||||||||||||||||||||||
Returns: | ||||||||||||||||||||||||||
Parsed value. | ||||||||||||||||||||||||||
""" | ||||||||||||||||||||||||||
err = ValueError("Error in parsing vasprun.xml") | ||||||||||||||||||||||||||
if val_type == "logical": | ||||||||||||||||||||||||||
val = [i == "T" for i in val.split()] | ||||||||||||||||||||||||||
elif val_type == "int": | ||||||||||||||||||||||||||
try: | ||||||||||||||||||||||||||
val = [int(i) for i in val.split()] | ||||||||||||||||||||||||||
except ValueError: | ||||||||||||||||||||||||||
# Fix for stupid error in vasprun sometimes which displays | ||||||||||||||||||||||||||
# LDAUL/J as 2**** | ||||||||||||||||||||||||||
val = self._parse_from_incar(filename, param_name) | ||||||||||||||||||||||||||
if val is None: | ||||||||||||||||||||||||||
raise err | ||||||||||||||||||||||||||
elif val_type == "string": | ||||||||||||||||||||||||||
val = val.split() | ||||||||||||||||||||||||||
else: | ||||||||||||||||||||||||||
try: | ||||||||||||||||||||||||||
val = [float(i) for i in val.split()] | ||||||||||||||||||||||||||
except ValueError: | ||||||||||||||||||||||||||
# Fix for stupid error in vasprun sometimes which displays | ||||||||||||||||||||||||||
# MAGMOM as 2**** | ||||||||||||||||||||||||||
# val = self._parse_from_incar(filename, param_name) | ||||||||||||||||||||||||||
va | ||||||||||||||||||||||||||
Comment on lines
+596
to
+597
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Feels like there's something missing here? |
||||||||||||||||||||||||||
if val is None: | ||||||||||||||||||||||||||
raise err | ||||||||||||||||||||||||||
return val | ||||||||||||||||||||||||||
|
||||||||||||||||||||||||||
def _parse_INCAR_and_generator(self, elem): | ||||||||||||||||||||||||||
params = {} | ||||||||||||||||||||||||||
for c in elem: | ||||||||||||||||||||||||||
name = c.attrib.get("name") | ||||||||||||||||||||||||||
if c.tag not in ("i", "v"): | ||||||||||||||||||||||||||
p = self._parse_INCAR_and_generator(c) | ||||||||||||||||||||||||||
if name == "response functions": | ||||||||||||||||||||||||||
# Delete duplicate fields from "response functions", | ||||||||||||||||||||||||||
# which overrides the values in the root params. | ||||||||||||||||||||||||||
p = {k: v for k, v in p.items() if k not in params} | ||||||||||||||||||||||||||
params.update(p) | ||||||||||||||||||||||||||
else: | ||||||||||||||||||||||||||
ptype = c.attrib.get("type") | ||||||||||||||||||||||||||
val = c.text.strip() if c.text else "" | ||||||||||||||||||||||||||
try: | ||||||||||||||||||||||||||
if c.tag == "i": | ||||||||||||||||||||||||||
params[name] = self._parse_INCAR_generator_parameters(ptype, val) | ||||||||||||||||||||||||||
else: | ||||||||||||||||||||||||||
params[name] = self._parse_INCAR_generator_vector_parameters(ptype, val, self.filename, name) | ||||||||||||||||||||||||||
except Exception as exc: | ||||||||||||||||||||||||||
if name == "RANDOM_SEED": | ||||||||||||||||||||||||||
# Handles the case where RANDOM SEED > 99999, which results in ***** | ||||||||||||||||||||||||||
params[name] = None | ||||||||||||||||||||||||||
else: | ||||||||||||||||||||||||||
raise exc | ||||||||||||||||||||||||||
Comment on lines
+625
to
+630
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
Using raise inside an except block re-raises automatically. Can we also make the exception more specific? |
||||||||||||||||||||||||||
elem.clear() | ||||||||||||||||||||||||||
return params | ||||||||||||||||||||||||||
|
||||||||||||||||||||||||||
@staticmethod | ||||||||||||||||||||||||||
def parse_item_to_dict(node, d): | ||||||||||||||||||||||||||
""" | ||||||||||||||||||||||||||
Parses values from an item to a dictionary | ||||||||||||||||||||||||||
Parses an XML element with the tag 'i' into a dictionary. The method handles different | ||||||||||||||||||||||||||
data types specified in the 'type' attribute of the element (e.g., string, float, int, logical). | ||||||||||||||||||||||||||
|
||||||||||||||||||||||||||
Args: | ||||||||||||||||||||||||||
node (etree.Element instance): Node to be parsed | ||||||||||||||||||||||||||
d (dict): The dictionary to which data is to be parsed | ||||||||||||||||||||||||||
node (xml.etree.Element): An XML element with the tag 'i', containing data to be parsed. | ||||||||||||||||||||||||||
|
||||||||||||||||||||||||||
Returns: | ||||||||||||||||||||||||||
d (dictionary) | ||||||||||||||||||||||||||
dict: A dictionary with a single key-value pair. The key is the 'name' attribute of the element, | ||||||||||||||||||||||||||
and the value is the parsed data, converted to the appropriate Python data type. | ||||||||||||||||||||||||||
""" | ||||||||||||||||||||||||||
type_dict = {"string": str, "float": float, "int": int, "logical": bool} | ||||||||||||||||||||||||||
logical_dict = {"T": True, "F": False} | ||||||||||||||||||||||||||
|
@@ -562,6 +651,27 @@ def parse_item_to_dict(node, d): | |||||||||||||||||||||||||
d[node.attrib["name"]] = node.text | ||||||||||||||||||||||||||
return d | ||||||||||||||||||||||||||
|
||||||||||||||||||||||||||
def _parse_from_incar(self, param_name, val_type, val): | ||||||||||||||||||||||||||
""" | ||||||||||||||||||||||||||
Placeholder method for reading and parsing parameter values from an INCAR file. This method is intended | ||||||||||||||||||||||||||
to be used for handling special cases where values in the VASP XML file are not correctly formatted. | ||||||||||||||||||||||||||
|
||||||||||||||||||||||||||
Args: | ||||||||||||||||||||||||||
filename (str): The path to the INCAR file. | ||||||||||||||||||||||||||
param_name (str): The name of the parameter to be read. | ||||||||||||||||||||||||||
val_type (str): The expected data type of the parameter ('string', 'float', 'int', 'logical'). | ||||||||||||||||||||||||||
val (str): The original value from the XML file that needs special handling. | ||||||||||||||||||||||||||
|
||||||||||||||||||||||||||
Returns: | ||||||||||||||||||||||||||
The correct value read from the INCAR file, or None if the value cannot be determined. The return | ||||||||||||||||||||||||||
type should match the expected `val_type`. | ||||||||||||||||||||||||||
""" | ||||||||||||||||||||||||||
pass | ||||||||||||||||||||||||||
# Placeholder for special handling logic | ||||||||||||||||||||||||||
# Adapt this method based on specific handling logic for irregular values | ||||||||||||||||||||||||||
# For example, read from an INCAR file or set to a default value | ||||||||||||||||||||||||||
return None | ||||||||||||||||||||||||||
|
||||||||||||||||||||||||||
def parse_parameters(self, node, d): | ||||||||||||||||||||||||||
""" | ||||||||||||||||||||||||||
Parses parameter data from a node to a dictionary | ||||||||||||||||||||||||||
|
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This will clear up the stacktrace.
It feels a bit strange, to pre define the exception. It works and there's no down side, though.