Skip to main content
. 2021 Sep 28;21(19):6489. doi: 10.3390/s21196489
Algorithm 1. Detection Period.
Input: Rreq, ηmin, Tnow, α,β
Output: η
1.    R(Tnow)=e(Tnow/α)β
2.    if R(Tnow)>Rreq
3.      then treq=α(lnRreq)1/β;
4.        Δt=treqTnow;
5.        if Δt>nηmin (n>1)
6.          then η=nηmin;
7.          else if ηmin<Δt<nηmin
8.            then η=Δt;
9.            else
10.              η=ηmin;
11.            end if
12.         end if
13.      else
14.        η=ηmin;
15.   end if