Abstract

Proportional + integral + derivative (PID) controllers are widely used in industrial applications to provide optimal and robust performance for stable, unstable, and nonlinear processes. In this paper, particle swarm optimization (PSO) algorithm is proposed to tune and retune the PID controller parameter for a class of time-delayed unstable systems. The proposal is to search the optimal controller parameters like 𝐾𝑝, 𝐾𝑖, and 𝐾𝑑 by minimising the cost function. The integral of squared error (ISE) criterion is considered as the cost function, which guides the PSO algorithm to get the optimised controller parameters. The procedure for PID parameter tuning and retuning is presented in detail. A comparative study is done with the conventional PID tuning methods proposed in the literature. The simulation results show that the PSO-based PID controller tuning approach provides improved performance for the setpoint tracking, load disturbance rejection, error minimization, and measurement noise attenuation for a class of unstable systems.

1. Introduction

Poportional integral derivative (PID) controllers are widely used in industrial applications to provide optimal and robust performance for stable, unstable, and nonlinear processes. It can be easily implementable in analog or digital form. Further, it supports tuning and online retuning based on the performance requirement of the process to be controlled.

Open-loop unstable systems are mostly observed in chemical process industries and for economical and/or safety reasons, the chemical process loops to be operated in unstable steady state [1]. For unstable systems, there exist a minimum and maximum values of controller gain, and the average of this limiting value is considered to design the controller to stabilize the system. The increase in time delay in the process narrows down the limiting value and it restricts the performance of the closed-loop system under control. In addition, these systems show unusual overshoot or inverse response due to the presence of negative or positive zeros [2]. The literature gives details about various theoretical studies on fine tuning of PID controllers for open-loop unstable system [3–8]. Most of the controller tuning approaches proposed for unstable system may require an approximate first or second order transfer function model with delay. Further, for real time application, the model may not be readily available in practice or may be changing due to uncertainty [9]. The model-based controller tuning requires complex computations to identify the controller parameters. To overcome this, it is necessary to use soft computing based model independent controller autotuning methods.

Optimization is a powerful tool for finding the controller parameters. Soft computing-based PID controller parameter optimization is widely addressed by the researchers. Wang et al. have proposed a PSO-based autotuning of PID controller on a stable system [10]. Jain and Nigam have attempted a PD-PI controller tuning for a stable second order system [11]. Kim et al. have discussed the PID controller tuning for a stable system using biologically inspired algorithms [12, 13]. Ali and Majhi have proposed PID controller tuning for a class of time-delayed stable systems using bacterial foraging optimization (BFO) algorithm [14]. Korani et al. presented a comparative analysis on PSO, BFO, and hybrid algorithm-based PID controller for a stable system [15]. Rajinikanth and Latha have discussed the heuristic algorithm-based PID controller tuning for unstable system with time delay [16–18].

In this work, the PID controller parameter tuning is proposed for unstable system using particle swarm optimization (PSO) algorithm introduced by Kennedy and Eberhart [19]. PSO is a biologically inspired algorithm, and it is successfully used for engineering applications due to its high computational efficiency, easy implementation and stable convergence. Another advantage of PSO technique is that it does not need detailed mathematical description of the process and along with the controller tuning, it also supports the retuning of controller parameters, if necessary. In this work, to evaluate the performance of the proposed method, a simulation study is carried out using a class of unstable system models.

This paper is organized as follows: principle of PSO algorithm is discussed in Section 2, the basics of PID controller and implementation of PSO to optimize PID parameter is presented in Section 3. In Section 4, simulated results obtained for a class of unstable systems are shown. At the end, conclusion of the present research work is given in Section 5.

2. Particle Swarm Optimization

Particle swarm optimization (PSO) algorithm is a population-based evolutionary computation technique developed by the inspiration of the social behavior in bird flocking or fish schooling. It attempts to mimic the natural process of group communication of individual knowledge, to achieve some optimum property. In this method, a population of swarm is initialized with random positions 𝑆𝑖 and velocities 𝑉𝑖. At the beginning, each particle of the population is scattered randomly throughout the entire search space and with the guidance of the performance criterion, the flying particles dynamically adjust their velocities according to their own flying experience and their companions flying experience. Each particle remembers its best position obtained so far, which is denoted as pbest (𝑃𝑑𝑖). It also receives the globally best position achieved by any particle in the population, which is denoted as gbest (𝐺𝑑𝑖) [20–25].

