File tree Expand file tree Collapse file tree 2 files changed +13
-1
lines changed Expand file tree Collapse file tree 2 files changed +13
-1
lines changed Original file line number Diff line number Diff line change @@ -212,6 +212,9 @@ def _create_initial_result_workflow(
212212 initial_result_workflow .add_operator (forward_shell_layer_op )
213213 initial_result_workflow .set_input_name (_WfNames .shell_layer , forward_shell_layer_op )
214214
215+ forward_input_mesh_scoping_op = operators .utility .forward (server = server )
216+ initial_result_workflow .add_operator (forward_input_mesh_scoping_op )
217+
215218 # The next section is only needed, because the shell_layer selection does not
216219 # work for elemental and elemental nodal results.
217220 # If elemental results are requested with a chosen shell layer,
@@ -258,8 +261,16 @@ def _create_initial_result_workflow(
258261 initial_result_workflow .set_input_name (
259262 "time_scoping" , initial_result_op .inputs .time_scoping
260263 )
264+
261265 initial_result_workflow .set_input_name (
262- "mesh_scoping" , initial_result_op .inputs .mesh_scoping
266+ "mesh_scoping" , forward_input_mesh_scoping_op
267+ )
268+ _connect_any (
269+ initial_result_op .inputs .mesh_scoping , forward_input_mesh_scoping_op .outputs .any
270+ )
271+
272+ initial_result_workflow .set_output_name (
273+ _WfNames .result_scoping , forward_input_mesh_scoping_op .outputs .any
263274 )
264275
265276 initial_result_workflow .set_input_name (_WfNames .read_cyclic , initial_result_op , 14 )
Original file line number Diff line number Diff line change @@ -60,6 +60,7 @@ class _WfNames:
6060 skin_input_mesh = "skin_input_mesh"
6161 final_scoping = "final_scoping"
6262 result_scoping_by_body = "result_scoping_by_body"
63+ result_scoping = "result_scoping"
6364 scoping_a = "scoping_a"
6465 scoping_b = "scoping_b"
6566 streams = "streams"
You can’t perform that action at this time.
0 commit comments