| 
									
										
										
										
											2020-09-25 12:21:57 -04:00
										 |  |  | subroutine spec_qra65(c0,nsps,s3,LL,NN)
 | 
					
						
							| 
									
										
										
										
											2020-08-09 11:04:49 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  | ! Compute synchronized symbol spectra.  
 | 
					
						
							| 
									
										
										
										
											2020-08-01 09:24:59 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-08-05 11:06:18 -04:00
										 |  |  |   complex c0(0:85*nsps-1)                !Synchronized complex data at 6000 S/s
 | 
					
						
							| 
									
										
										
										
											2020-10-17 13:16:46 -04:00
										 |  |  |   complex, allocatable :: cs(:)          !Complex symbol spectrum
 | 
					
						
							| 
									
										
										
										
											2020-08-05 11:06:18 -04:00
										 |  |  |   real s3(LL,NN)                         !Synchronized symbol spectra
 | 
					
						
							| 
									
										
										
										
											2020-08-09 11:04:49 -04:00
										 |  |  |   real xbase0(LL),xbase(LL)              !Work arrays
 | 
					
						
							| 
									
										
										
										
											2020-09-25 10:55:21 -04:00
										 |  |  |   integer isync(22)                      !Indices of sync symbols
 | 
					
						
							|  |  |  |   data isync/1,9,12,13,15,22,23,26,27,33,35,38,46,50,55,60,62,66,69,74,76,85/
 | 
					
						
							| 
									
										
										
										
											2020-08-01 09:24:59 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-10-17 13:16:46 -04:00
										 |  |  |   allocate(cs(0:nsps-1))
 | 
					
						
							| 
									
										
										
										
											2020-08-05 11:06:18 -04:00
										 |  |  |   fac=1.0/nsps
 | 
					
						
							| 
									
										
										
										
											2020-09-25 10:55:21 -04:00
										 |  |  |   j=0
 | 
					
						
							|  |  |  |   n=1
 | 
					
						
							|  |  |  |   do k=1,84
 | 
					
						
							|  |  |  |      if(k.eq.isync(n)) then
 | 
					
						
							|  |  |  |         n=n+1
 | 
					
						
							|  |  |  |         cycle
 | 
					
						
							|  |  |  |      endif
 | 
					
						
							|  |  |  |      j=j+1
 | 
					
						
							|  |  |  |      ja=(k-1)*nsps
 | 
					
						
							| 
									
										
										
										
											2020-08-05 11:06:18 -04:00
										 |  |  |      jb=ja+nsps-1
 | 
					
						
							| 
									
										
										
										
											2020-08-01 09:24:59 -04:00
										 |  |  |      cs=fac*c0(ja:jb)
 | 
					
						
							| 
									
										
										
										
											2020-08-05 11:06:18 -04:00
										 |  |  |      call four2a(cs,nsps,1,-1,1)             !c2c FFT to frequency
 | 
					
						
							| 
									
										
										
										
											2020-08-01 09:24:59 -04:00
										 |  |  |      do ii=1,LL
 | 
					
						
							|  |  |  |         i=ii-65
 | 
					
						
							| 
									
										
										
										
											2020-08-05 11:06:18 -04:00
										 |  |  |         if(i.lt.0) i=i+nsps
 | 
					
						
							| 
									
										
										
										
											2020-08-01 09:24:59 -04:00
										 |  |  |         s3(ii,j)=real(cs(i))**2 + aimag(cs(i))**2
 | 
					
						
							|  |  |  |      enddo
 | 
					
						
							|  |  |  |   enddo
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-08-05 11:06:18 -04:00
										 |  |  |   df=6000.0/nsps
 | 
					
						
							| 
									
										
										
										
											2020-08-01 09:24:59 -04:00
										 |  |  |   do i=1,LL
 | 
					
						
							|  |  |  |      call pctile(s3(i,1:NN),NN,45,xbase0(i)) !Get baseline for passband shape
 | 
					
						
							|  |  |  |   enddo
 | 
					
						
							|  |  |  |   
 | 
					
						
							|  |  |  |   nh=9
 | 
					
						
							|  |  |  |   xbase(1:nh-1)=sum(xbase0(1:nh-1))/(nh-1.0)
 | 
					
						
							|  |  |  |   xbase(LL-nh+1:LL)=sum(xbase0(LL-nh+1:LL))/(nh-1.0)
 | 
					
						
							|  |  |  |   do i=nh,LL-nh
 | 
					
						
							|  |  |  |      xbase(i)=sum(xbase0(i-nh+1:i+nh))/(2*nh+1)  !Smoothed passband shape
 | 
					
						
							|  |  |  |   enddo
 | 
					
						
							|  |  |  |   
 | 
					
						
							|  |  |  |   do i=1,LL
 | 
					
						
							|  |  |  |      s3(i,1:NN)=s3(i,1:NN)/(xbase(i)+0.001) !Apply frequency equalization
 | 
					
						
							|  |  |  |   enddo
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   return
 | 
					
						
							| 
									
										
										
										
											2020-09-25 12:21:57 -04:00
										 |  |  | end subroutine spec_qra65
 |