Skip to content
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
16 changes: 8 additions & 8 deletions doc/source/_static/dpf_operators.html

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ class accumulate_level_over_label_fc(Operator):
----------
fields_container: FieldsContainer
label: str, optional
Label of the fields container where it should operate.
Label of the fields container where it should operate. If not defined and the input Fields Container has only one Label, the operation will be done over all the fields.

Returns
-------
Expand Down Expand Up @@ -90,7 +90,7 @@ def _spec() -> Specification:
name="label",
type_names=["string"],
optional=True,
document=r"""Label of the fields container where it should operate.""",
document=r"""Label of the fields container where it should operate. If not defined and the input Fields Container has only one Label, the operation will be done over all the fields.""",
),
},
map_output_pin_spec={
Expand Down Expand Up @@ -198,7 +198,7 @@ def fields_container(self) -> Input:
def label(self) -> Input:
r"""Allows to connect label input to the operator.

Label of the fields container where it should operate.
Label of the fields container where it should operate. If not defined and the input Fields Container has only one Label, the operation will be done over all the fields.

Returns
-------
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ class accumulate_min_over_label_fc(Operator):
----------
fields_container: FieldsContainer
label: str, optional
Label of the fields container where it should operate.
Label of the fields container where it should operate. If not defined and the input Fields Container has only one Label, the operation will be done over all the fields.

Returns
-------
Expand Down Expand Up @@ -88,7 +88,7 @@ def _spec() -> Specification:
name="label",
type_names=["string"],
optional=True,
document=r"""Label of the fields container where it should operate.""",
document=r"""Label of the fields container where it should operate. If not defined and the input Fields Container has only one Label, the operation will be done over all the fields.""",
),
},
map_output_pin_spec={
Expand Down Expand Up @@ -196,7 +196,7 @@ def fields_container(self) -> Input:
def label(self) -> Input:
r"""Allows to connect label input to the operator.

Label of the fields container where it should operate.
Label of the fields container where it should operate. If not defined and the input Fields Container has only one Label, the operation will be done over all the fields.

Returns
-------
Expand Down
6 changes: 3 additions & 3 deletions src/ansys/dpf/core/operators/math/accumulate_over_label_fc.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ class accumulate_over_label_fc(Operator):
----------
fields_container: FieldsContainer
label: str, optional
Label of the fields container where it should operate.
Label of the fields container where it should operate. If not defined and the input Fields Container has only one Label, the operation will be done over all the fields.

Returns
-------
Expand Down Expand Up @@ -86,7 +86,7 @@ def _spec() -> Specification:
name="label",
type_names=["string"],
optional=True,
document=r"""Label of the fields container where it should operate.""",
document=r"""Label of the fields container where it should operate. If not defined and the input Fields Container has only one Label, the operation will be done over all the fields.""",
),
},
map_output_pin_spec={
Expand Down Expand Up @@ -190,7 +190,7 @@ def fields_container(self) -> Input:
def label(self) -> Input:
r"""Allows to connect label input to the operator.

Label of the fields container where it should operate.
Label of the fields container where it should operate. If not defined and the input Fields Container has only one Label, the operation will be done over all the fields.

Returns
-------
Expand Down
6 changes: 3 additions & 3 deletions src/ansys/dpf/core/operators/math/average_over_label_fc.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ class average_over_label_fc(Operator):
----------
fields_container: FieldsContainer
label: str, optional
Label of the fields container where it should operate.
Label of the fields container where it should operate. If not defined and the input Fields Container has only one Label, the operation will be done over all the fields.

Returns
-------
Expand Down Expand Up @@ -86,7 +86,7 @@ def _spec() -> Specification:
name="label",
type_names=["string"],
optional=True,
document=r"""Label of the fields container where it should operate.""",
document=r"""Label of the fields container where it should operate. If not defined and the input Fields Container has only one Label, the operation will be done over all the fields.""",
),
},
map_output_pin_spec={
Expand Down Expand Up @@ -190,7 +190,7 @@ def fields_container(self) -> Input:
def label(self) -> Input:
r"""Allows to connect label input to the operator.

Label of the fields container where it should operate.
Label of the fields container where it should operate. If not defined and the input Fields Container has only one Label, the operation will be done over all the fields.

Returns
-------
Expand Down
Binary file modified src/ansys/dpf/gatebin/Ans.Dpf.GrpcClient.dll
Binary file not shown.
Binary file modified src/ansys/dpf/gatebin/DPFClientAPI.dll
Binary file not shown.
Loading