matthuszagh / pyems

High-level python interface to OpenEMS with automatic mesh generation

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Run without user confirmation

clemc98 opened this issue · comments

Hi, i would run consecutively some simulation. Can i run the simulation without running Appcsxcad and without asking to the user : Continue simulation (y/n)?

This is indeed possible. Calling Simulation.run(csx=false) will do the trick. This is done, for example, here (and I generally use it when performing parameter sweeps):

sim.run(csx=False)

I've added documentation to run() explaining the parameters in 249de1d.