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/mesh/skin.py
+41-20Lines changed: 41 additions & 20 deletions
Original file line number
Diff line number
Diff line change
@@ -27,8 +27,8 @@ class skin(Operator):
27
27
Nodal scoping to restrict the skin extraction to a set of nodes. If provided, a skin element is added to the skin mesh if all its nodes are in the scoping.
28
28
duplicate_shell: bool, optional
29
29
If input mesh contains shell elements, output mesh shell elements (boolean = 1) are duplicated, one per each orientation, or (boolean = 0) remain unchanged.
30
-
add_beam: bool, optional
31
-
If input mesh contains beam elements, output mesh beam elements (boolean = 1) are added or (boolean = 0) are ignored.
30
+
add_beam_point: bool, optional
31
+
If input mesh contains beam or point elements, output mesh beam point elements (boolean = 1) are added or (boolean = 0) are ignored. Default: False
document=r"""If input mesh contains shell elements, output mesh shell elements (boolean = 1) are duplicated, one per each orientation, or (boolean = 0) remain unchanged.""",
123
131
),
124
132
3: PinSpecification(
125
-
name="add_beam",
133
+
name="add_beam_point",
126
134
type_names=["bool"],
127
135
optional=True,
128
-
document=r"""If input mesh contains beam elements, output mesh beam elements (boolean = 1) are added or (boolean = 0) are ignored.""",
136
+
document=r"""If input mesh contains beam or point elements, output mesh beam point elements (boolean = 1) are added or (boolean = 0) are ignored. Default: False""",
Copy file name to clipboardExpand all lines: src/ansys/dpf/core/operators/result/acceleration.py
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -33,7 +33,7 @@ class acceleration(Operator):
33
33
data_sources: DataSources
34
34
result file path container, used if no streams are set
35
35
bool_rotate_to_global: bool, optional
36
-
if true the field is rotated to global coordinate system (default true)
36
+
if true the field is rotated to global coordinate system (default true). Please check your results carefully if 'false' is used for Elemental or ElementalNodal results averaged to the Nodes when adjacent elements do not share the same coordinate system, as results may be incorrect.
37
37
mesh: MeshedRegion or MeshesContainer, optional
38
38
mesh. If cylic expansion is to be done, mesh of the base sector
39
39
read_cyclic: int, optional
@@ -190,7 +190,7 @@ def _spec() -> Specification:
190
190
name="bool_rotate_to_global",
191
191
type_names=["bool"],
192
192
optional=True,
193
-
document=r"""if true the field is rotated to global coordinate system (default true)""",
193
+
document=r"""if true the field is rotated to global coordinate system (default true). Please check your results carefully if 'false' is used for Elemental or ElementalNodal results averaged to the Nodes when adjacent elements do not share the same coordinate system, as results may be incorrect.""",
r"""Allows to connect bool_rotate_to_global input to the operator.
450
450
451
-
if true the field is rotated to global coordinate system (default true)
451
+
if true the field is rotated to global coordinate system (default true). Please check your results carefully if 'false' is used for Elemental or ElementalNodal results averaged to the Nodes when adjacent elements do not share the same coordinate system, as results may be incorrect.
Copy file name to clipboardExpand all lines: src/ansys/dpf/core/operators/result/accu_eqv_creep_strain.py
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -35,7 +35,7 @@ class accu_eqv_creep_strain(Operator):
35
35
data_sources: DataSources
36
36
result file path container, used if no streams are set
37
37
bool_rotate_to_global: bool, optional
38
-
if true the field is rotated to global coordinate system (default true)
38
+
if true the field is rotated to global coordinate system (default true). Please check your results carefully if 'false' is used for Elemental or ElementalNodal results averaged to the Nodes when adjacent elements do not share the same coordinate system, as results may be incorrect.
39
39
mesh: MeshedRegion or MeshesContainer, optional
40
40
prevents from reading the mesh in the result files
41
41
requested_location: str, optional
@@ -194,7 +194,7 @@ def _spec() -> Specification:
194
194
name="bool_rotate_to_global",
195
195
type_names=["bool"],
196
196
optional=True,
197
-
document=r"""if true the field is rotated to global coordinate system (default true)""",
197
+
document=r"""if true the field is rotated to global coordinate system (default true). Please check your results carefully if 'false' is used for Elemental or ElementalNodal results averaged to the Nodes when adjacent elements do not share the same coordinate system, as results may be incorrect.""",
r"""Allows to connect bool_rotate_to_global input to the operator.
470
470
471
-
if true the field is rotated to global coordinate system (default true)
471
+
if true the field is rotated to global coordinate system (default true). Please check your results carefully if 'false' is used for Elemental or ElementalNodal results averaged to the Nodes when adjacent elements do not share the same coordinate system, as results may be incorrect.
0 commit comments