Hi, I need to run a parameter sweep in CST, and I have set the parameters in the sweep parameter window.
I'm using this VBA code:
With ParameterSweep
.SetSimulationType ("Transient")
.Start
End WithHowever, when I run this code, it only checks the sweep parameter values without actually starting the solver or performing any calculations.
What can I do to ensure that the current parameter sweep starts running using VBA?
