Hi,
The exact context of 'P', 'I', 'D' values in Simulink is:
- 'P' : Proportional gain, provided from a source external to the block. External gain input is useful, for example, when you want to map a different PID parameterization to the PID gains of the block. You can also use external gain input to implement gain-scheduled PID control. In gain-scheduled control, you determine the PID coefficients by logic or other calculation in your model and feed them to the block.
- 'I' : Integral gain, provided from a source external to the block. External gain input is useful, for example, when you want to map a different PID parameterization to the PID gains of the block. You can also use external gain input to implement gain-scheduled PID control. In gain-scheduled control, you determine the PID coefficients by logic or other calculation in your model and feed them to the block. When you supply gains externally, time variations in the integral gain are also integrated. This result occurs because of the way the PID gains are implemented within the block.
- 'D' : Derivative gain, provided from a source external to the block. External gain input is useful, for example, when you want to map a different PID parameterization to the PID gains of the block. You can also use external gain input to implement gain-scheduled PID control. In gain-scheduled control, you determine the PID coefficients by logic or other calculation in your model and feed them to the block.When you supply gains externally, time variations in the derivative gain are also differentiated. This result occurs because of the way the PID gains are implemented within the block.
KP (Proportional band): The proportional band is usually the reciprocal of the proportional gain. However, it's expressed as a percentage.
TI (Integral time): The integral time is the reciprocal of the integral gain when the gain is expressed as Kp/Ti.
KD (Derivative action): The derivative action is often expressed as a percentage of the proportional gain, similar to KP.
TD (Derivative time): The derivative gain (D) in Simulink is represented as Kp*Td, then Td is the derivative time and can be used directly.
N (Filter coefficient): The filter coefficient N is often specific to the Simulink model.
Refer to the following MathWorks documentations for detailed information about use of PID controller:
I hope this resolves your issue.