2012-09-30 20:02:36 -04:00
|
|
|
program jt9
|
|
|
|
|
|
|
|
! Decoder for JT9. Can run stand-alone, reading data from *.wav files;
|
|
|
|
! or as the back end of wsjt-x, with data placed in a shared memory region.
|
|
|
|
|
2013-05-20 10:09:02 -04:00
|
|
|
parameter (NTMAX=120)
|
|
|
|
parameter (NMAX=NTMAX*12000) !Total sample intervals per 30 minutes
|
|
|
|
parameter (NDMAX=NTMAX*1500) !Sample intervals at 1500 Hz rate
|
|
|
|
parameter (NSMAX=1365) !Max length of saved spectra
|
2012-10-01 15:05:22 -04:00
|
|
|
integer*4 ihdr(11)
|
|
|
|
real*4 s(NSMAX)
|
2012-11-06 14:49:19 -05:00
|
|
|
real*4 ccfred(NSMAX)
|
2012-09-30 20:02:36 -04:00
|
|
|
logical*1 lstrong(0:1023)
|
2012-10-01 15:05:22 -04:00
|
|
|
integer*2 id2
|
2012-11-21 12:42:53 -05:00
|
|
|
complex c0
|
2013-05-20 10:09:02 -04:00
|
|
|
character*80 arg,infile
|
2012-11-21 12:42:53 -05:00
|
|
|
common/jt9com/ss(184,NSMAX),savg(NSMAX),c0(NDMAX),id2(NMAX),nutc,ndiskdat, &
|
|
|
|
ntr,mousefqso,newdat,nfa,nfb,ntol,kin,nzhsym,nsynced,ndecoded
|
2012-11-21 13:27:49 -05:00
|
|
|
common/tracer/limtrace,lu
|
2012-09-30 20:02:36 -04:00
|
|
|
|
|
|
|
nargs=iargc()
|
|
|
|
if(nargs.lt.1) then
|
2013-04-16 14:33:38 -04:00
|
|
|
print*,'Usage: jt9 TRperiod ndepth file1 [file2 ...]'
|
2012-09-30 20:02:36 -04:00
|
|
|
print*,' Reads data from *.wav files.'
|
|
|
|
print*,''
|
|
|
|
print*,' jt9 -s'
|
|
|
|
print*,' Gets data from shared memory region.'
|
|
|
|
go to 999
|
|
|
|
endif
|
|
|
|
call getarg(1,arg)
|
2012-11-21 12:42:53 -05:00
|
|
|
if(arg(1:2).eq.'-s') then
|
|
|
|
call jt9a
|
|
|
|
go to 999
|
|
|
|
endif
|
2012-10-01 15:05:22 -04:00
|
|
|
read(arg,*) ntrperiod
|
2013-04-16 14:33:38 -04:00
|
|
|
call getarg(2,arg)
|
|
|
|
read(arg,*) ndepth
|
|
|
|
ifile1=3
|
2012-10-01 15:05:22 -04:00
|
|
|
|
2012-11-21 13:27:49 -05:00
|
|
|
limtrace=0
|
|
|
|
lu=12
|
2012-10-01 15:05:22 -04:00
|
|
|
nfa=1000
|
|
|
|
nfb=2000
|
2013-04-22 11:08:20 -04:00
|
|
|
mousefqso=1500
|
2012-10-01 15:05:22 -04:00
|
|
|
newdat=1
|
|
|
|
nb=0
|
2013-04-16 14:33:38 -04:00
|
|
|
nbslider=30
|
2012-11-12 16:06:31 -05:00
|
|
|
ndiskdat=1
|
2012-09-30 20:02:36 -04:00
|
|
|
|
|
|
|
do ifile=ifile1,nargs
|
|
|
|
call getarg(ifile,infile)
|
|
|
|
open(10,file=infile,access='stream',status='old',err=998)
|
2012-10-01 15:05:22 -04:00
|
|
|
read(10) ihdr
|
|
|
|
i1=index(infile,'.wav')
|
2012-09-30 20:02:36 -04:00
|
|
|
read(infile(i1-4:i1-1),*,err=1) nutc0
|
|
|
|
go to 2
|
|
|
|
1 nutc0=0
|
2012-10-01 15:05:22 -04:00
|
|
|
2 nsps=0
|
2012-11-21 12:42:53 -05:00
|
|
|
if(ntrperiod.eq.1) then
|
|
|
|
nsps=6912
|
2013-04-16 12:25:14 -04:00
|
|
|
nzhsym=173
|
2012-11-21 12:42:53 -05:00
|
|
|
else if(ntrperiod.eq.2) then
|
|
|
|
nsps=15360
|
|
|
|
nzhsym=178
|
|
|
|
else if(ntrperiod.eq.5) then
|
|
|
|
nsps=40960
|
|
|
|
nzhsym=172
|
|
|
|
else if(ntrperiod.eq.10) then
|
|
|
|
nsps=82944
|
|
|
|
nzhsym=171
|
|
|
|
else if(ntrperiod.eq.30) then
|
|
|
|
nsps=252000
|
|
|
|
nzhsym=167
|
|
|
|
endif
|
2012-11-12 13:28:28 -05:00
|
|
|
if(nsps.eq.0) stop 'Error: bad TRperiod'
|
2012-10-01 15:05:22 -04:00
|
|
|
|
|
|
|
kstep=nsps/2
|
2012-09-30 20:02:36 -04:00
|
|
|
k=0
|
2012-10-01 15:05:22 -04:00
|
|
|
nhsym0=-999
|
|
|
|
npts=(60*ntrperiod-6)*12000
|
2012-11-21 13:27:49 -05:00
|
|
|
if(ifile.eq.ifile1) then
|
|
|
|
open(12,file='timer.out',status='unknown')
|
|
|
|
call timer('jt9 ',0)
|
|
|
|
endif
|
2012-09-30 20:02:36 -04:00
|
|
|
|
2012-10-01 15:05:22 -04:00
|
|
|
! do i=1,npts
|
2012-11-12 16:06:31 -05:00
|
|
|
! id2(i)=100.0*sin(6.283185307*1600.0*i/12000.0)
|
2012-10-01 15:05:22 -04:00
|
|
|
! enddo
|
|
|
|
|
2013-04-17 10:53:58 -04:00
|
|
|
id2=0 !??? Why is this necessary ???
|
|
|
|
|
2012-10-01 15:05:22 -04:00
|
|
|
do iblk=1,npts/kstep
|
|
|
|
k=iblk*kstep
|
2012-11-21 12:42:53 -05:00
|
|
|
call timer('read_wav',0)
|
2012-10-16 16:58:03 -04:00
|
|
|
read(10,end=10) id2(k-kstep+1:k)
|
2012-11-21 12:42:53 -05:00
|
|
|
call timer('read_wav',1)
|
|
|
|
|
2012-10-01 15:05:22 -04:00
|
|
|
nhsym=(k-2048)/kstep
|
2012-09-30 20:02:36 -04:00
|
|
|
if(nhsym.ge.1 .and. nhsym.ne.nhsym0) then
|
|
|
|
! Emit signal readyForFFT
|
2012-11-06 14:49:19 -05:00
|
|
|
ingain=0
|
2012-11-21 12:42:53 -05:00
|
|
|
call timer('symspec ',0)
|
2012-11-06 14:49:19 -05:00
|
|
|
call symspec(k,ntrperiod,nsps,ingain,nb,nbslider,pxdb, &
|
2012-11-21 13:27:49 -05:00
|
|
|
s,ccfred,df3,ihsym,nzap,slimit,lstrong,npts8)
|
2012-11-21 12:42:53 -05:00
|
|
|
call timer('symspec ',1)
|
2012-09-30 20:02:36 -04:00
|
|
|
nhsym0=nhsym
|
2013-04-16 14:33:38 -04:00
|
|
|
if(ihsym.ge.173) go to 10
|
2012-09-30 20:02:36 -04:00
|
|
|
endif
|
|
|
|
enddo
|
|
|
|
|
2012-10-16 16:58:03 -04:00
|
|
|
10 close(10)
|
2013-04-16 14:33:38 -04:00
|
|
|
call fillcom(nutc0,ndepth)
|
2013-04-16 12:25:14 -04:00
|
|
|
call decoder(ss,c0,1)
|
2012-09-30 20:02:36 -04:00
|
|
|
enddo
|
|
|
|
|
2012-11-21 12:42:53 -05:00
|
|
|
call timer('jt9 ',1)
|
|
|
|
call timer('jt9 ',101)
|
2012-09-30 20:02:36 -04:00
|
|
|
go to 999
|
|
|
|
|
|
|
|
998 print*,'Cannot open file:'
|
|
|
|
print*,infile
|
|
|
|
|
2012-10-01 15:05:22 -04:00
|
|
|
999 end program jt9
|