Please take a minute to review and accept our Terms of Use.
Welcome to the PLECS User Forum, where you can ask questions and receive answers from other members of the community.

Many technical questions regarding PLECS are answered on the Technical Solutions page of our website. Tutorial videos, specific application examples, and pre-recorded webinars are available on our YouTube page. Please follow us on LinkedIn for the latest Plexim news.

example of config solver parameters PLECS XML-RPC with python.

0 votes
615 views
hallo,

I have seen the manual file. but there is not clear how you set the solver parameters using

opts = {'ModelVars' :  { 'varL' : 50e-6 } }

would you please make another opts for changing solver to discrete with start and stop time so i can imagine how is the structure of the Opts when using SolverOpts
asked Aug 17, 2019 by trieuto (12 points)

1 Answer

0 votes
opts = {'ModelVars' :  { 'varL' : 50e-6 },         
        'SolverOpts' : { 'Solver' : 'discrete',
                         'StartTime' : 0,
                         'StopTime' : 0.1
                       }
       }
answered Aug 19, 2019 by Oliver Schwartz (618 points)
...