From c9f85a182cc2ca140d86f841397ea89c407d0139 Mon Sep 17 00:00:00 2001 From: oparreno Date: Mon, 15 Sep 2025 18:02:06 +0200 Subject: [PATCH 1/2] replace by modal coords --- examples/07-distributed-post/02-distributed-msup_expansion.py | 2 +- .../07-distributed-post/03-distributed-msup_expansion_steps.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/07-distributed-post/02-distributed-msup_expansion.py b/examples/07-distributed-post/02-distributed-msup_expansion.py index 3ff354bb5ce..c36db5bce0c 100644 --- a/examples/07-distributed-post/02-distributed-msup_expansion.py +++ b/examples/07-distributed-post/02-distributed-msup_expansion.py @@ -176,7 +176,7 @@ merge_mesh = ops.utility.merge_meshes() ds = dpf.DataSources(files_rfrq[0]) -response = ops.result.displacement(data_sources=ds) +response = ops.result.modal_coordinate(data_sources=ds) response.inputs.mesh(merge_mesh.outputs.merges_mesh) expansion = ops.math.modal_superposition(solution_in_modal_space=response, modal_basis=merge_fields) diff --git a/examples/07-distributed-post/03-distributed-msup_expansion_steps.py b/examples/07-distributed-post/03-distributed-msup_expansion_steps.py index f516f816db9..e4591569e6c 100644 --- a/examples/07-distributed-post/03-distributed-msup_expansion_steps.py +++ b/examples/07-distributed-post/03-distributed-msup_expansion_steps.py @@ -185,7 +185,7 @@ response.inputs.mesh(merge_mesh.outputs.merges_mesh) ds = dpf.DataSources(files_rfrq[1]) -response2 = ops.result.displacement(data_sources=ds) +response2 = ops.result.modal_coordinate(data_sources=ds) response2fc = response2.outputs.fields_container() response2fc.time_freq_support.time_frequencies.scoping.set_id(0, 2) From cc9b3d5ab649488a619ab35f4c72e1f2e8e955ac Mon Sep 17 00:00:00 2001 From: oparreno Date: Tue, 16 Sep 2025 09:10:27 +0200 Subject: [PATCH 2/2] redirect calls from old servers to U from MCF --- src/ansys/dpf/core/operators/build.py | 1 + 1 file changed, 1 insertion(+) diff --git a/src/ansys/dpf/core/operators/build.py b/src/ansys/dpf/core/operators/build.py index d9d02f493fd..c9d30487377 100644 --- a/src/ansys/dpf/core/operators/build.py +++ b/src/ansys/dpf/core/operators/build.py @@ -24,6 +24,7 @@ "SMISC": "mapdl::smisc", "result_provider": "custom", "CS": "mapdl::rst::CS", + "MCF": "U", } def build_docstring(specification_description):