| 
									
										
										
										
											2013-05-15 15:17:36 +00:00
										 |  |  | subroutine symspec2(c5,nz3,nsps8,nspsd,fsample,freq,drift,snrdb,schk,    &
 | 
					
						
							|  |  |  |      i1SoftSymbolsScrambled)
 | 
					
						
							| 
									
										
										
										
											2012-11-27 15:38:03 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-04-22 15:43:02 +00:00
										 |  |  | ! Compute soft symbols from the final downsampled data
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-11-27 15:38:03 +00:00
										 |  |  |   complex c5(0:4096-1)
 | 
					
						
							|  |  |  |   complex z
 | 
					
						
							|  |  |  |   integer*1 i1SoftSymbolsScrambled(207)
 | 
					
						
							|  |  |  |   real aa(3)
 | 
					
						
							|  |  |  |   real ss2(0:8,85)
 | 
					
						
							|  |  |  |   real ss3(0:7,69)
 | 
					
						
							| 
									
										
										
										
											2013-05-16 16:02:00 +00:00
										 |  |  |   include 'jt9sync.f90'
 | 
					
						
							| 
									
										
										
										
											2013-07-17 19:13:36 +00:00
										 |  |  |   data scale/10.0/
 | 
					
						
							| 
									
										
										
										
											2012-11-27 15:38:03 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |   aa(1)=-1500.0/nsps8
 | 
					
						
							|  |  |  |   aa(2)=0.
 | 
					
						
							|  |  |  |   aa(3)=0.
 | 
					
						
							| 
									
										
										
										
											2013-04-22 15:43:02 +00:00
										 |  |  |   do i=0,8                                         !Loop over the 9 tones
 | 
					
						
							| 
									
										
										
										
											2012-11-27 15:38:03 +00:00
										 |  |  |      if(i.ge.1) call twkfreq(c5,c5,nz3,fsample,aa)
 | 
					
						
							|  |  |  |      m=0
 | 
					
						
							|  |  |  |      k=-1
 | 
					
						
							| 
									
										
										
										
											2013-04-22 15:43:02 +00:00
										 |  |  |      do j=1,85                                     !Loop over all symbols
 | 
					
						
							| 
									
										
										
										
											2012-11-27 15:38:03 +00:00
										 |  |  |         z=0.
 | 
					
						
							| 
									
										
										
										
											2013-04-22 15:43:02 +00:00
										 |  |  |         do n=1,nspsd                               !Sum over 16 samples
 | 
					
						
							| 
									
										
										
										
											2012-11-27 15:38:03 +00:00
										 |  |  |            k=k+1
 | 
					
						
							|  |  |  |            z=z+c5(k)
 | 
					
						
							|  |  |  |         enddo
 | 
					
						
							| 
									
										
										
										
											2013-04-22 15:43:02 +00:00
										 |  |  |         ss2(i,j)=real(z)**2 + aimag(z)**2        !Symbol speactra, data and sync
 | 
					
						
							| 
									
										
										
										
											2012-11-27 15:38:03 +00:00
										 |  |  |         if(i.ge.1 .and. isync(j).eq.0) then
 | 
					
						
							|  |  |  |            m=m+1
 | 
					
						
							| 
									
										
										
										
											2013-04-22 15:43:02 +00:00
										 |  |  |            ss3(i-1,m)=ss2(i,j)                   !Symbol speactra, data only
 | 
					
						
							| 
									
										
										
										
											2012-11-27 15:38:03 +00:00
										 |  |  |         endif
 | 
					
						
							|  |  |  |      enddo
 | 
					
						
							|  |  |  |   enddo
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-05-16 16:02:00 +00:00
										 |  |  |   call chkss2(ss2,freq,drift,schk)
 | 
					
						
							| 
									
										
										
										
											2013-07-17 19:13:36 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-11-27 15:38:03 +00:00
										 |  |  |   ss=0.
 | 
					
						
							|  |  |  |   sig=0.
 | 
					
						
							|  |  |  |   do j=1,69
 | 
					
						
							|  |  |  |      smax=0.
 | 
					
						
							|  |  |  |      do i=0,7
 | 
					
						
							|  |  |  |         smax=max(smax,ss3(i,j))
 | 
					
						
							|  |  |  |         ss=ss+ss3(i,j)
 | 
					
						
							|  |  |  |      enddo
 | 
					
						
							|  |  |  |      sig=sig+smax
 | 
					
						
							|  |  |  |      ss=ss-smax
 | 
					
						
							|  |  |  |   enddo
 | 
					
						
							| 
									
										
										
										
											2013-04-22 15:43:02 +00:00
										 |  |  |   ave=ss/(69*7)                           !Baseline
 | 
					
						
							| 
									
										
										
										
											2012-11-27 15:38:03 +00:00
										 |  |  |   call pctile(ss2,9*85,35,xmed)
 | 
					
						
							|  |  |  |   ss3=ss3/ave
 | 
					
						
							| 
									
										
										
										
											2013-04-22 15:43:02 +00:00
										 |  |  |   sig=sig/69.                             !Signal
 | 
					
						
							| 
									
										
										
										
											2012-11-27 16:48:50 +00:00
										 |  |  |   t=max(1.0,sig - 1.0)
 | 
					
						
							| 
									
										
										
										
											2012-11-27 17:10:28 +00:00
										 |  |  |   snrdb=db(t) - 61.3
 | 
					
						
							| 
									
										
										
										
											2012-11-27 15:38:03 +00:00
										 |  |  |      
 | 
					
						
							|  |  |  |   m0=3
 | 
					
						
							|  |  |  |   k=0
 | 
					
						
							|  |  |  |   do j=1,69
 | 
					
						
							|  |  |  |         smax=0.
 | 
					
						
							|  |  |  |         do i=0,7
 | 
					
						
							|  |  |  |            if(ss3(i,j).gt.smax) smax=ss3(i,j)
 | 
					
						
							|  |  |  |         enddo
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |      do m=m0-1,0,-1                   !Get bit-wise soft symbols
 | 
					
						
							|  |  |  |         if(m.eq.2) then
 | 
					
						
							|  |  |  |            r1=max(ss3(4,j),ss3(5,j),ss3(6,j),ss3(7,j))
 | 
					
						
							|  |  |  |            r0=max(ss3(0,j),ss3(1,j),ss3(2,j),ss3(3,j))
 | 
					
						
							|  |  |  |         else if(m.eq.1) then
 | 
					
						
							|  |  |  |            r1=max(ss3(2,j),ss3(3,j),ss3(4,j),ss3(5,j))
 | 
					
						
							|  |  |  |            r0=max(ss3(0,j),ss3(1,j),ss3(6,j),ss3(7,j))
 | 
					
						
							|  |  |  |         else
 | 
					
						
							|  |  |  |            r1=max(ss3(1,j),ss3(2,j),ss3(4,j),ss3(7,j))
 | 
					
						
							|  |  |  |            r0=max(ss3(0,j),ss3(3,j),ss3(5,j),ss3(6,j))
 | 
					
						
							|  |  |  |         endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         k=k+1
 | 
					
						
							| 
									
										
										
										
											2013-07-17 19:13:36 +00:00
										 |  |  |         i4=nint(scale*(r1-r0))
 | 
					
						
							| 
									
										
										
										
											2012-11-27 15:38:03 +00:00
										 |  |  |         if(i4.lt.-127) i4=-127
 | 
					
						
							|  |  |  |         if(i4.gt.127) i4=127
 | 
					
						
							| 
									
										
										
										
											2015-03-04 17:07:15 +00:00
										 |  |  | !        i4=i4+128
 | 
					
						
							|  |  |  | !        if(i4.le.127) i1SoftSymbolsScrambled(k)=i4
 | 
					
						
							|  |  |  | !        if(i4.ge.128) i1SoftSymbolsScrambled(k)=i4-256
 | 
					
						
							|  |  |  |         i1SoftSymbolsScrambled(k)=i4
 | 
					
						
							| 
									
										
										
										
											2012-11-27 15:38:03 +00:00
										 |  |  |      enddo
 | 
					
						
							|  |  |  |   enddo
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-02-27 15:38:24 +00:00
										 |  |  |   return
 | 
					
						
							| 
									
										
										
										
											2012-11-27 15:38:03 +00:00
										 |  |  | end subroutine symspec2
 |