mirror of
				https://github.com/saitohirga/WSJT-X.git
				synced 2025-11-03 21:40:52 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			49 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			Fortran
		
	
	
	
	
	
			
		
		
	
	
			49 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			Fortran
		
	
	
	
	
	
subroutine ft4_downsample(dd,newdata,f0,c)
 | 
						|
 | 
						|
   include 'ft4_params.f90'
 | 
						|
   parameter (NFFT2=NMAX/NDOWN)
 | 
						|
   real dd(NMAX)
 | 
						|
   complex c(0:NMAX/NDOWN-1)
 | 
						|
   complex c1(0:NFFT2-1)
 | 
						|
   complex cx(0:NMAX/2)
 | 
						|
   real x(NMAX), window(0:NFFT2-1)
 | 
						|
   equivalence (x,cx)
 | 
						|
   logical first, newdata
 | 
						|
   data first/.true./
 | 
						|
   save first,window,x
 | 
						|
 | 
						|
   df=12000.0/NMAX
 | 
						|
   baud=12000.0/NSPS
 | 
						|
   if(first) then
 | 
						|
      bw_transition = 0.5*baud
 | 
						|
      bw_flat = 4*baud
 | 
						|
      iwt = bw_transition / df
 | 
						|
      iwf = bw_flat / df
 | 
						|
      pi=4.0*atan(1.0)
 | 
						|
      window(0:iwt-1) = 0.5*(1+cos(pi*(/(i,i=iwt-1,0,-1)/)/iwt))
 | 
						|
      window(iwt:iwt+iwf-1)=1.0
 | 
						|
      window(iwt+iwf:2*iwt+iwf-1) = 0.5*(1+cos(pi*(/(i,i=0,iwt-1)/)/iwt))
 | 
						|
      window(2*iwt+iwf:)=0.0
 | 
						|
      iws = baud / df
 | 
						|
      window=cshift(window,iws)
 | 
						|
      first=.false.
 | 
						|
   endif
 | 
						|
 | 
						|
   if(newdata) then
 | 
						|
      x=dd
 | 
						|
      call four2a(cx,NMAX,1,-1,0)             !r2c FFT to freq domain
 | 
						|
   endif
 | 
						|
   i0=nint(f0/df)
 | 
						|
   c1=0.
 | 
						|
   if(i0.ge.0 .and. i0.le.NMAX/2) c1(0)=cx(i0)
 | 
						|
   do i=1,NFFT2/2
 | 
						|
      if(i0+i.ge.0 .and. i0+i.le.NMAX/2) c1(i)=cx(i0+i)
 | 
						|
      if(i0-i.ge.0 .and. i0-i.le.NMAX/2) c1(NFFT2-i)=cx(i0-i)
 | 
						|
   enddo
 | 
						|
   c1=c1*window/NFFT2
 | 
						|
   call four2a(c1,NFFT2,1,1,1)            !c2c FFT back to time domain
 | 
						|
   c=c1(0:NMAX/NDOWN-1)
 | 
						|
 | 
						|
   return
 | 
						|
end subroutine ft4_downsample
 |