You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/ansys/dpf/core/operators/utility/change_shell_layers.py
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -34,7 +34,7 @@ class change_shell_layers(Operator):
34
34
mesh: MeshedRegion or MeshesContainer, optional
35
35
Mesh support of the input fields_container, in case it does not have one defined. If the fields_container contains mixed shell/solid results, the mesh is required (either by connecting this pin or in the support).
36
36
merge: bool, optional
37
-
For shell/solid mixed fields, group in the same field all solids and shells (false by default).
37
+
For fields with mixed shell layers (solid/shell elements with heterogeneous shell layers), group all of them in the same field (false by default).
38
38
39
39
Returns
40
40
-------
@@ -125,7 +125,7 @@ def _spec() -> Specification:
125
125
name="merge",
126
126
type_names=["bool"],
127
127
optional=True,
128
-
document=r"""For shell/solid mixed fields, group in the same field all solids and shells (false by default).""",
128
+
document=r"""For fields with mixed shell layers (solid/shell elements with heterogeneous shell layers), group all of them in the same field (false by default).""",
129
129
),
130
130
},
131
131
map_output_pin_spec={
@@ -279,7 +279,7 @@ def mesh(self) -> Input:
279
279
defmerge(self) ->Input:
280
280
r"""Allows to connect merge input to the operator.
281
281
282
-
For shell/solid mixed fields, group in the same field all solids and shells (false by default).
282
+
For fields with mixed shell layers (solid/shell elements with heterogeneous shell layers), group all of them in the same field (false by default).
Additional pin for some property : the label name for "label_scoping" or "label_values", the field index (default 0) for "field_scoping".
30
+
Additional pin for some property : the label name for "label_scoping" or "label_values", the field index (default 0) for "field_scoping" or "field".
31
31
32
32
Returns
33
33
-------
34
-
property: Scoping or TimeFreqSupport or dict
35
-
Returns a Scoping for property: "label_scoping", a vector of int for "label_values", a time freq support for "time_freq_support", a vector of string for "labels", a LabelSpace for "field_scoping".
34
+
property: Scoping or TimeFreqSupport or dict or Field
35
+
Returns a Scoping for property: "label_scoping", a vector of int for "label_values", a time freq support for "time_freq_support", a vector of string for "labels", a LabelSpace for "field_scoping" and a "field" for "field".
36
36
37
37
Examples
38
38
--------
@@ -82,8 +82,8 @@ def __init__(
82
82
83
83
@staticmethod
84
84
def_spec() ->Specification:
85
-
description=r"""Uses the FieldsContainer APIs to return a given attribute of the mesh in
86
-
input.
85
+
description=r"""Uses the FieldsContainer APIs to return a given attribute of the fields
document=r"""Additional pin for some property : the label name for "label_scoping" or "label_values", the field index (default 0) for "field_scoping".""",
107
+
document=r"""Additional pin for some property : the label name for "label_scoping" or "label_values", the field index (default 0) for "field_scoping" or "field".""",
document=r"""Returns a Scoping for property: "label_scoping", a vector of int for "label_values", a time freq support for "time_freq_support", a vector of string for "labels", a LabelSpace for "field_scoping".""",
122
+
document=r"""Returns a Scoping for property: "label_scoping", a vector of int for "label_values", a time freq support for "time_freq_support", a vector of string for "labels", a LabelSpace for "field_scoping" and a "field" for "field".""",
0 commit comments