Answer
This question has not yet been answered.
Python Automation, Simulation Control
Do you have the same question? Follow this Question
This question has not yet been answered.
We look to ensure that every question is answered by the best people with relevant expertise and experience, the best answers include multiple perspectives. Do you have relevant expertise or experience to contribute your answer to any of these commonly asked questions?
By
I only found the following functions related to running the simulation.
.run(), .stop(), .pause().
By
I found a few more:
project.parameters(time_duration = 0.5) % Simulation time or Duration of run = 0.5 [sec]
project.parameters(time_step = 10) % sampling time or Solution time step = 10 [uS]
project.parameters(sample_step = 100) % Plot sampling time or Channel plot step = 100 [uS]
By
>>> project.set_parameters(time_duration = 0.5)
>>> project.set_parameters(time_step = 10)
>>> project.set_parameters(sample_step = 100)
Add New Comment