Skip to content

Commit 1b0421e

Browse files
authored
Handle connection of Enum to operators (#2094)
* Use Enum.value in Input.connect() and Inputs.connect() * Add test_operator_change_shell_layers_connect_enum
1 parent 663d9fa commit 1b0421e

File tree

2 files changed

+60
-2
lines changed

2 files changed

+60
-2
lines changed

src/ansys/dpf/core/inputs.py

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@
2222

2323
"""Inputs."""
2424

25+
from enum import Enum
2526
from textwrap import wrap
2627
import warnings
2728
import weakref
@@ -73,7 +74,7 @@ def connect(self, inpt):
7374
7475
Parameters
7576
----------
76-
inpt : str, int, double, Field, FieldsContainer, Scoping, DataSources, MeshedRegion,
77+
inpt : str, int, double, Field, FieldsContainer, Scoping, DataSources, MeshedRegion, Enum,
7778
Output, Outputs, Operator, os.PathLike
7879
Input of the operator.
7980
@@ -100,6 +101,8 @@ def connect(self, inpt):
100101
inpt = inpt.ID
101102
else: # Custom UnitSystem
102103
inpt = inpt.unit_names
104+
elif isinstance(inpt, Enum):
105+
inpt = inpt.value
103106

104107
input_type_name = type(inpt).__name__
105108
if not (input_type_name in self._python_expected_types or ["Outputs", "Output", "Any"]):
@@ -226,7 +229,7 @@ def connect(self, inpt):
226229
227230
Parameters
228231
----------
229-
inpt : str, int, double, bool, list[int], list[float], Field, FieldsContainer, Scoping,
232+
inpt : str, int, double, bool, list[int], list[float], Field, FieldsContainer, Scoping, Enum,
230233
ScopingsContainer, MeshedRegion, MeshesContainer, DataSources, CyclicSupport, Outputs, os.PathLike # noqa: E501
231234
Input of the operator.
232235
@@ -250,6 +253,8 @@ def connect(self, inpt):
250253
inpt = inpt.metadata.data_sources
251254
elif isinstance(inpt, Path):
252255
inpt = str(inpt)
256+
elif isinstance(inpt, Enum):
257+
inpt = inpt.value
253258

254259
input_type_name = type(inpt).__name__
255260
for input_pin in self._inputs:
Lines changed: 53 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,53 @@
1+
# Copyright (C) 2020 - 2025 ANSYS, Inc. and/or its affiliates.
2+
# SPDX-License-Identifier: MIT
3+
#
4+
#
5+
# Permission is hereby granted, free of charge, to any person obtaining a copy
6+
# of this software and associated documentation files (the "Software"), to deal
7+
# in the Software without restriction, including without limitation the rights
8+
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
# copies of the Software, and to permit persons to whom the Software is
10+
# furnished to do so, subject to the following conditions:
11+
#
12+
# The above copyright notice and this permission notice shall be included in all
13+
# copies or substantial portions of the Software.
14+
#
15+
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
# SOFTWARE.
22+
23+
# Tests the utility.change_shell_layers operator
24+
25+
import ansys.dpf.core as dpf
26+
from ansys.dpf.core import examples
27+
28+
29+
def test_operator_change_shell_layers_connect_enum(server_type):
30+
model = dpf.Model(
31+
examples.download_all_kinds_of_complexity_modal(server=server_type), server=server_type
32+
)
33+
34+
stress = model.results.stress()
35+
stress.inputs.requested_location.connect("Nodal")
36+
37+
# Test connection through signature
38+
change_shell_layers = dpf.operators.utility.change_shell_layers(
39+
fields_container=stress, e_shell_layer=dpf.common.shell_layers.bottom, server=server_type
40+
)
41+
_ = change_shell_layers.eval()
42+
43+
# Test connection through Input.connect
44+
change_shell_layers = dpf.operators.utility.change_shell_layers(server=server_type)
45+
change_shell_layers.inputs.fields_container.connect(stress)
46+
change_shell_layers.inputs.e_shell_layer.connect(dpf.common.shell_layers.bottom)
47+
_ = change_shell_layers.eval()
48+
49+
# Test connection through Inputs.connect
50+
change_shell_layers = dpf.operators.utility.change_shell_layers(server=server_type)
51+
change_shell_layers.inputs.connect(stress)
52+
change_shell_layers.inputs.connect(dpf.common.shell_layers.bottom)
53+
_ = change_shell_layers.eval()

0 commit comments

Comments
 (0)