2018-07-07 10:44:52 -04:00
|
|
|
program ldpcsim128_90
|
|
|
|
|
|
|
|
! Simulate the performance of the (128,90) code that is used in
|
|
|
|
! the second incarnation of MSK144.
|
|
|
|
|
|
|
|
use packjt77
|
2020-02-13 09:48:51 -05:00
|
|
|
integer, parameter:: N=128, K=90, M=N-K
|
|
|
|
! character*12 recent_calls(NRECENT)
|
2018-07-07 10:44:52 -04:00
|
|
|
character*37 msg,msgsent,msgreceived
|
|
|
|
character*77 c77
|
|
|
|
character*8 arg
|
|
|
|
integer*1 codeword(N), message77(77)
|
|
|
|
integer*1 apmask(N),cw(N)
|
|
|
|
integer*1 msgbits(77)
|
|
|
|
integer*4 i4Msg6BitWords(13)
|
|
|
|
integer nerrtot(0:N),nerrdec(0:N)
|
2018-09-12 16:06:26 -04:00
|
|
|
logical unpk77_success
|
2018-07-07 10:44:52 -04:00
|
|
|
real*8 rxdata(N), rxavgd(N)
|
2020-02-13 09:48:51 -05:00
|
|
|
real llr(N),llra(N)
|
2018-07-07 10:44:52 -04:00
|
|
|
|
2020-02-13 09:48:51 -05:00
|
|
|
do i=1,MAXNRECENT
|
2018-07-07 10:44:52 -04:00
|
|
|
recent_calls(i)=' '
|
|
|
|
enddo
|
|
|
|
nerrtot=0
|
|
|
|
nerrdec=0
|
|
|
|
|
|
|
|
nargs=iargc()
|
2020-02-13 09:48:51 -05:00
|
|
|
if(nargs.ne.5) then
|
|
|
|
print*,'Usage: ldpcsim niter ndeep navg #trials s '
|
|
|
|
print*,'eg: ldpcsim 10 2 1 1000 0.75'
|
2018-07-07 10:44:52 -04:00
|
|
|
return
|
|
|
|
endif
|
|
|
|
call getarg(1,arg)
|
|
|
|
read(arg,*) max_iterations
|
|
|
|
call getarg(2,arg)
|
2020-02-13 09:48:51 -05:00
|
|
|
read(arg,*) ndeep
|
2018-07-07 10:44:52 -04:00
|
|
|
call getarg(3,arg)
|
2020-02-13 09:48:51 -05:00
|
|
|
read(arg,*) navg
|
2018-07-07 10:44:52 -04:00
|
|
|
call getarg(4,arg)
|
2020-02-13 09:48:51 -05:00
|
|
|
read(arg,*) ntrials
|
|
|
|
call getarg(5,arg)
|
2018-07-07 10:44:52 -04:00
|
|
|
read(arg,*) s
|
|
|
|
|
|
|
|
rate=real(77)/real(N)
|
|
|
|
|
|
|
|
write(*,*) "rate: ",rate
|
|
|
|
write(*,*) "niter= ",max_iterations," navg= ",navg," s= ",s
|
|
|
|
|
|
|
|
msg="K1ABC RR73; W9XYZ <KH1/KH7Z> -12"
|
|
|
|
i3=0
|
|
|
|
n3=1
|
|
|
|
call pack77(msg,i3,n3,c77)
|
2018-12-20 16:08:29 -05:00
|
|
|
call unpack77(c77,0,msgsent,unpk77_success)
|
2018-07-07 10:44:52 -04:00
|
|
|
read(c77,'(77i1)') msgbits
|
2018-06-13 10:40:04 -04:00
|
|
|
|
2018-07-07 10:44:52 -04:00
|
|
|
write(*,*) "message sent ",msgsent
|
2018-06-13 12:34:00 -04:00
|
|
|
|
|
|
|
write(*,*) 'msgbits'
|
2018-07-07 10:44:52 -04:00
|
|
|
write(*,'(77i1)') msgbits
|
2018-06-13 12:34:00 -04:00
|
|
|
|
2018-06-16 17:42:02 -04:00
|
|
|
! msgbits is the 77-bit message, codeword is 128 bits
|
2018-07-07 10:44:52 -04:00
|
|
|
call encode_128_90(msgbits,codeword)
|
|
|
|
|
|
|
|
! call init_random_seed()
|
|
|
|
|
|
|
|
write(*,*) "Eb/N0 SNR2500 ngood nundetected sigma psymerr"
|
2020-02-13 09:48:51 -05:00
|
|
|
do idb = 6,6,-1
|
2018-07-07 10:44:52 -04:00
|
|
|
db=idb/2.0-1.0
|
|
|
|
sigma=1/sqrt( 2*rate*(10**(db/10.0)) )
|
|
|
|
ngood=0
|
|
|
|
nue=0
|
|
|
|
nbadcrc=0
|
|
|
|
nsumerr=0
|
|
|
|
|
|
|
|
do itrial=1, ntrials
|
|
|
|
rxavgd=0d0
|
|
|
|
do iav=1,navg
|
|
|
|
! call sgran()
|
2018-06-13 10:40:04 -04:00
|
|
|
! Create a realization of a noisy received word
|
2018-07-07 10:44:52 -04:00
|
|
|
do i=1,N
|
|
|
|
rxdata(i) = 2.0*codeword(i)-1.0 + sigma*gran()
|
|
|
|
enddo
|
|
|
|
rxavgd=rxavgd+rxdata
|
|
|
|
enddo
|
|
|
|
rxdata=rxavgd
|
|
|
|
nerr=0
|
2018-06-13 10:40:04 -04:00
|
|
|
do i=1,N
|
2018-07-07 10:44:52 -04:00
|
|
|
if( rxdata(i)*(2*codeword(i)-1.0) .lt. 0 ) nerr=nerr+1
|
2018-06-13 10:40:04 -04:00
|
|
|
enddo
|
2018-07-07 10:44:52 -04:00
|
|
|
nerrtot(nerr)=nerrtot(nerr)+1
|
2018-06-13 10:40:04 -04:00
|
|
|
|
2018-07-07 10:44:52 -04:00
|
|
|
rxav=sum(rxdata)/N
|
|
|
|
rx2av=sum(rxdata*rxdata)/N
|
|
|
|
rxsig=sqrt(rx2av-rxav*rxav)
|
|
|
|
rxdata=rxdata/rxsig
|
2018-06-13 10:40:04 -04:00
|
|
|
! The s parameter can be tuned to trade a few tenth's dB of threshold for an order of
|
|
|
|
! magnitude in UER
|
2018-07-07 10:44:52 -04:00
|
|
|
if( s .lt. 0 ) then
|
|
|
|
ss=sigma
|
|
|
|
else
|
|
|
|
ss=s
|
|
|
|
endif
|
2018-06-13 10:40:04 -04:00
|
|
|
|
2018-07-07 10:44:52 -04:00
|
|
|
llr=2.0*rxdata/(ss*ss)
|
2018-06-13 10:40:04 -04:00
|
|
|
|
2018-07-07 10:44:52 -04:00
|
|
|
apmask=0
|
2018-06-13 10:40:04 -04:00
|
|
|
! max_iterations is max number of belief propagation iterations
|
2020-02-13 09:48:51 -05:00
|
|
|
|
2018-07-07 10:44:52 -04:00
|
|
|
call bpdecode128_90(llr, apmask, max_iterations, message77, cw, nharderrors, niterations)
|
2018-06-13 10:40:04 -04:00
|
|
|
|
2020-02-13 09:48:51 -05:00
|
|
|
if(ndeep.ge.0 .and. nharderrors.lt.0) then
|
|
|
|
call osd128_90(llr, apmask, ndeep, message77, cw, nharderrors, dmin)
|
|
|
|
endif
|
|
|
|
|
2018-06-13 10:40:04 -04:00
|
|
|
! If the decoder finds a valid codeword, nharderrors will be .ge. 0.
|
2018-07-07 10:44:52 -04:00
|
|
|
if( nharderrors .ge. 0 ) then
|
|
|
|
write(c77,'(77i1)') message77
|
2018-12-20 16:08:29 -05:00
|
|
|
call unpack77(c77,1,msgreceived,unpk77_success)
|
2018-07-07 10:44:52 -04:00
|
|
|
nhw=count(cw.ne.codeword)
|
|
|
|
if(nhw.eq.0) then ! this is a good decode
|
2018-06-16 17:42:02 -04:00
|
|
|
ngood=ngood+1
|
|
|
|
nerrdec(nerr)=nerrdec(nerr)+1
|
2018-07-07 10:44:52 -04:00
|
|
|
else ! this is an undetected error
|
2018-06-16 17:42:02 -04:00
|
|
|
nue=nue+1
|
2018-07-07 10:44:52 -04:00
|
|
|
endif
|
|
|
|
endif
|
|
|
|
nsumerr=nsumerr+nerr
|
|
|
|
enddo
|
2018-06-14 10:30:41 -04:00
|
|
|
|
2018-07-07 10:44:52 -04:00
|
|
|
snr2500=db+10*log10(rate*2000.0/2500.0) ! symbol rate is 2000 s^-1 and ref BW is 2500 Hz.
|
|
|
|
pberr=real(nsumerr)/real(ntrials*N)
|
|
|
|
write(*,"(f4.1,4x,f5.1,1x,i8,1x,i8,7x,f5.2,3x,e10.3)") db,snr2500,ngood,nue,ss,pberr
|
2018-06-13 10:40:04 -04:00
|
|
|
|
2018-07-07 10:44:52 -04:00
|
|
|
enddo
|
2018-06-13 10:40:04 -04:00
|
|
|
|
2018-07-07 10:44:52 -04:00
|
|
|
open(unit=23,file='nerrhisto.dat',status='unknown')
|
|
|
|
do i=0,N
|
|
|
|
write(23,'(i4,2x,i10,i10,f10.2)') i,nerrdec(i),nerrtot(i),real(nerrdec(i))/real(nerrtot(i)+1e-10)
|
|
|
|
enddo
|
|
|
|
close(23)
|
2018-06-16 17:42:02 -04:00
|
|
|
|
2018-07-07 10:44:52 -04:00
|
|
|
end program ldpcsim128_90
|