Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update generated code for DPF 251_daily on master #1780

Merged
merged 2 commits into from
Oct 1, 2024
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.

2 changes: 2 additions & 0 deletions src/ansys/dpf/core/operators/result/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -254,6 +254,7 @@
from .static_pressure import static_pressure
from .stiffness_matrix_energy import stiffness_matrix_energy
from .strain_eqv_as_mechanical import strain_eqv_as_mechanical
from .strain_eqv_as_mechanical_workflow import strain_eqv_as_mechanical_workflow
from .stress import stress
from .stress_X import stress_X
from .stress_XY import stress_XY
Expand All @@ -262,6 +263,7 @@
from .stress_YZ import stress_YZ
from .stress_Z import stress_Z
from .stress_eqv_as_mechanical import stress_eqv_as_mechanical
from .stress_eqv_as_mechanical_workflow import stress_eqv_as_mechanical_workflow
from .stress_intensity import stress_intensity
from .stress_max_shear import stress_max_shear
from .stress_principal_1 import stress_principal_1
Expand Down
42 changes: 33 additions & 9 deletions src/ansys/dpf/core/operators/result/accu_eqv_creep_strain.py
Original file line number Diff line number Diff line change
Expand Up @@ -77,12 +77,20 @@ class accu_eqv_creep_strain(Operator):
split_shells : bool, optional
This pin forces elemental nodal shell and
solid results to be split if this pin
is set to true (default is false)
is set to true. if set to false
(default), a specific shell layer is
still needed to merge the fields.
merge is possible only if a shell
layer is provided.
shell_layer : int, optional
If the requested_location pin is not
connected, and if spli_shells pin is
connected, and if split_shells pin is
set to true, we choose one of the
shell layer for shell element.
shell layer for shell element. if
split_shells pin is set to false
(default value) and a specific shell
layer is provided, results will be
merged on this specific shell layer.


