Skip to content

Commit 3327005

Browse files
pyansys-ci-botrlagharafacanton
authored
update generated code (#1780)
Co-authored-by: rlagha <[email protected]> Co-authored-by: Rafael Canton <[email protected]>
1 parent cc322db commit 3327005

File tree

82 files changed

+2685
-418
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

82 files changed

+2685
-418
lines changed

doc/source/_static/dpf_operators.html

Lines changed: 8 additions & 8 deletions
Large diffs are not rendered by default.

src/ansys/dpf/core/operators/result/__init__.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -254,6 +254,7 @@
254254
from .static_pressure import static_pressure
255255
from .stiffness_matrix_energy import stiffness_matrix_energy
256256
from .strain_eqv_as_mechanical import strain_eqv_as_mechanical
257+
from .strain_eqv_as_mechanical_workflow import strain_eqv_as_mechanical_workflow
257258
from .stress import stress
258259
from .stress_X import stress_X
259260
from .stress_XY import stress_XY
@@ -262,6 +263,7 @@
262263
from .stress_YZ import stress_YZ
263264
from .stress_Z import stress_Z
264265
from .stress_eqv_as_mechanical import stress_eqv_as_mechanical
266+
from .stress_eqv_as_mechanical_workflow import stress_eqv_as_mechanical_workflow
265267
from .stress_intensity import stress_intensity
266268
from .stress_max_shear import stress_max_shear
267269
from .stress_principal_1 import stress_principal_1

src/ansys/dpf/core/operators/result/accu_eqv_creep_strain.py

Lines changed: 33 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -77,12 +77,20 @@ class accu_eqv_creep_strain(Operator):
7777
split_shells : bool, optional
7878
This pin forces elemental nodal shell and
7979
solid results to be split if this pin
80-
is set to true (default is false)
80+
is set to true. if set to false
81+
(default), a specific shell layer is
82+
still needed to merge the fields.
83+
merge is possible only if a shell
84+
layer is provided.
8185
shell_layer : int, optional
8286
If the requested_location pin is not
83-
connected, and if spli_shells pin is
87+
connected, and if split_shells pin is
8488
set to true, we choose one of the
85-
shell layer for shell element.
89+
shell layer for shell element. if
90+
split_shells pin is set to false
91+
(default value) and a specific shell
92+
layer is provided, results will be
93+
merged on this specific shell layer.
8694
8795
8896
Examples
@@ -300,16 +308,24 @@ def _spec():
300308
optional=True,
301309
document="""This pin forces elemental nodal shell and
302310
solid results to be split if this pin
303-
is set to true (default is false)""",
311+
is set to true. if set to false
312+
(default), a specific shell layer is
313+
still needed to merge the fields.
314+
merge is possible only if a shell
315+
layer is provided.""",
304316
),
305317
27: PinSpecification(
306318
name="shell_layer",
307319
type_names=["int32"],
308320
optional=True,
309321
document="""If the requested_location pin is not
310-
connected, and if spli_shells pin is
322+
connected, and if split_shells pin is
311323
set to true, we choose one of the
312-
shell layer for shell element.""",
324+
shell layer for shell element. if
325+
split_shells pin is set to false
326+
(default value) and a specific shell
327+
layer is provided, results will be
328+
merged on this specific shell layer.""",
313329
),
314330
},
315331
map_output_pin_spec={
@@ -684,7 +700,11 @@ def split_shells(self):
684700
685701
This pin forces elemental nodal shell and
686702
solid results to be split if this pin
687-
is set to true (default is false)
703+
is set to true. if set to false
704+
(default), a specific shell layer is
705+
still needed to merge the fields.
706+
merge is possible only if a shell
707+
layer is provided.
688708
689709
Parameters
690710
----------
@@ -705,9 +725,13 @@ def shell_layer(self):
705725
"""Allows to connect shell_layer input to the operator.
706726
707727
If the requested_location pin is not
708-
connected, and if spli_shells pin is
728+
connected, and if split_shells pin is
709729
set to true, we choose one of the
710-
shell layer for shell element.
730+
shell layer for shell element. if
731+
split_shells pin is set to false
732+
(default value) and a specific shell
733+
layer is provided, results will be
734+
merged on this specific shell layer.
711735
712736
Parameters
713737
----------

src/ansys/dpf/core/operators/result/accu_eqv_plastic_strain.py

Lines changed: 33 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -77,12 +77,20 @@ class accu_eqv_plastic_strain(Operator):
7777
split_shells : bool, optional
7878
This pin forces elemental nodal shell and
7979
solid results to be split if this pin
80-
is set to true (default is false)
80+
is set to true. if set to false
81+
(default), a specific shell layer is
82+
still needed to merge the fields.
83+
merge is possible only if a shell
84+
layer is provided.
8185
shell_layer : int, optional
8286
If the requested_location pin is not
83-
connected, and if spli_shells pin is
87+
connected, and if split_shells pin is
8488
set to true, we choose one of the
85-
shell layer for shell element.
89+
shell layer for shell element. if
90+
split_shells pin is set to false
91+
(default value) and a specific shell
92+
layer is provided, results will be
93+
merged on this specific shell layer.
8694
8795
8896
Examples
@@ -300,16 +308,24 @@ def _spec():
300308
optional=True,
301309
document="""This pin forces elemental nodal shell and
302310
solid results to be split if this pin
303-
is set to true (default is false)""",
311+
is set to true. if set to false
312+
(default), a specific shell layer is
313+
still needed to merge the fields.
314+
merge is possible only if a shell
315+
layer is provided.""",
304316
),
305317
27: PinSpecification(
306318
name="shell_layer",
307319
type_names=["int32"],
308320
optional=True,
309321
document="""If the requested_location pin is not
310-
connected, and if spli_shells pin is
322+
connected, and if split_shells pin is
311323
set to true, we choose one of the
312-
shell layer for shell element.""",
324+
shell layer for shell element. if
325+
split_shells pin is set to false
326+
(default value) and a specific shell
327+
layer is provided, results will be
328+
merged on this specific shell layer.""",
313329
),
314330
},
315331
map_output_pin_spec={
@@ -684,7 +700,11 @@ def split_shells(self):
684700
685701
This pin forces elemental nodal shell and
686702
solid results to be split if this pin
687-
is set to true (default is false)
703+
is set to true. if set to false
704+
(default), a specific shell layer is
705+
still needed to merge the fields.
706+
merge is possible only if a shell
707+
layer is provided.
688708
689709
Parameters
690710
----------
@@ -705,9 +725,13 @@ def shell_layer(self):
705725
"""Allows to connect shell_layer input to the operator.
706726
707727
If the requested_location pin is not
708-
connected, and if spli_shells pin is
728+
connected, and if split_shells pin is
709729
set to true, we choose one of the
710-
shell layer for shell element.
730+
shell layer for shell element. if
731+
split_shells pin is set to false
732+
(default value) and a specific shell
733+
layer is provided, results will be
734+
merged on this specific shell layer.
711735
712736
Parameters
713737
----------

src/ansys/dpf/core/operators/result/contact_fluid_penetration_pressure.py

Lines changed: 33 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -77,12 +77,20 @@ class contact_fluid_penetration_pressure(Operator):
7777
split_shells : bool, optional
7878
This pin forces elemental nodal shell and
7979
solid results to be split if this pin
80-
is set to true (default is false)
80+
is set to true. if set to false
81+
(default), a specific shell layer is
82+
still needed to merge the fields.
83+
merge is possible only if a shell
84+
layer is provided.
8185
shell_layer : int, optional
8286
If the requested_location pin is not
83-
connected, and if spli_shells pin is
87+
connected, and if split_shells pin is
8488
set to true, we choose one of the
85-
shell layer for shell element.
89+
shell layer for shell element. if
90+
split_shells pin is set to false
91+
(default value) and a specific shell
92+
layer is provided, results will be
93+
merged on this specific shell layer.
8694
8795
8896
Examples
@@ -300,16 +308,24 @@ def _spec():
300308
optional=True,
301309
document="""This pin forces elemental nodal shell and
302310
solid results to be split if this pin
303-
is set to true (default is false)""",
311+
is set to true. if set to false
312+
(default), a specific shell layer is
313+
still needed to merge the fields.
314+
merge is possible only if a shell
315+
layer is provided.""",
304316
),
305317
27: PinSpecification(
306318
name="shell_layer",
307319
type_names=["int32"],
308320
optional=True,
309321
document="""If the requested_location pin is not
310-
connected, and if spli_shells pin is
322+
connected, and if split_shells pin is
311323
set to true, we choose one of the
312-
shell layer for shell element.""",
324+
shell layer for shell element. if
325+
split_shells pin is set to false
326+
(default value) and a specific shell
327+
layer is provided, results will be
328+
merged on this specific shell layer.""",
313329
),
314330
},
315331
map_output_pin_spec={
@@ -686,7 +702,11 @@ def split_shells(self):
686702
687703
This pin forces elemental nodal shell and
688704
solid results to be split if this pin
689-
is set to true (default is false)
705+
is set to true. if set to false
706+
(default), a specific shell layer is
707+
still needed to merge the fields.
708+
merge is possible only if a shell
709+
layer is provided.
690710
691711
Parameters
692712
----------
@@ -707,9 +727,13 @@ def shell_layer(self):
707727
"""Allows to connect shell_layer input to the operator.
708728
709729
If the requested_location pin is not
710-
connected, and if spli_shells pin is
730+
connected, and if split_shells pin is
711731
set to true, we choose one of the
712-
shell layer for shell element.
732+
shell layer for shell element. if
733+
split_shells pin is set to false
734+
(default value) and a specific shell
735+
layer is provided, results will be
736+
merged on this specific shell layer.
713737
714738
Parameters
715739
----------

src/ansys/dpf/core/operators/result/contact_friction_stress.py

Lines changed: 33 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -77,12 +77,20 @@ class contact_friction_stress(Operator):
7777
split_shells : bool, optional
7878
This pin forces elemental nodal shell and
7979
solid results to be split if this pin
80-
is set to true (default is false)
80+
is set to true. if set to false
81+
(default), a specific shell layer is
82+
still needed to merge the fields.
83+
merge is possible only if a shell
84+
layer is provided.
8185
shell_layer : int, optional
8286
If the requested_location pin is not
83-
connected, and if spli_shells pin is
87+
connected, and if split_shells pin is
8488
set to true, we choose one of the
85-
shell layer for shell element.
89+
shell layer for shell element. if
90+
split_shells pin is set to false
91+
(default value) and a specific shell
92+
layer is provided, results will be
93+
merged on this specific shell layer.
8694
8795
8896
Examples
@@ -300,16 +308,24 @@ def _spec():
300308
optional=True,
301309
document="""This pin forces elemental nodal shell and
302310
solid results to be split if this pin
303-
is set to true (default is false)""",
311+
is set to true. if set to false
312+
(default), a specific shell layer is
313+
still needed to merge the fields.
314+
merge is possible only if a shell
315+
layer is provided.""",
304316
),
305317
27: PinSpecification(
306318
name="shell_layer",
307319
type_names=["int32"],
308320
optional=True,
309321
document="""If the requested_location pin is not
310-
connected, and if spli_shells pin is
322+
connected, and if split_shells pin is
311323
set to true, we choose one of the
312-
shell layer for shell element.""",
324+
shell layer for shell element. if
325+
split_shells pin is set to false
326+
(default value) and a specific shell
327+
layer is provided, results will be
328+
merged on this specific shell layer.""",
313329
),
314330
},
315331
map_output_pin_spec={
@@ -684,7 +700,11 @@ def split_shells(self):
684700
685701
This pin forces elemental nodal shell and
686702
solid results to be split if this pin
687-
is set to true (default is false)
703+
is set to true. if set to false
704+
(default), a specific shell layer is
705+
still needed to merge the fields.
706+
merge is possible only if a shell
707+
layer is provided.
688708
689709
Parameters
690710
----------
@@ -705,9 +725,13 @@ def shell_layer(self):
705725
"""Allows to connect shell_layer input to the operator.
706726
707727
If the requested_location pin is not
708-
connected, and if spli_shells pin is
728+
connected, and if split_shells pin is
709729
set to true, we choose one of the
710-
shell layer for shell element.
730+
shell layer for shell element. if
731+
split_shells pin is set to false
732+
(default value) and a specific shell
733+
layer is provided, results will be
734+
merged on this specific shell layer.
711735
712736
Parameters
713737
----------

0 commit comments

Comments
 (0)