mirror of
https://github.com/saitohirga/WSJT-X.git
synced 2024-11-14 16:11:50 -05:00
Many tweaks to QRA64 decoder to optimize processing of 6m ionoscatter signals.
This commit is contained in:
parent
c17acdb447
commit
f38f355395
@ -12,7 +12,7 @@ subroutine qra64a(dd,npts,nf1,nf2,nfqso,ntol,mode64,minsync,ndepth, &
|
|||||||
logical ltext
|
logical ltext
|
||||||
complex c00(0:720000) !Complex spectrum of dd()
|
complex c00(0:720000) !Complex spectrum of dd()
|
||||||
complex c0(0:720000) !Complex data for dd()
|
complex c0(0:720000) !Complex data for dd()
|
||||||
real a(3)
|
real a(3) !twkfreq params f,f1,f2
|
||||||
real dd(NMAX) !Raw data sampled at 12000 Hz
|
real dd(NMAX) !Raw data sampled at 12000 Hz
|
||||||
real s3(LN) !Symbol spectra
|
real s3(LN) !Symbol spectra
|
||||||
real s3a(LN) !Symbol spectra
|
real s3a(LN) !Symbol spectra
|
||||||
@ -62,39 +62,49 @@ subroutine qra64a(dd,npts,nf1,nf2,nfqso,ntol,mode64,minsync,ndepth, &
|
|||||||
npts2=npts/2
|
npts2=npts/2
|
||||||
|
|
||||||
call timer('sync64 ',0)
|
call timer('sync64 ',0)
|
||||||
call sync64(c00,nf1,nf2,nfqso,ntol,mode64,emedelay,dtx,f0,jpk0,sync, &
|
call sync64(c00,nf1,nf2,nfqso,ntol,minsync,mode64,emedelay,dtx,f0, &
|
||||||
sync2,width)
|
jpk0,sync,sync2,width)
|
||||||
call timer('sync64 ',1)
|
call timer('sync64 ',1)
|
||||||
nfreq=nint(f0)
|
nfreq=nint(f0)
|
||||||
if(mode64.eq.1 .and. minsync.ge.0 .and. (sync-7.0).lt.minsync) go to 900
|
if(mode64.eq.1 .and. minsync.ne.-1 .and. (sync-7.0).lt.minsync) go to 900
|
||||||
! if((sync-3.4).lt.float(minsync) .or.width.gt.340.0) go to 900
|
|
||||||
a=0.
|
|
||||||
a(1)=-f0
|
|
||||||
call twkfreq(c00,c0,npts2,6000.0,a)
|
|
||||||
|
|
||||||
irc=-99
|
irc=-99
|
||||||
s3lim=20.
|
s3lim=20.
|
||||||
itz=11
|
ibwmax=11
|
||||||
if(mode64.eq.4) itz=9
|
if(mode64.le.4) ibwmax=9
|
||||||
if(mode64.eq.2) itz=7
|
ibwmin=0
|
||||||
if(mode64.eq.1) itz=5
|
idtmax=5
|
||||||
|
if(minsync.eq.-2) then
|
||||||
|
ibwmin=ibwmax
|
||||||
|
idtmax=3
|
||||||
|
endif
|
||||||
LL=64*(mode64+2)
|
LL=64*(mode64+2)
|
||||||
NN=63
|
NN=63
|
||||||
napmin=99
|
napmin=99
|
||||||
do itry0=1,5
|
ncall=0
|
||||||
idt=itry0/2
|
|
||||||
if(mod(itry0,2).eq.0) idt=-idt
|
do idf0=1,11
|
||||||
|
idf=idf0/2
|
||||||
|
if(mod(idf0,2).eq.0) idf=-idf
|
||||||
|
|
||||||
|
a=0.
|
||||||
|
a(1)=-(f0+0.868*idf)
|
||||||
|
call twkfreq(c00,c0,npts2,6000.0,a)
|
||||||
|
|
||||||
|
do idt0=1,idtmax
|
||||||
|
idt=idt0/2
|
||||||
|
if(mod(idt0,2).eq.0) idt=-idt
|
||||||
jpk=jpk0 + 750*idt
|
jpk=jpk0 + 750*idt
|
||||||
call spec64(c0,jpk,s3a,LL,NN)
|
call spec64(c0,jpk,s3a,LL,NN)
|
||||||
call pctile(s3a,LL*NN,40,base)
|
call pctile(s3a,LL*NN,40,base)
|
||||||
s3a=s3a/base
|
s3a=s3a/base
|
||||||
where(s3a(1:LL*NN)>s3lim) s3a(1:LL*NN)=s3lim
|
where(s3a(1:LL*NN)>s3lim) s3a(1:LL*NN)=s3lim
|
||||||
do iter=itz,0,-2
|
do ibw=ibwmax,ibwmin,-2
|
||||||
b90=1.728**iter
|
b90=1.728**ibw
|
||||||
if(b90.gt.230.0) cycle
|
if(b90.gt.230.0) cycle
|
||||||
if(b90.lt.0.15*width) exit
|
if(b90.lt.0.15*width) exit
|
||||||
s3(1:LL*NN)=s3a(1:LL*NN)
|
s3(1:LL*NN)=s3a(1:LL*NN)
|
||||||
|
ncall=ncall+1
|
||||||
call timer('qra64_de',0)
|
call timer('qra64_de',0)
|
||||||
call qra64_dec(s3,nc1,nc2,ng2,naptype,0,nSubmode,b90, &
|
call qra64_dec(s3,nc1,nc2,ng2,naptype,0,nSubmode,b90, &
|
||||||
nFadingModel,dat4,snr2,irc)
|
nFadingModel,dat4,snr2,irc)
|
||||||
@ -109,21 +119,27 @@ subroutine qra64a(dd,npts,nf1,nf2,nfqso,ntol,mode64,minsync,ndepth, &
|
|||||||
napmin=nap(iirc)
|
napmin=nap(iirc)
|
||||||
irckeep=irc
|
irckeep=irc
|
||||||
dtxkeep=jpk/6000.0 - 1.0
|
dtxkeep=jpk/6000.0 - 1.0
|
||||||
itry0keep=itry0
|
f0keep=-a(1)
|
||||||
iterkeep=iter
|
idfkeep=idf
|
||||||
|
idtkeep=idt
|
||||||
|
ibwkeep=ibw
|
||||||
endif
|
endif
|
||||||
enddo
|
enddo
|
||||||
if(irc.eq.0) exit
|
if(iand(ndepth,3).lt.3 .and. irc.ge.0) go to 100
|
||||||
enddo
|
if(irc.eq.0) go to 100
|
||||||
|
enddo ! idt (DT loop)
|
||||||
|
enddo ! idf (f0 loop)
|
||||||
|
|
||||||
if(napmin.ne.99) then
|
100 if(napmin.ne.99) then
|
||||||
dat4=dat4x
|
dat4=dat4x
|
||||||
b90=b90x
|
b90=b90x
|
||||||
snr2=snr2x
|
snr2=snr2x
|
||||||
irc=irckeep
|
irc=irckeep
|
||||||
dtx=dtxkeep
|
dtx=dtxkeep
|
||||||
itry0=itry0keep
|
f0=f0keep
|
||||||
iter=iterkeep
|
idt=idtkeep
|
||||||
|
idf=idfkeep
|
||||||
|
ibw=ibwkeep
|
||||||
endif
|
endif
|
||||||
10 decoded=' '
|
10 decoded=' '
|
||||||
|
|
||||||
@ -140,6 +156,9 @@ subroutine qra64a(dd,npts,nf1,nf2,nfqso,ntol,mode64,minsync,ndepth, &
|
|||||||
else
|
else
|
||||||
snr2=0.
|
snr2=0.
|
||||||
endif
|
endif
|
||||||
|
nfreq=nint(f0)
|
||||||
|
write(71,3071) idf,idt,ncall,irc,nsnr,dtx,nfreq,decoded
|
||||||
|
3071 format(5i5,f7.2,i6,2x,a22)
|
||||||
|
|
||||||
900 if(irc.lt.0) then
|
900 if(irc.lt.0) then
|
||||||
sy=max(1.0,sync)
|
sy=max(1.0,sync)
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
subroutine sync64(c0,nf1,nf2,nfqso,ntol,mode64,emedelay,dtx,f0,jpk,sync, &
|
subroutine sync64(c0,nf1,nf2,nfqso,ntol,minsync,mode64,emedelay,dtx,f0, &
|
||||||
sync2,width)
|
jpk,sync,sync2,width)
|
||||||
|
|
||||||
use timer_module, only: timer
|
use timer_module, only: timer
|
||||||
|
|
||||||
@ -61,11 +61,13 @@ subroutine sync64(c0,nf1,nf2,nfqso,ntol,mode64,emedelay,dtx,f0,jpk,sync, &
|
|||||||
smaxall=0.
|
smaxall=0.
|
||||||
jpk=0
|
jpk=0
|
||||||
ja=0
|
ja=0
|
||||||
jb=(5.0+emedelay)*6000 !Bigger range than necessary?
|
! jb=(5.0+emedelay)*6000 !Bigger range than necessary?
|
||||||
|
jb=(2.0+emedelay)*6000 !Bigger range than necessary?
|
||||||
jstep=100
|
jstep=100
|
||||||
ipk=0
|
ipk=0
|
||||||
kpk=0
|
kpk=0
|
||||||
nadd=10*mode64
|
nadd=10*mode64
|
||||||
|
if(minsync.eq.-2) nadd=10 !###
|
||||||
if(mod(nadd,2).eq.0) nadd=nadd+1 !Make nadd odd
|
if(mod(nadd,2).eq.0) nadd=nadd+1 !Make nadd odd
|
||||||
nskip=max(49,nadd)
|
nskip=max(49,nadd)
|
||||||
|
|
||||||
@ -96,7 +98,9 @@ subroutine sync64(c0,nf1,nf2,nfqso,ntol,mode64,emedelay,dtx,f0,jpk,sync, &
|
|||||||
s0(:ia-1)=0.
|
s0(:ia-1)=0.
|
||||||
s0(ib+1:)=0.
|
s0(ib+1:)=0.
|
||||||
if(nadd.ge.3) then !Smooth the spectrum
|
if(nadd.ge.3) then !Smooth the spectrum
|
||||||
do ii=1,3
|
iiz=3
|
||||||
|
if(minsync.eq.-2) iiz=1
|
||||||
|
do ii=1,iiz !### Was ii=1,3
|
||||||
s0b(ia:ib)=s0(ia:ib)
|
s0b(ia:ib)=s0(ia:ib)
|
||||||
call smo(s0b(ia:ib),iz,s0(ia:ib),nadd)
|
call smo(s0b(ia:ib),iz,s0(ia:ib),nadd)
|
||||||
enddo
|
enddo
|
||||||
@ -117,8 +121,6 @@ subroutine sync64(c0,nf1,nf2,nfqso,ntol,mode64,emedelay,dtx,f0,jpk,sync, &
|
|||||||
enddo ! j1 (DT loop)
|
enddo ! j1 (DT loop)
|
||||||
|
|
||||||
s0a=s0a+2.0
|
s0a=s0a+2.0
|
||||||
! write(17) ia,ib,s0a(ia:ib) !Save data for red curve
|
|
||||||
! close(17)
|
|
||||||
|
|
||||||
nskip=50
|
nskip=50
|
||||||
call lorentzian(s0a(ia+nskip:ib-nskip),iz-2*nskip,a)
|
call lorentzian(s0a(ia+nskip:ib-nskip),iz-2*nskip,a)
|
||||||
|
@ -799,7 +799,7 @@ QPushButton[state="ok"] {
|
|||||||
<string>Sync </string>
|
<string>Sync </string>
|
||||||
</property>
|
</property>
|
||||||
<property name="minimum">
|
<property name="minimum">
|
||||||
<number>-1</number>
|
<number>-2</number>
|
||||||
</property>
|
</property>
|
||||||
<property name="maximum">
|
<property name="maximum">
|
||||||
<number>10</number>
|
<number>10</number>
|
||||||
|
Loading…
Reference in New Issue
Block a user