Earlier quoted context omitted.
All physical systems have time delay, but software doesn’t necessarily. I bumped into PID controllers writing software for video games where I had the option to not have a time delay in the system, if I wanted to do something less physically realistic. In a game, you can (and I often did) use a proportional-only controller for certain things. Then I got surprised when that didn’t work, after a time delay was introduc…
> but software doesn’t necessarily. Is this true? I mean the delay may be inconsiderable but there is a delay, right?
PID Controller Explainer (2022)
31–40 of 40 posts
Re: PID Controller Explainer (2022)
#32PID controllers are one way to control systems described by differential equations. Given a certain desired value of the solution they can be used to force the dynamics to converge towards that value. For certain types mostly linear equations they are the optimal way to achieve this. I have no idea why, but the topic is almost never presented that way. Instead people talk about valves and pistons and whatsoever, but…
Re: PID Controller Explainer (2022)
#33Re: PID Controller Explainer (2022)
#34Any sources that approach the subject from a mathematical formulation?
(In full disclosure, this is a resource that I put together)
Re: PID Controller Explainer (2022)
#35If you study linear control theory and you can characterize the dynamics of the system you're trying to control, you can just solve the differential equations analytically with a Laplace transform* and write down the proper values of the coefficients instead of searching for them. *or Z transform if the system is discrete Furthermore, the equations will tell you whether you even need the "I" and "D" parts of PID.
The higher level system (surgery robot) also had a closed loop so we didnt have to be perfect, but cleaning up gave higher bandwidth.
Re: PID Controller Explainer (2022)
#36Earlier quoted context omitted.
Are you saying that a PID controller would not work in a system without time delay? Or in a system without time delay, a PID controller would function identically to a simpler controller (A proportional-only controller perhaps)? My understanding and experience has been that large time delays force less aggressive tuning of the controller. I've been meaning to experiment with model based controllers to try and improve…
I’m saying PID controllers are unnecessary and don’t help solve any problems if there’s no time delay (which can happen in software). The I and D terms are based on time, i.e. integrating/differentiating with respect to time, so talking about time delay is perhaps obvious, but it wasn’t obvious to me the first time I heard about PID controllers, and even in the article we’re commenting on, the problem statement isn’t…
Re: PID Controller Explainer (2022)
#37In the ‘what is a PID controller’ section, it doesn’t mention time delay. PID controllers solve problems where there is a time delay in the system between inputs and corresponding outputs. If there is no time delay, then a PID controller won’t help. My favorite analogy is a suspension, like a car or mountain bike shock absorber. A PID controller is basically a unitless suspension system. P is like the spring, I is (s…
Re: PID Controller Explainer (2022)
#38Earlier quoted context omitted.
I’m saying PID controllers are unnecessary and don’t help solve any problems if there’s no time delay (which can happen in software). The I and D terms are based on time, i.e. integrating/differentiating with respect to time, so talking about time delay is perhaps obvious, but it wasn’t obvious to me the first time I heard about PID controllers, and even in the article we’re commenting on, the problem statement isn’t…
I don't know that it's the time delay that's important, as much as unknown external forces acting on the system? If the problem was just that it took a known amount of time for the vehicle's angle to change, wouldn't we be able to compute open loop control solutions in advance?
On the other hand, even if you have known forces that take a known amount of time, a PID controller might be the right solution if the integrals you have to solve are unsolveable and/or just difficult. One problem with that idea is that it’s easy to get slightly wrong when complex physics is involved, and slightly wrong output can have unbounded catastrophically wrong consequences. You’d still want to monitor the inputs and responses, and so you’d end up with a PID controller even if you did try to pre-compute the solution.
However, vehicle steering does not take a known amount of time to complete, it takes an unknown amount of time, and there are many dimensions and variables. So, yes implicitly in PID controller land, you have a good point in the sense that part of the idea is that the inputs and response times are unknown. If the inputs were known and the solution was exactly computable and the exact answer was reliable, then you could use some kind of pre-integrator instead of a PID controller. But, I think it’s still fair to say that time delay is the main cause of the problem that PID controllers are designed to solve, because unknown inputs without time delays are not PID controller problems.
Re: PID Controller Explainer (2022)
#39Earlier quoted context omitted.
All physical systems have time delay, but software doesn’t necessarily. I bumped into PID controllers writing software for video games where I had the option to not have a time delay in the system, if I wanted to do something less physically realistic. In a game, you can (and I often did) use a proportional-only controller for certain things. Then I got surprised when that didn’t work, after a time delay was introduc…
> but software doesn’t necessarily. Is this true? I mean the delay may be inconsiderable but there is a delay, right?
Re: PID Controller Explainer (2022)
#40Any sources that approach the subject from a mathematical formulation?
https://fbswiki.org/wiki/index.php/Feedback_Systems:_An_Intr...