Skip to main content
. 2020 Mar 24;20(6):1798. doi: 10.3390/s20061798
Algorithm 1: OMCT
Input: measured RSSI z, channel frequency f, anchor node coordinates u
Output: optimal target node coordinates r^
1. Set the parameters of MOEA
2. Initialize AKF
3. Utilize AKF to filter z and acquire filtered RSSI z˜
4. Compute signal wavelength λ based on f
5. Generate N decision vectors x by MOEA
6. t1
7. tmaxtotalnumber of generations
8. while ttmax do
9.      Calculate N g1 according to x, z˜ and λ
10.      Compute N corresponding g2 via x, u
11.      Produce new N x by MOEA based on g1 and g2
12.      tt+1
13. end while
14. Select r of first x in Pareto front with ascending g1 as r^
15. return r^