hpcflow.sdk.core.element.ElementGroup#
- class hpcflow.sdk.core.element.ElementGroup(name, where=None, group_by_distinct=None)#
Bases:
JSONLike
A grouping rule for element iterations.
- Parameters:
name (str) – The name of the grouping rule.
where (hpcflow.sdk.core.element.ElementFilter | None) – A filtering rule to select which iterations to use in the group.
group_by_distinct (hpcflow.app.ParameterPath | None) – If specified, the name of the property to group iterations by.
Methods
Make an instance of this class from JSON (or YAML) data.
Serialize this object as a dictionary.
Serialize this object as an object structure that can be trivially converted to JSON.
Attributes
If specified, the name of the property to group iterations by.
A filtering rule to select which iterations to use in the group.
The name of the grouping rule.
- classmethod from_json_like(json_like, shared_data=None)#
Make an instance of this class from JSON (or YAML) data.
- Parameters:
json_like (Union[Dict, List]) – The data to deserialise.
shared_data (Optional[Dict[str, ObjectList]]) – Shared context data.
- Return type:
The deserialised object.
- group_by_distinct: ParameterPath | None = None#
If specified, the name of the property to group iterations by.
- to_dict()#
Serialize this object as a dictionary.
- to_json_like(dct=None, shared_data=None, exclude=None, path=None)#
Serialize this object as an object structure that can be trivially converted to JSON. Note that YAML can also be produced from the result of this method; it just requires a different final serialization step.
- where: ElementFilter | None = None#
A filtering rule to select which iterations to use in the group.