From 53db5cc1c9a4727322dfc0167e3800348ec50437 Mon Sep 17 00:00:00 2001 From: Pernelle Marone-Hitz Date: Wed, 5 Oct 2022 11:26:51 +0200 Subject: [PATCH] Due to recent changes with parameters this example needs to be adjusted --- .gitignore | 3 ++- .../20-example-technology-showcase-dynamic-simulation-PCB.py | 4 ++-- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 3fa916340d9..90a02c855ad 100755 --- a/.gitignore +++ b/.gitignore @@ -88,4 +88,5 @@ venv/ .vscode/ # Pycharm local settings -.idea/ \ No newline at end of file +.idea/ +/.vs diff --git a/doc/source/examples/technology_showcase_examples/techdemo-20/20-example-technology-showcase-dynamic-simulation-PCB.py b/doc/source/examples/technology_showcase_examples/techdemo-20/20-example-technology-showcase-dynamic-simulation-PCB.py index 63bd4167045..b9ad635da77 100644 --- a/doc/source/examples/technology_showcase_examples/techdemo-20/20-example-technology-showcase-dynamic-simulation-PCB.py +++ b/doc/source/examples/technology_showcase_examples/techdemo-20/20-example-technology-showcase-dynamic-simulation-PCB.py @@ -305,8 +305,8 @@ # store MAPDL results to python variables mapdl.dim("frequencies", "array", 4000, 1) mapdl.dim("response", "array", 4000, 1) -mapdl.vget("frequencies(1)", 1) -mapdl.vget("response(1)", 3) +mapdl.vget("frequencies", 1) +mapdl.vget("response", 3) frequencies = mapdl.parameters["frequencies"] response = mapdl.parameters["response"]