We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 766f79d commit f16f050Copy full SHA for f16f050
src/ansys/dpf/core/plotter.py
@@ -284,9 +284,10 @@ def add_field(
284
eshell_layers.topbottom,
285
eshell_layers.topbottommid,
286
]:
287
- change_shell_layer_op = core.operators.utility.change_shell_layers()
288
- change_shell_layer_op.inputs.fields_container.connect(field)
289
- change_shell_layer_op.inputs.e_shell_layer.connect(shell_layer) # top layer taken
+ change_shell_layer_op = core.operators.utility.change_shell_layers(
+ fields_container=field,
+ e_shell_layer=shell_layer, # top layer taken
290
+ )
291
field = change_shell_layer_op.get_output(0, core.types.field)
292
293
component_count = field.component_count
0 commit comments