From 8607b868a0639df510b4b7b8c72f5d14d014afe7 Mon Sep 17 00:00:00 2001 From: Samuelopez-ansys Date: Fri, 10 Jan 2025 10:34:31 +0100 Subject: [PATCH] Fix siwave results path --- src/ansys/aedt/core/modeler/circuits/primitives_nexxim.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ansys/aedt/core/modeler/circuits/primitives_nexxim.py b/src/ansys/aedt/core/modeler/circuits/primitives_nexxim.py index 649d03a4505..284a623e6e7 100644 --- a/src/ansys/aedt/core/modeler/circuits/primitives_nexxim.py +++ b/src/ansys/aedt/core/modeler/circuits/primitives_nexxim.py @@ -2103,7 +2103,7 @@ def add_siwave_dynamic_link(self, input_file, solution=None, simulate_solutions= if not input_file.exists(): raise FileNotFoundError(f"Project file '{input_file}' doesn't exist") comp_name = Path(input_file).stem - results_path = input_file / "averesults" + results_path = input_file.parent / f"{comp_name}.siwaveresults" solution_path = results_path / f"{comp_name}.asol" out = load_keyword_in_aedt_file(solution_path, "Solutions") if not solution: