2017-07-06 08:07:17 -04:00
|
|
|
subroutine ft8_downsample(dd,newdat,f0,c1)
|
|
|
|
|
2017-07-06 09:38:06 -04:00
|
|
|
! Downconvert to complex data sampled at 200 Hz ==> 32 samples/symbol
|
2017-07-06 08:07:17 -04:00
|
|
|
|
2017-07-06 10:19:39 -04:00
|
|
|
parameter (NMAX=15*12000,NSPS=1920)
|
2017-07-06 09:38:06 -04:00
|
|
|
parameter (NFFT1=192000,NFFT2=3200) !192000/60 = 3200
|
|
|
|
|
2018-07-02 17:13:27 -04:00
|
|
|
logical newdat,first
|
2017-07-06 08:07:17 -04:00
|
|
|
complex c1(0:NFFT2-1)
|
|
|
|
complex cx(0:NFFT1/2)
|
2018-07-02 17:13:27 -04:00
|
|
|
real dd(NMAX),x(NFFT1),taper(0:100)
|
2017-07-06 08:07:17 -04:00
|
|
|
equivalence (x,cx)
|
2018-07-02 17:13:27 -04:00
|
|
|
data first/.true./
|
|
|
|
save cx,first,taper
|
2017-07-06 08:07:17 -04:00
|
|
|
|
2018-07-02 17:13:27 -04:00
|
|
|
if(first) then
|
|
|
|
pi=4.0*atan(1.0)
|
|
|
|
do i=0,100
|
|
|
|
taper(i)=0.5*(1.0+cos(i*pi/100))
|
|
|
|
enddo
|
|
|
|
first=.false.
|
|
|
|
endif
|
2017-07-06 08:07:17 -04:00
|
|
|
if(newdat) then
|
2018-07-02 17:13:27 -04:00
|
|
|
! Data in dd have changed, recompute the long FFT
|
2017-07-06 08:07:17 -04:00
|
|
|
x(1:NMAX)=dd
|
|
|
|
x(NMAX+1:NFFT1)=0. !Zero-pad the x array
|
|
|
|
call four2a(cx,NFFT1,1,-1,0) !r2c FFT to freq domain
|
|
|
|
newdat=.false.
|
|
|
|
endif
|
|
|
|
|
|
|
|
df=12000.0/NFFT1
|
2017-07-06 10:19:39 -04:00
|
|
|
baud=12000.0/NSPS
|
2017-07-06 08:07:17 -04:00
|
|
|
i0=nint(f0/df)
|
2018-07-02 17:13:27 -04:00
|
|
|
ft=f0+8.5*baud
|
2017-07-06 08:07:17 -04:00
|
|
|
it=min(nint(ft/df),NFFT1/2)
|
2018-07-02 17:13:27 -04:00
|
|
|
fb=f0-1.5*baud
|
2017-07-06 08:07:17 -04:00
|
|
|
ib=max(1,nint(fb/df))
|
|
|
|
k=0
|
|
|
|
c1=0.
|
|
|
|
do i=ib,it
|
|
|
|
c1(k)=cx(i)
|
|
|
|
k=k+1
|
|
|
|
enddo
|
2018-07-02 17:13:27 -04:00
|
|
|
c1(0:100)=c1(0:100)*taper(100:0:-1)
|
|
|
|
c1(k-1-100:k-1)=c1(k-1-100:k-1)*taper
|
2017-07-06 08:07:17 -04:00
|
|
|
c1=cshift(c1,i0-ib)
|
|
|
|
call four2a(c1,NFFT2,1,1,1) !c2c FFT back to time domain
|
|
|
|
fac=1.0/sqrt(float(NFFT1)*NFFT2)
|
|
|
|
c1=fac*c1
|
|
|
|
|
|
|
|
return
|
|
|
|
end subroutine ft8_downsample
|