Fix problems with ldpc174_91.f90

This commit is contained in:
Steven Franke 2020-05-05 08:05:58 -05:00
parent 6363f3fd43
commit 82e66f3251
1 changed files with 120 additions and 119 deletions

View File

@ -1,55 +1,56 @@
program ldpcsim174_91 program ldpcsim174_91
! End to end test of the (174,91)/crc14 encoder and decoder. ! End to end test of the (174,91)/crc14 encoder and decoder.
use packjt77 use packjt77
integer, parameter:: N=174, K=91, M=N-K integer, parameter:: N=174, K=91, M=N-K
character*37 msg,msgsent,msgreceived character*37 msg,msgsent,msgreceived
character*77 c77 character*77 c77
character*8 arg character*8 arg
character*6 grid character*6 grid
character*96 tmpchar character*96 tmpchar
integer*1, allocatable :: codeword(:), decoded(:), message(:) integer*1, allocatable :: codeword(:), decoded(:), message(:)
integer*1 msgbits(77) integer*1 msgbits(77)
integer*1 message77(77),message91(91) integer*1 message77(77),message91(91)
integer*1 apmask(N), cw(N) integer*1 apmask(N), cw(N)
integer nerrtot(0:N),nerrdec(0:N) integer nerrtot(0:N),nerrdec(0:N)
logical unpk77_success logical unpk77_success
real*8, allocatable :: rxdata(:) real*8, allocatable :: rxdata(:)
real, allocatable :: llr(:) real, allocatable :: llr(:)
nerrtot=0 nerrtot=0
nerrdec=0 nerrdec=0
nargs=iargc() nargs=iargc()
if(nargs.ne.6) then if(nargs.ne.6) then
print*,'Usage: ldpcsim niter ndepth #trials s Keff BPOSD' print*,'Usage: ldpcsim niter ndepth #trials s Keff nbposd'
print*,'eg: ldpcsim 10 2 1000 0.84 91 1' print*,'eg: ldpcsim 10 2 1000 0.84 91 1'
print*,'belief propagation iterations: niter, ordered-statistics depth: ndepth' print*,'niter: max BP iterations
print*,'If s is negative, then value is ignored and sigma is calculated from SNR.' print*,'ndepth: OSD order'
print*,'If BPOSD=0, no coupling. BPOSD=1, BP output to OSD input.' print*,'s: noise sigma; if negative value is ignored and sigma is calculated from SNR.'
print*,'nbposd=0, no coupling. nbposd>0, maxsuper=nbposd; nbposd<0, no OSD'
return return
endif endif
call getarg(1,arg) call getarg(1,arg)
read(arg,*) max_iterations read(arg,*) max_iterations
call getarg(2,arg) call getarg(2,arg)
read(arg,*) ndepth read(arg,*) ndepth
call getarg(3,arg) call getarg(3,arg)
read(arg,*) ntrials read(arg,*) ntrials
call getarg(4,arg) call getarg(4,arg)
read(arg,*) s read(arg,*) s
call getarg(5,arg) call getarg(5,arg)
read(arg,*) Keff read(arg,*) Keff
call getarg(6,arg) call getarg(6,arg)
read(arg,*) nbposd read(arg,*) nbposd
! scale Eb/No for a (174,91) code ! scale Eb/No for a (174,91) code
rate=real(Keff)/real(N) rate=real(K)/real(N)
write(*,*) "rate: ",rate write(*,*) "rate: ",rate
write(*,*) "niter= ",max_iterations," s= ",s write(*,*) "niter= ",max_iterations," s= ",s
allocate ( codeword(N), decoded(K), message(K) ) allocate ( codeword(N), decoded(K), message(K) )
allocate ( rxdata(N), llr(N) ) allocate ( rxdata(N), llr(N) )
msg="K9ABC K1ABC FN20" msg="K9ABC K1ABC FN20"
i3=0 i3=0
@ -70,8 +71,8 @@ allocate ( rxdata(N), llr(N) )
write(*,*) 'codeword' write(*,*) 'codeword'
write(*,'(22(8i1,1x))') codeword write(*,'(22(8i1,1x))') codeword
write(*,*) "Eb/N0 SNR2500 ngood nundetected sigma psymerr" write(*,*) "Eb/N0 Es/N0 ngood nundetected sigma psymerr"
do idb = 10,-4,-1 do idb = 10,-4,-1
db=idb/2.0-1.0 db=idb/2.0-1.0
sigma=1/sqrt( 2*rate*(10**(db/10.0)) ) sigma=1/sqrt( 2*rate*(10**(db/10.0)) )
ngood=0 ngood=0
@ -110,8 +111,8 @@ do idb = 10,-4,-1
dmin=0.0 dmin=0.0
if(nbposd.eq.0) then if(nbposd.eq.0) then
call osd174_91(llr,Keff,apmask,ndepth,message91,cw,nhardosd,dmin) call osd174_91(llr,Keff,apmask,ndepth,message91,cw,nhardosd,dmin)
else elseif(nbposd.gt.0) then
maxsuper=2 maxsuper=nbposd
call decode174_91(llr,Keff,ndepth,apmask,maxsuper,message91,cw,nhardosd,niterations,ncheck,dmin) call decode174_91(llr,Keff,ndepth,apmask,maxsuper,message91,cw,nhardosd,niterations,ncheck,dmin)
endif endif
! If the decoder finds a valid codeword, nharderrors will be .ge. 0. ! If the decoder finds a valid codeword, nharderrors will be .ge. 0.
@ -128,16 +129,16 @@ do idb = 10,-4,-1
nsumerr=nsumerr+nerr nsumerr=nsumerr+nerr
enddo enddo
snr2500=db+10.0*log10(rate/(2500*0.16/3)) esn0=db+10.0*log10(rate)
pberr=real(nsumerr)/(real(ntrials*N)) pberr=real(nsumerr)/(real(ntrials*N))
write(*,"(f4.1,4x,f5.1,1x,i8,1x,i8,8x,f5.2,8x,e10.3)") db,SNR2500,ngood,nue,ss,pberr write(*,"(f4.1,4x,f5.1,1x,i8,1x,i8,8x,f5.2,8x,e10.3)") db,esn0,ngood,nue,ss,pberr
enddo enddo
open(unit=23,file='nerrhisto.dat',status='unknown') open(unit=23,file='nerrhisto.dat',status='unknown')
do i=1,174 do i=1,174
write(23,'(i4,2x,i10,i10,f10.2)') i,nerrdec(i),nerrtot(i),real(nerrdec(i))/real(nerrtot(i)+1e-10) write(23,'(i4,2x,i10,i10,f10.2)') i,nerrdec(i),nerrtot(i),real(nerrdec(i))/real(nerrtot(i)+1e-10)
enddo enddo
close(23) close(23)
end program ldpcsim174_91 end program ldpcsim174_91