Skip to content

Commit

Permalink
Fix siwave results path
Browse files Browse the repository at this point in the history
  • Loading branch information
Samuelopez-ansys committed Jan 10, 2025
1 parent 117471c commit 8607b86
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ansys/aedt/core/modeler/circuits/primitives_nexxim.py
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit 8607b86

Please sign in to comment.