2016-11-27 10:50:47 -05:00
|
|
|
subroutine qra64a(dd,npts,nutc,nf1,nf2,nfqso,ntol,mode64,minsync,ndepth, &
|
|
|
|
mycall_12,hiscall_12,hisgrid_6,sync,nsnr,dtx,nfreq,decoded,nft)
|
2016-06-30 16:38:36 -04:00
|
|
|
|
|
|
|
use packjt
|
2016-11-15 16:39:55 -05:00
|
|
|
use timer_module, only: timer
|
|
|
|
|
2016-11-14 14:56:13 -05:00
|
|
|
parameter (NMAX=60*12000,LN=1152*63)
|
2016-07-19 09:16:10 -04:00
|
|
|
character decoded*22
|
|
|
|
character*12 mycall_12,hiscall_12
|
|
|
|
character*6 mycall,hiscall,hisgrid_6
|
|
|
|
character*4 hisgrid
|
2016-06-30 16:38:36 -04:00
|
|
|
logical ltext
|
2016-11-14 14:56:13 -05:00
|
|
|
complex c00(0:720000) !Complex spectrum of dd()
|
|
|
|
complex c0(0:720000) !Complex data for dd()
|
2016-07-26 12:04:57 -04:00
|
|
|
real a(3)
|
2016-07-26 12:44:35 -04:00
|
|
|
real dd(NMAX) !Raw data sampled at 12000 Hz
|
2016-11-07 11:47:40 -05:00
|
|
|
real s3(LN) !Symbol spectra
|
2016-11-08 15:11:02 -05:00
|
|
|
real s3a(LN) !Symbol spectra
|
2016-07-26 12:44:35 -04:00
|
|
|
integer dat4(12) !Decoded message (as 12 integers)
|
2016-11-08 15:11:02 -05:00
|
|
|
integer dat4x(12)
|
2016-11-27 10:50:47 -05:00
|
|
|
integer nap(0:11)
|
2016-11-27 11:38:39 -05:00
|
|
|
data nap/0,2,3,2,3,4,2,3,6,4,6,6/
|
|
|
|
data nc1z/-1/,nc2z/-1/,ng2z/-1/,maxaptypez/-1/
|
2016-06-30 16:38:36 -04:00
|
|
|
save
|
|
|
|
|
2016-12-06 13:29:22 -05:00
|
|
|
if(nfqso.lt.nf1 .or. nfqso.gt.nf2) go to 900
|
2016-11-15 16:39:55 -05:00
|
|
|
call timer('qra64a ',0)
|
|
|
|
decoded=' '
|
2016-07-01 11:25:41 -04:00
|
|
|
nft=99
|
2016-07-01 11:16:00 -04:00
|
|
|
nsnr=-30
|
2016-06-30 16:38:36 -04:00
|
|
|
mycall=mycall_12(1:6) !### May need fixing ###
|
2016-07-19 09:16:10 -04:00
|
|
|
hiscall=hiscall_12(1:6)
|
|
|
|
hisgrid=hisgrid_6(1:4)
|
2016-07-20 11:38:29 -04:00
|
|
|
call packcall(mycall,nc1,ltext)
|
|
|
|
call packcall(hiscall,nc2,ltext)
|
|
|
|
call packgrid(hisgrid,ng2,ltext)
|
2016-11-14 14:20:13 -05:00
|
|
|
nSubmode=0
|
|
|
|
if(mode64.eq.2) nSubmode=1
|
|
|
|
if(mode64.eq.4) nSubmode=2
|
|
|
|
if(mode64.eq.8) nSubmode=3
|
|
|
|
if(mode64.eq.16) nSubmode=4
|
2016-11-13 15:36:27 -05:00
|
|
|
b90=1.0
|
2016-11-14 14:20:13 -05:00
|
|
|
nFadingModel=1
|
2016-11-27 10:50:47 -05:00
|
|
|
maxaptype=4
|
|
|
|
if(iand(ndepth,64).ne.0) maxaptype=5
|
2016-11-27 11:38:39 -05:00
|
|
|
if(nc1.ne.nc1z .or. nc2.ne.nc2z .or. ng2.ne.ng2z .or. &
|
|
|
|
maxaptype.ne.maxaptypez) then
|
2016-11-27 10:50:47 -05:00
|
|
|
do naptype=0,maxaptype
|
|
|
|
if(naptype.eq.2 .and. maxaptype.eq.4) cycle
|
2016-11-07 11:58:37 -05:00
|
|
|
call qra64_dec(s3,nc1,nc2,ng2,naptype,1,nSubmode,b90, &
|
|
|
|
nFadingModel,dat4,snr2,irc)
|
2016-07-20 11:38:29 -04:00
|
|
|
enddo
|
|
|
|
nc1z=nc1
|
|
|
|
nc2z=nc2
|
|
|
|
ng2z=ng2
|
2016-11-27 11:38:39 -05:00
|
|
|
maxaptypez=maxaptype
|
2016-07-20 11:38:29 -04:00
|
|
|
endif
|
2016-11-27 11:38:39 -05:00
|
|
|
naptype=maxaptype
|
2016-07-19 11:49:06 -04:00
|
|
|
|
2016-11-14 14:56:13 -05:00
|
|
|
maxf1=0
|
2016-11-15 16:39:55 -05:00
|
|
|
call timer('sync64 ',0)
|
2016-12-06 13:29:22 -05:00
|
|
|
call sync64(dd,npts,nf1,nf2,nfqso,ntol,mode64,maxf1,dtx,f0,jpk0,kpk,sync,c00)
|
2016-11-15 16:39:55 -05:00
|
|
|
call timer('sync64 ',1)
|
2016-12-08 08:15:44 -05:00
|
|
|
if(sync.lt.3.4) go to 900
|
|
|
|
a=0.
|
|
|
|
a(1)=-f0
|
|
|
|
nfreq=nint(f0)
|
|
|
|
npts2=npts/2
|
|
|
|
call twkfreq(c00,c0,npts2,6000.0,a)
|
|
|
|
|
2016-11-15 16:39:55 -05:00
|
|
|
irc=-99
|
2016-12-06 13:29:22 -05:00
|
|
|
s3lim=20.
|
2016-11-15 16:39:55 -05:00
|
|
|
|
2016-11-27 10:50:47 -05:00
|
|
|
itz=11
|
2016-11-14 14:56:13 -05:00
|
|
|
if(mode64.eq.4) itz=9
|
|
|
|
if(mode64.eq.2) itz=7
|
|
|
|
if(mode64.eq.1) itz=5
|
2016-12-08 08:15:44 -05:00
|
|
|
|
2016-11-07 11:47:40 -05:00
|
|
|
LL=64*(mode64+2)
|
|
|
|
NN=63
|
2016-12-06 13:29:22 -05:00
|
|
|
napmin=99
|
2016-12-08 08:15:44 -05:00
|
|
|
do itry0=1,5
|
2016-12-06 13:29:22 -05:00
|
|
|
idt=itry0/2
|
|
|
|
if(mod(itry0,2).eq.0) idt=-idt
|
2016-12-08 08:15:44 -05:00
|
|
|
jpk=jpk0 + 750*idt
|
2016-12-06 13:29:22 -05:00
|
|
|
call spec64(c0,npts2,mode64,jpk,s3a,LL,NN)
|
|
|
|
call pctile(s3a,LL*NN,45,base)
|
|
|
|
s3a=s3a/base
|
|
|
|
where(s3a(1:LL*NN)>s3lim) s3a(1:LL*NN)=s3lim
|
|
|
|
do iter=itz,0,-2
|
|
|
|
b90=1.728**iter
|
|
|
|
if(b90.gt.230.0) cycle
|
|
|
|
s3(1:LL*NN)=s3a(1:LL*NN)
|
|
|
|
call timer('qra64_de',0)
|
|
|
|
call qra64_dec(s3,nc1,nc2,ng2,naptype,0,nSubmode,b90, &
|
|
|
|
nFadingModel,dat4,snr2,irc)
|
|
|
|
call timer('qra64_de',1)
|
|
|
|
if(abs(snr2).gt.30.) snr2=-30.0
|
|
|
|
if(irc.eq.0) go to 10
|
|
|
|
if(irc.gt.0) call badmsg(irc,dat4,nc1,nc2,ng2)
|
|
|
|
iirc=max(0,min(irc,11))
|
|
|
|
if(irc.gt.0 .and. nap(iirc).lt.napmin) then
|
|
|
|
dat4x=dat4
|
|
|
|
b90x=b90
|
|
|
|
snr2x=snr2
|
|
|
|
napmin=nap(iirc)
|
|
|
|
irckeep=irc
|
|
|
|
dtxkeep=jpk/6000.0 - 1.0
|
|
|
|
itry0keep=itry0
|
|
|
|
iterkeep=iter
|
2016-07-26 12:04:57 -04:00
|
|
|
endif
|
2016-07-21 11:23:32 -04:00
|
|
|
enddo
|
2016-12-06 13:29:22 -05:00
|
|
|
if(irc.eq.0) exit
|
2016-07-21 11:23:32 -04:00
|
|
|
enddo
|
2016-12-06 13:29:22 -05:00
|
|
|
|
|
|
|
if(napmin.ne.99) then
|
|
|
|
dat4=dat4x
|
|
|
|
b90=b90x
|
|
|
|
snr2=snr2x
|
|
|
|
irc=irckeep
|
|
|
|
dtx=dtxkeep
|
|
|
|
itry0=itry0keep
|
|
|
|
iter=iterkeep
|
|
|
|
endif
|
|
|
|
10 decoded=' '
|
|
|
|
|
|
|
|
if(irc.ge.0) then
|
|
|
|
call unpackmsg(dat4,decoded) !Unpack the user message
|
|
|
|
call fmtmsg(decoded,iz)
|
|
|
|
if(index(decoded,"000AAA ").ge.1) then
|
|
|
|
! Suppress a certain type of garbage decode.
|
|
|
|
decoded=' '
|
|
|
|
irc=-1
|
|
|
|
endif
|
|
|
|
nft=100 + irc
|
|
|
|
nsnr=nint(snr2)
|
|
|
|
else
|
|
|
|
snr2=0.
|
2016-08-16 15:17:45 -04:00
|
|
|
endif
|
2016-12-06 13:29:22 -05:00
|
|
|
|
2016-11-15 16:39:55 -05:00
|
|
|
if(irc.lt.0) then
|
2016-12-02 09:23:37 -05:00
|
|
|
sy=max(1.0,sync-2.5)
|
2016-11-15 16:39:55 -05:00
|
|
|
if(nSubmode.eq.0) nsnr=nint(10.0*log10(sy)-38.0) !A
|
|
|
|
if(nSubmode.eq.1) nsnr=nint(10.0*log10(sy)-36.0) !B
|
|
|
|
if(nSubmode.eq.2) nsnr=nint(10.0*log10(sy)-34.0) !C
|
|
|
|
if(nSubmode.eq.3) nsnr=nint(10.0*log10(sy)-29.0) !D
|
|
|
|
if(nSubmode.eq.4) nsnr=nint(10.0*log10(sy)-24.0) !E
|
2016-11-27 10:50:47 -05:00
|
|
|
endif
|
2016-11-15 16:39:55 -05:00
|
|
|
call timer('qra64a ',1)
|
2016-07-21 11:23:32 -04:00
|
|
|
|
2016-12-06 13:29:22 -05:00
|
|
|
900 return
|
2016-07-26 12:04:57 -04:00
|
|
|
end subroutine qra64a
|