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
def merge(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).
0 commit comments