|
| 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