lneuhaus / pyrpl

pyrpl turns your RedPitaya into a powerful DSP device, especially suitable as a lockbox in quantum optics experiments.
http://lneuhaus.github.io/pyrpl/
MIT License
137 stars 105 forks source link

Derivative term in the PID #507

Open Bentwin2002 opened 5 months ago

Bentwin2002 commented 5 months ago

Do you know why the D term in the PID was deactivated? Has anyone had any success reactivating and using the D term?

michaelcroquette commented 4 months ago

The D term was unused in our experiments most of the time so we removed it. It is active in the default RedPitaya PID module if you really need it.

mixgreen commented 2 weeks ago

The D term was unused in our experiments most of the time so we removed it. It is active in the default RedPitaya PID module if you really need it.

Is that mean i can't use the D term in pyrpl? if i really need it , is that posiable to uncomment the code to use it? image image image

michaelcroquette commented 2 weeks ago

Actually you can ! I thought the derivative had been disabled in fpga code but it was actually uncommented in #22. There is a comment in the code saying "Derivative - 2 cycles delay (but treat as 1 cycle because its not functional at the moment" but I'm not sure what it means. The python code of the PID module was commented in #299 but there is no mention of this modification in the commit description. Anyway you can try and see ! It looks like the fpga code is the same as the original one from redpitaya so I think it should work. If it works we will uncomment it.