The updated velocity of each particle can be calculated using the present velocity and the distances from pbest and gbest. The updated velocity and the position are given in (1) and (2), respectively. Equation (3) shows the inertia weight𝑉𝑖𝑑+1=π‘Šπ‘‘β‹…π‘‰π‘‘π‘–+𝐢1⋅𝑅1β‹…ξ€·π‘ƒπ‘‘π‘–βˆ’π‘†π‘‘π‘–ξ€Έ+𝐢2⋅𝑅2β‹…ξ€·πΊπ‘‘π‘–βˆ’π‘†π‘‘π‘–ξ€Έ,𝑆(1)𝑖𝑑+1=𝑆𝑑𝑖+𝑉𝑖𝑑+1,π‘Š(2)𝑑=ξ€·π‘Šmaxξ€ΈΓ—ξƒ¬ξ€·π‘Šβˆ’Itermaxβˆ’π‘Šminξ€ΈItermaxξƒ­,(3) where 𝐢1 and 𝐢2 are positive constants. 𝐢1 is the cognitive learning rate and 𝐢2 is the global learning rate. 𝑅1 and 𝑅2 are random numbers in the range 0βˆ’1. The parameter β€œπ‘Šβ€ is inertia weight that increases the overall performance of PSO-based search. The larger value of π‘Š(π‘Šmax) can favor the global wide-range search, and the lower value of π‘Š(π‘Šmin) implies a higher ability for local nearby search.

2.1. Steps in PSO-Based PID Controller Optimization

Step 1. % Assign values for the PSO parameters %
Initialize: swarm (𝑁) and step size; learning rate (𝐢1,𝐢2) dimension for search space (𝐷); inertia weight (π‘Š);
% Initialize random values and current fitness %
𝑅1= rand (𝐷,𝑁); 𝑅2= rand (𝐷,𝑁); current fitness = 0 * ones (𝑁,1).

Step 2. % Initialize Swarm Velocity and Position %
Current position = 10 * (rand (𝐷,𝑁)βˆ’0.2),
current velocity = 0.5 * rand (𝐷,𝑁).

Step 3. Evaluate the objective function of every particle and record each particle’s 𝑃𝑑𝑖 and𝐺𝑑𝑖. Evaluate the desired optimization fitness function in D-dimension variables.

Step 4. Compare the fitness of particle with its 𝑃𝑑𝑖 and replace the local best value as given below.
for 𝑖=1βˆΆπ‘
If current fitness (𝑖) < local best fitness (𝑖);
Then local best fitness = current fitness;
local best position = current position (𝑖);
end
% Same operation to be performed for 𝐺𝑑𝑖%.

Step 5. Change the current velocity and position of the particle group according to (1) and (2).

Step 6. Steps 2–5 are repeated until the predefined value of the function or the number of iterations has been reached. Record the optimized 𝐾𝑝, 𝐾𝑖, and 𝐾𝑑 values.

Step 7. Perform closed-loop test with the optimised values of controller parameters and calculate the time domain specification for the system.
If the values are within the allowable limit, consider the current 𝐾𝑝, 𝐾𝑖, and 𝐾𝑑 values.
Otherwise perform the retuning operation for 𝐾𝑖, by replacing the optimised numerical values for 𝐾𝑝 and 𝐾𝑑.

3. PID Controller Tuning and Retuning

Industrial PID controllers are usually available as a packaged form, and to perform well with the industrial process problems, the PID controller requires optimal tuning. Figure 1 shows the diagram of a simple closed-loop control system. In this structure, the controller (𝐺𝑐(𝑠)) has to provide closed-loop stability, smooth reference tracking, shape of the dynamic and the static qualities of the disturbance response, reduction of the effect of supply disturbance and attenuation of the measurement noise effect [26]. In this study reference tracking, load disturbance rejection, and measurement noise attenuation are considered.

