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"]