This might seem pretty trivial, but I was wondering if there was some way of tracking progress. I.e. I would like some way of knowing what time the integrator is currently at. I noticed there was a progressbar function, but I don't see anyway of tying in the time stepping to it.
Thanks,
Aaron
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
No, unfortunately, having progress bars incur a lot of overhead, given that the integration is happening in the extension DLL but the interface would be in python. If you really need that, you'd have to break up your integration into smaller chunks, iterate over them, and use a progress bar function of some kind.
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Hello all,
This might seem pretty trivial, but I was wondering if there was some way of tracking progress. I.e. I would like some way of knowing what time the integrator is currently at. I noticed there was a progressbar function, but I don't see anyway of tying in the time stepping to it.
Thanks,
Aaron
No, unfortunately, having progress bars incur a lot of overhead, given that the integration is happening in the extension DLL but the interface would be in python. If you really need that, you'd have to break up your integration into smaller chunks, iterate over them, and use a progress bar function of some kind.