Closed-loop response of the system with setpoint 𝑅(𝑠), load disturbance 𝐷(𝑠), and noise 𝑁(𝑠) can be expressed as (4) and(5)ξ‚ΈπΊπ‘Œ(𝑠)=𝑝(𝑠)𝐺𝐢(𝑠)1+𝐺𝑝(𝑠)𝐺𝐢1(𝑠)𝑅(𝑠)+1+𝐺𝑝(𝑠)πΊπΆξ‚Ήβˆ’ξ‚ΈπΊ(𝑠)𝐷(𝑠)𝑝(𝑠)𝐺𝐢(𝑠)1+𝐺𝑝(𝑠)𝐺𝐢𝑁[[]],(𝑠)(𝑠),(4)π‘Œ(𝑠)=𝑇(𝑠)βˆ—π‘…(𝑠)-𝑁(𝑠)+(𝑆(𝑠)βˆ—π·(𝑠)(5) where the complementary sensitivity function and sensitivity function of the above loop are represented in (6) and (7), respectively 𝑇(𝑠)=π‘Œ(𝑠)=𝐺𝑅(𝑠)𝑝(𝑠)𝐺𝐢(𝑠)1+𝐺𝑝(𝑠)𝐺𝐢(𝑠),(6)ξ‚Έ1𝑆(𝑠)=1+𝐺𝑝(𝑠)𝐺𝐢(𝑠).(7)

The final steady state response of the system for the setpoint tracking and the load disturbance rejection is given in (8) and (9), respectively,𝑦𝑅(∞)=limπ‘‘β†’βˆžπ‘ π‘Œπ‘…(𝑠)=limπ‘‘β†’βˆžξ‚ΈπΊπ‘ π‘₯𝑝(𝑠)𝐺𝐢(𝑠)1+𝐺𝑝(𝑠)𝐺𝐢𝐴(𝑠)𝑠𝑦=𝐴,(8)𝐷(∞)=limπ‘‘β†’βˆžξ‚Έ1𝑠π‘₯1+𝐺𝑝(𝑠)𝐺𝐢𝐿(𝑠)𝑠=0,(9) where 𝐴 is amplitude of the reference signal and 𝐿 is disturbance amplitude.

To achieve a satisfactory 𝑦𝑅(∞) and 𝑦𝐷(∞), it is necessary to have an optimally tuned PID parameters. From the literature it is observed that to get a guaranteed robust performance, the integral controller gain β€œπΎπ‘–β€ should have an optimised value.

In this study, a noninteracting form of PID (𝐺PID) controller structure is considered. For real control applications, the feedback signal is the sum of the measured output and measurement noise component. A low pass filter is used with the derivative term to reduce the effect of measurement noise.

The PID structures are defined as the following: 𝐺PID(𝑠)=𝐾𝑝𝑒(𝑑)+πΎπ‘–ξ€œπ‘‡0𝑒(𝑑)𝑑𝑑+𝐾𝑑𝑑𝑒(𝑑),𝐺𝑑𝑑(10)PID(𝑠)=πΎπ‘βŽ‘βŽ’βŽ’βŽ’βŽ£11+𝑇𝑖𝑠+π‘‡π‘‘π‘ π‘‡π‘‘π‘ π‘βŽ€βŽ₯βŽ₯βŽ₯⎦,+1(11) where 𝐾𝑝/𝑇𝑖=𝐾𝑖, πΎπ‘βˆ—π‘‡π‘‘=𝐾𝑑, and 𝑁=filterconstantπ‘Œπ‘š(𝑠)=π‘Œ(𝑠)=PV(for𝑁(𝑠)=0),(12)π‘Œπ‘š(𝑠)=π‘Œ(𝑠)±𝑁(𝑠)=PV(for𝑁(𝑠)β‰ 0).(13) Figure 2 shows the block diagram of PID parameter optimization using PSO algorithm. Minimizing the cost function generates the controller parameters. The error criterion is considered as the cost function, and the values of 𝐾𝑝, 𝐾𝑖, and 𝐾𝑑are continuously adjusted, until the error of the closed-loop system is minimum. Equations (14)–(16) show the normally considered error criterion in control system to evaluate the performance of controller.ξ€œIAE=𝑇0||||ξ€œπ‘’(𝑑)𝑑𝑑=T0||||ξ€œπ‘Ÿ(𝑑)βˆ’π‘¦(𝑑)𝑑𝑑,(14)ISE=T0𝑒(𝑑)2ξ€œπ‘‘π‘‘=T0[]π‘Ÿ(𝑑)βˆ’π‘¦(𝑑)2ξ€œπ‘‘π‘‘,(15)ITAE=T0𝑑||||ξ€œπ‘’(𝑑)𝑑𝑑=T0t||||π‘Ÿ(𝑑)βˆ’π‘¦(𝑑)𝑑𝑑,(16) where 𝑒(𝑑)= error,π‘Ÿ(𝑑)=reference input, and 𝑦(𝑑)= measured variable.

In this work, ISE (15) is considered as the cost function. For unstable systems, the ISE value may be large due to excessive overshoot in the process output, which may lead to slow convergence. Employing an approximate actuator model between the controller and the process will enhance this state. After getting the optimised controller parameters, the time domain parameters like rise time, overshoot and settling time in the response are then analysed. If the values are within the specified or acceptable limit, then the current controller parameter is considered for the system. Otherwise a retuning operation is carried out for the integral term (𝐾𝑖) by replacing the optimised numerical values for π‘˜π‘ and π‘˜π‘‘, to enhance the present performance of the PID controller.

4. Results and Discussions

To study the closed-loop performance of the unstable process with PSO-tuned PID controller, practical examples from literature are considered.

4.1. Process 1

The first order plus delayed time (FOPDT) unstable process with the following transfer function model is considered:𝐺𝑝(𝑠)=4π‘’βˆ’2𝑠4π‘ βˆ’1.(17) Many studies have proposed different PID settings for the above model and the values are clearly presented in the literature [1, 3].

In this study, the optimization algorithm is initiated with the following values. Dimension of search space is three (i.e., π‘˜π‘, π‘˜π‘–, and π‘˜π‘‘); number of swarm and bird step is considered as ten; the cognitive (𝐢1) and global (𝐢2) search parameter are assigned the value of 2, the minimum (π‘Šmin) and maximum (π‘Šmax) inertia weight are set to be 0.2 and 1.2 respectively. The search space for π‘˜π‘, π‘˜π‘–, and π‘˜π‘‘ is defined as 30% of the three dimensional space with the positive and negative values. The maximum iteration for generation is set to 400.

PSO-based PID tuning is proposed with the method as in Figure 2. The final convergence of the 𝐾𝑝,𝐾𝑖, and 𝐾𝑑 is shown in Figure 3. The ISE-based controller parameter search value has converged at the 136th iteration, and the final PID parameters are tabulated in Table 1.

Figure 4 shows the value of the cost function (ISE) with respect to the iteration. When the iteration increases, the values of controller parameters will be optimized, which may help to reduce the ISE value of the process output. When the controller parameter reaches the final value, the reduced cost function for setpoint tracking has a value of 11.25 (Table 2).

The process is then controlled with the optimized values of controller parameters, and the performance of the controller is tested in terms of the overshoot, settling time and the error criterion. From Table 2, it is observed that the overshoot and the settling time for the present controller parameter are high. A retuning operation is then carried out by taking the overshoot and/or the settling time of the closed-loop process as the reference. During the retuning operation, the proportional and derivative controllers are replaced by its numerical values. In the retuning operation, the number of parameter to be optimized is one (i.e., the dimension of the search space is one). Initially the retuning is performed by taking the overshoot into account. The optimized PID gives an overshoot of 1.2632. During the retuning, the integral controller gain (𝐾𝑖) is adjusted until the considered performance criterion is minimized. Figure 5 shows the retuned value of the 𝐾𝑖, and the final value is presented in Table 1. The retuned PID parameter is then considered as PIDr1. A retuning operation is also performed by considering the settling time. The retuned controller parameter is presented as PIDr2. From Table 2, it is observed that the PSO-based PID tuning and retuning method give a reduced overshoot and settling time compared to the conventional tuning methods available in literature. From Figure 6, it is observed that the retuning operation can improve the closed-loop performance of the process.

Figure 7 shows the servo response of the previous work reported in literature [3]. Figure 8 shows the servo and regulatory operation for Process 1. For reference tracking, a unity step signal is applied as the setpoint. For regulatory operation, a load disturbance of 0.2 (20% of setpoint) is introduced at 100 sec. Figure 8 shows that the proposed method provides a smooth setpoint tracking and load disturbance rejection.

The robustness of the PSO-based PID controller is then tested with the measurement noise introduced in the feedback path. A band-limited white noise with a noise power of 0.001 is introduced along with the feedback signal and from the result it is observed that the proposed controller can perform well even in the noisy environment. Figure 9 shows the servo response of the PSO-tuned PID controller with and without the measurement noise.

4.2. Process 2

Isothermal continuous stirred tank reactor (CSTR) considered by Liou and Chien [27] has the transfer function model; 𝑑𝑐=π‘„π‘‘π‘‘π‘‰ξ€·πΆπ‘“βˆ’πΆπ‘Ÿξ€Έβˆ’ξƒ¬πΎ1πΆπ‘Ÿξ€·πΎ2πΆπ‘Ÿξ€Έ+12ξƒ­.(18)

The values of the operating conditions are given by flow rate (𝑄)=0.03333 lit/sec, volume (𝑉)=1 lit, 𝐾1=10 lit/s, and 𝐾2=10 lit/mol, concentration, (𝐢𝑓)=3.288 mol/lit. Measurement delay is 20 sec. Linearization of the model equation around this operating condition πΆπ‘Ÿ=1.3065 mol/lit, gives the following unstable transfer function model:𝐺(𝑠)=Δ𝐢(𝑠)Δ𝐢𝑓=(𝑠)3.3226expβˆ’20𝑠(99.69π‘ βˆ’1)(19)

For the above transfer function model, PSO-based PID tuning is proposed with the method as in Figure 2. The controller parameters are converged at the 97th iteration, and controller values are 𝐾𝑝=1.4715, 𝐾𝑖=0.0228, and 𝐾𝑑=6.3923 (with 𝑁=10). The overshoot of the present controller setting is large, and a retuning operation is performed for the integral controller gain with minimising of the overshoot. The search value is converged at the 49th iteration, and the retuned value of the 𝐾𝑖 is 0.0147. Figure 10 shows that the retuned PID (PIDr1) provides improved performance.

The regulatory response value is recorded with a disturbance value of 0.2 (20% of setpoint) introduced at 500 s. From the performance measure values in Table 3, it is observed that the retuned PID (PIDr1) structure provides reduced ISE and IAE than PSO tuned PID.

The robustness of the PID controller is then tested with a band-limited white noise with a noise power of 0.001and is introduced along with the feedback signal. From Figure 11, it is observed that the proposed controller provides a smooth setpoint tracking in the noisy environment.

4.3. Process 3

The bioreactor plays a major role in most of the biotechnological and chemical industry. It can be defined as a reactor tank to execute a number of biological reactions to create a large amount of intermediate and final products. In recent years, biosynthesis process is widely utilised to convert the living cells (biomass) into marketable chemical, pharmaceutical, food, and beverage products. In biosynthesis, the biomass consumes nutrients from the substrate (feed) to cultivate and produce more cells and important products. During this operation the bioreactor is kept under a controlled environment with constant pH, temperature, agitation rate, and dissolved oxygen tension to attain better growth of microbes.

In this work, a small scale bioreactor widely analysed by the researchers [28–30] is chosen for the study. Figure 12 shows the schematic diagram of the reactor. The dynamic behaviour of the reactor is complex, and a number of vital manufacturing processes belong to this group.Thebasicreactioninsidethebioreactorisπ΄π‘˜βˆ’β†’π‘ƒSubstrate+Cellπ‘˜βˆ’β†’MoreCells+Products,(20)

where β€œπ΄β€ is the reactant, β€œπ‘˜β€ is reaction rate constant, and β€œπ‘ƒβ€ is the product.

The stoichiometry for biomass activity is very complex since it varies with environmental conditions microorganism and nutrient in the system. Due to these reasons, unstructured models are mainly considered for analysis purpose. The following mathematical equations can describe a variety of industrial bioreactors. Equations (21) and (22) describe the balancing conditions and (23) depict the Monod model for the specific growth rateCellbalance:𝑑𝑋1=ξ€·π‘‘π‘‘πœ‡βˆ’π·π‘Ÿξ€Έπ‘‹1,(21)substratebalance:𝑑𝑋2𝑑𝑑=π·π‘Ÿξ€·π‘‹2π‘“βˆ’π‘‹2ξ€Έβˆ’πœ‡π‘‹1π‘Œ,πœ‡(22)growthrate:πœ‡=max𝑋2π‘˜π‘š+𝑋2+π‘˜1𝑋22,(23) where 𝑋1 is biomass (cell) concentration, 𝑋2 is substrate concentration, π·π‘Ÿ is the dilution rate, and 𝑋2𝑓 is substrate feed concentration.

The steady state solutions and the mathematical model of the system are depicted in Tables 4 and 5, respectively. The reactor model has two stable states and an unstable steady state [30]. The transfer function models shown in Table 5 along with a delay time of β€œ1” are utilized in the proposed study.

The unstable bioreactor model is a benchmark problem in the unstable system study.

For substrate inhibition model, the following parameters are considered (Table 6):

πœ‡max=0.53 hrβˆ’1, π‘˜π‘š=0.12 g/lit, π‘˜1=0.4545 lit/g, π‘Œ=0.4. The steady state dilution rate is 𝐷𝑠=0.3 hβˆ’1 (the residence time is 3.33 h) and the feed substrate concentration is 𝑋2𝑓𝑠=4.0 g/lit. The nonlinear process has the three steady state operating points for a dilution rate of 0.3 hβˆ’1. For the unstable operating region (equilibrium 2, nontrivial) biomass concentration 𝑋1𝑠=0.995103 and substrate concentration 𝑋2𝑠=1.512243 are considered. The dilution rate is taken as the manipulated variable to control the cell mass concentration at the unstable steady state.

For the unstable operating point, the local linearized model for the unstable bioreactor is𝐺𝑝(𝑠)=βˆ’0.9951π‘ βˆ’0.2985𝑠2=+0.1302π‘ βˆ’0.0509(24)βˆ’5.86445.89π‘ βˆ’1,(25) where (24) represents a second order model and (25) shows a reduced first order model. The delay time for the model ((24) and (25)) is considered as β€œ1”.

In this work, the PSO-based PID tuning is attempted for second order model (24), and the optimization search is converging at the 74th iteration. The optimised PID controller parameters are 𝐾𝑝=βˆ’0.8722, 𝐾𝑖=βˆ’0.1613, and 𝐾𝑑=βˆ’0.3179.

The closed-loop response of the unstable bioreactor system is tested with the first order model (25), and its performance is compared with the classical PID parameters presented in Table 4 [28].

Figure 13 shows that the response of PSO PID has a lesser overshoot than the MA method, and the settling time is smaller than the VC and VC1 method.

The actual bioreactor model constructed using the nonlinear equation ((21)–(23)) is then tested with the PID controller value obtained by the optimization algorithms. The objective is to maintain the concentration of biomass (𝑋1𝑠) based on the setpoint, by adjusting the substrate concentration (𝑋2𝑠). Figures 14 and 15 show the variation of biomass and substrate concentration for the servo and regulatory response. In this figure a setpoint of 0.995103 is considered and a load disturbance of 0.199 (20% of setpoint) is applied at 60 min.

From the result, it is observed that the PSO algorithm based PID controller provides a nonoscillatory response with minimized overshoot and settling for both the setpoint tracking and disturbance rejection applications.

The robustness of the proposed control scheme is then tested by introducing a measurement noise (noise power of 0.001; sampling time of 0.1 sec). The nonlinear model is considered for the simulation study.

Figure 16 shows the variations of biomass concentration and Figure 17 depicts the variation of substrate concentration and dilution rate in the presence and the absence of measurement noise. The reference tracking response of the bioreactor with a PSO-based PID shows that the proposed scheme works well in the noisy environment.

5. Conclusion

Most of the industrial process loops use conventional or modified structure PID controllers. Tuning the controller parameter for time-delayed unstable system is a challenging work if the system model is other than a first order plus dead time. In this work, design of optimization-based model independent controller tuning for unstable process models has been attempted. In this work, a PSO-based PID controller tuning and retuning is presented in detail for a class of unstable systems. The design of controller is formulated as an optimization problem using ISE as the performance index. This is a model free, online tuning method which can identify the optimal controller parameters effectively. PSO can be practically used as an alternative to obtain the controller parameters with an algorithm-based PID controller. The result obtained from the computer simulation shows that the proposed method improves the performance of the process in terms of time domain specification, setpoint tracking, disturbance rejection, error minimization, and measurement noise attenuation.

Nomenclature

C:Positive constants (0–2)
𝐢𝑓:Feed concentration
πΆπ‘Ÿ:R concentration
D(s):Load disturbance
e(t):Error
gbest:Global best position
𝐺𝑐(s):Controller model
𝐺𝑝(s):Process model
IAE:Integrated absolute error
ISE:Integral squared error
ITAE:Integral time absolute error
Iter:Iteration
𝐾𝑝:Proportional gain
𝐾𝑖:Integral gain
𝐾𝑑:Derivative gain
N:Filter constant (10)
N(s):Measurement noise
pbest:Local best position
PV:Process variable
Q:Inlet flow rate
R:Random number (0-1)
R(s):Reference input
S:Position of particle
SP:Setpoint
Ti:Integral time constant
𝑇𝑑:Derivative time constant
V:Velocity of particle
W:Inertia weight of particle
Y(s):Process output
π‘Œπ‘š(s):Process output + noise.
Superscripts
t:Iteration number
𝑑+1:Updated iteration number.
Subscripts
L:Load disturbance
S:Servo response.