Examples
Expand Down Expand Up @@ -300,16 +308,24 @@ def _spec():
optional=True,
document="""This pin forces elemental nodal shell and
solid results to be split if this pin
is set to true (default is false)""",
is set to true. if set to false
(default), a specific shell layer is
still needed to merge the fields.
merge is possible only if a shell
layer is provided.""",
),
27: PinSpecification(
name="shell_layer",
type_names=["int32"],
optional=True,
document="""If the requested_location pin is not
connected, and if spli_shells pin is
connected, and if split_shells pin is
set to true, we choose one of the
shell layer for shell element.""",
shell layer for shell element. if
split_shells pin is set to false
(default value) and a specific shell
layer is provided, results will be
merged on this specific shell layer.""",
),
},
map_output_pin_spec={
Expand Down Expand Up @@ -684,7 +700,11 @@ def split_shells(self):

This pin forces elemental nodal shell and
solid results to be split if this pin
is set to true (default is false)
is set to true. if set to false
(default), a specific shell layer is
still needed to merge the fields.
merge is possible only if a shell
layer is provided.

Parameters
----------
Expand All @@ -705,9 +725,13 @@ def shell_layer(self):
"""Allows to connect shell_layer input to the operator.

If the requested_location pin is not
connected, and if spli_shells pin is
connected, and if split_shells pin is
set to true, we choose one of the
shell layer for shell element.
shell layer for shell element. if
split_shells pin is set to false
(default value) and a specific shell
layer is provided, results will be
merged on this specific shell layer.

Parameters
----------
Expand Down
42 changes: 33 additions & 9 deletions src/ansys/dpf/core/operators/result/accu_eqv_plastic_strain.py
Original file line number Diff line number Diff line change
Expand Up @@ -77,12 +77,20 @@ class accu_eqv_plastic_strain(Operator):
split_shells : bool, optional
This pin forces elemental nodal shell and
solid results to be split if this pin
is set to true (default is false)
is set to true. if set to false
(default), a specific shell layer is
still needed to merge the fields.
merge is possible only if a shell
layer is provided.
shell_layer : int, optional
If the requested_location pin is not
connected, and if spli_shells pin is
connected, and if split_shells pin is
set to true, we choose one of the
shell layer for shell element.
shell layer for shell element. if
split_shells pin is set to false
(default value) and a specific shell
layer is provided, results will be
merged on this specific shell layer.


Examples
Expand Down Expand Up @@ -300,16 +308,24 @@ def _spec():
optional=True,
document="""This pin forces elemental nodal shell and
solid results to be split if this pin
is set to true (default is false)""",
is set to true. if set to false
(default), a specific shell layer is
still needed to merge the fields.
merge is possible only if a shell
layer is provided.""",
),
27: PinSpecification(
name="shell_layer",
type_names=["int32"],
optional=True,
document="""If the requested_location pin is not
connected, and if spli_shells pin is
connected, and if split_shells pin is
set to true, we choose one of the
shell layer for shell element.""",
shell layer for shell element. if
split_shells pin is set to false
(default value) and a specific shell
layer is provided, results will be
merged on this specific shell layer.""",
),
},
map_output_pin_spec={
Expand Down Expand Up @@ -684,7 +700,11 @@ def split_shells(self):

This pin forces elemental nodal shell and
solid results to be split if this pin
is set to true (default is false)
is set to true. if set to false
(default), a specific shell layer is
still needed to merge the fields.
merge is possible only if a shell
layer is provided.

Parameters
----------
Expand All @@ -705,9 +725,13 @@ def shell_layer(self):
"""Allows to connect shell_layer input to the operator.

If the requested_location pin is not
connected, and if spli_shells pin is
connected, and if split_shells pin is
set to true, we choose one of the
shell layer for shell element.
shell layer for shell element. if
split_shells pin is set to false
(default value) and a specific shell
layer is provided, results will be
merged on this specific shell layer.

Parameters
----------
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -77,12 +77,20 @@ class contact_fluid_penetration_pressure(Operator):
split_shells : bool, optional
This pin forces elemental nodal shell and
solid results to be split if this pin
is set to true (default is false)
is set to true. if set to false
(default), a specific shell layer is
still needed to merge the fields.
merge is possible only if a shell
layer is provided.
shell_layer : int, optional
If the requested_location pin is not
connected, and if spli_shells pin is
connected, and if split_shells pin is
set to true, we choose one of the
shell layer for shell element.
shell layer for shell element. if
split_shells pin is set to false
(default value) and a specific shell
layer is provided, results will be
merged on this specific shell layer.


Examples
Expand Down Expand Up @@ -300,16 +308,24 @@ def _spec():
optional=True,
document="""This pin forces elemental nodal shell and
solid results to be split if this pin
is set to true (default is false)""",
is set to true. if set to false
(default), a specific shell layer is
still needed to merge the fields.
merge is possible only if a shell
layer is provided.""",
),
27: PinSpecification(
name="shell_layer",
type_names=["int32"],
optional=True,
document="""If the requested_location pin is not
connected, and if spli_shells pin is
connected, and if split_shells pin is
set to true, we choose one of the
shell layer for shell element.""",
shell layer for shell element. if
split_shells pin is set to false
(default value) and a specific shell
layer is provided, results will be
merged on this specific shell layer.""",
),
},
map_output_pin_spec={
Expand Down Expand Up @@ -686,7 +702,11 @@ def split_shells(self):

This pin forces elemental nodal shell and
solid results to be split if this pin
is set to true (default is false)
is set to true. if set to false
(default), a specific shell layer is
still needed to merge the fields.
merge is possible only if a shell
layer is provided.

Parameters
----------
Expand All @@ -707,9 +727,13 @@ def shell_layer(self):
"""Allows to connect shell_layer input to the operator.

If the requested_location pin is not
connected, and if spli_shells pin is
connected, and if split_shells pin is
set to true, we choose one of the
shell layer for shell element.
shell layer for shell element. if
split_shells pin is set to false
(default value) and a specific shell
layer is provided, results will be
merged on this specific shell layer.

Parameters
----------
Expand Down
42 changes: 33 additions & 9 deletions src/ansys/dpf/core/operators/result/contact_friction_stress.py
Original file line number Diff line number Diff line change
Expand Up @@ -77,12 +77,20 @@ class contact_friction_stress(Operator):
split_shells : bool, optional
This pin forces elemental nodal shell and
solid results to be split if this pin
is set to true (default is false)
is set to true. if set to false
(default), a specific shell layer is
still needed to merge the fields.
merge is possible only if a shell
layer is provided.
shell_layer : int, optional
If the requested_location pin is not
connected, and if spli_shells pin is
connected, and if split_shells pin is
set to true, we choose one of the
shell layer for shell element.
shell layer for shell element. if
split_shells pin is set to false
(default value) and a specific shell
layer is provided, results will be
merged on this specific shell layer.


Examples
Expand Down Expand Up @@ -300,16 +308,24 @@ def _spec():
optional=True,
document="""This pin forces elemental nodal shell and
solid results to be split if this pin
is set to true (default is false)""",
is set to true. if set to false
(default), a specific shell layer is
still needed to merge the fields.
merge is possible only if a shell
layer is provided.""",
),
27: PinSpecification(
name="shell_layer",
type_names=["int32"],
optional=True,
document="""If the requested_location pin is not
connected, and if spli_shells pin is
connected, and if split_shells pin is
set to true, we choose one of the
shell layer for shell element.""",
shell layer for shell element. if
split_shells pin is set to false
(default value) and a specific shell
layer is provided, results will be
merged on this specific shell layer.""",
),
},
map_output_pin_spec={
Expand Down Expand Up @@ -684,7 +700,11 @@ def split_shells(self):

This pin forces elemental nodal shell and
solid results to be split if this pin
is set to true (default is false)
is set to true. if set to false
(default), a specific shell layer is
still needed to merge the fields.
merge is possible only if a shell
layer is provided.

Parameters
----------
Expand All @@ -705,9 +725,13 @@ def shell_layer(self):
"""Allows to connect shell_layer input to the operator.

If the requested_location pin is not
connected, and if spli_shells pin is
connected, and if split_shells pin is
set to true, we choose one of the
shell layer for shell element.
shell layer for shell element. if
split_shells pin is set to false
(default value) and a specific shell
layer is provided, results will be
merged on this specific shell layer.

Parameters
----------
Expand Down
Loading
Loading