2018-05-28 13:11:41 -04:00
|
|
|
program ldpcsim174_91
|
2018-05-29 11:32:59 -04:00
|
|
|
! End to end test of the (174,91)/crc14 encoder and decoder.
|
2018-05-28 13:11:41 -04:00
|
|
|
use crc
|
|
|
|
use packjt
|
|
|
|
|
|
|
|
character*22 msg,msgsent,msgreceived
|
|
|
|
character*8 arg
|
|
|
|
character*6 grid
|
|
|
|
integer*1, allocatable :: codeword(:), decoded(:), message(:)
|
2018-05-29 11:32:59 -04:00
|
|
|
integer*1, target:: i1Msg8BitBytes(12)
|
2018-05-28 13:11:41 -04:00
|
|
|
integer*1 msgbits(91)
|
|
|
|
integer*1 apmask(174), cw(174)
|
|
|
|
integer*2 checksum
|
|
|
|
integer*4 i4Msg6BitWords(13)
|
|
|
|
integer colorder(174)
|
|
|
|
integer nerrtot(174),nerrdec(174),nmpcbad(91)
|
2018-05-29 11:32:59 -04:00
|
|
|
logical checksumok
|
2018-05-28 13:11:41 -04:00
|
|
|
real*8, allocatable :: rxdata(:)
|
|
|
|
real, allocatable :: llr(:)
|
|
|
|
|
|
|
|
data colorder/ &
|
|
|
|
0, 1, 2, 3, 28, 4, 5, 6, 7, 8, 9, 10, 11, 34, 12, 32, 13, 14, 15, 16,&
|
|
|
|
17, 18, 36, 29, 40, 19, 20, 38, 21, 41, 30, 42, 22, 44, 37, 47, 48, 23, 33, 43,&
|
|
|
|
49, 45, 56, 39, 25, 26, 46, 50, 51, 52, 24, 57, 58, 61, 31, 54, 64, 35, 27, 62,&
|
|
|
|
59, 53, 60, 63, 55, 70, 66, 67, 68, 65, 71, 74, 72, 73, 77, 75, 69, 76, 79, 82,&
|
|
|
|
83, 78, 81, 80, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99,&
|
|
|
|
100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,&
|
|
|
|
120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,&
|
|
|
|
140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,&
|
|
|
|
160,161,162,163,164,165,166,167,168,169,170,171,172,173/
|
|
|
|
|
|
|
|
nerrtot=0
|
|
|
|
nerrdec=0
|
|
|
|
nmpcbad=0 ! Used to collect the number of errors in the message+crc part of the codeword
|
|
|
|
|
|
|
|
nargs=iargc()
|
|
|
|
if(nargs.ne.4) then
|
|
|
|
print*,'Usage: ldpcsim niter ndepth #trials s '
|
|
|
|
print*,'eg: ldpcsim 10 2 1000 0.84'
|
|
|
|
print*,'belief propagation iterations: niter, ordered-statistics depth: ndepth'
|
|
|
|
print*,'If s is negative, then value is ignored and sigma is calculated from SNR.'
|
|
|
|
return
|
|
|
|
endif
|
|
|
|
call getarg(1,arg)
|
|
|
|
read(arg,*) max_iterations
|
|
|
|
call getarg(2,arg)
|
|
|
|
read(arg,*) ndepth
|
|
|
|
call getarg(3,arg)
|
|
|
|
read(arg,*) ntrials
|
|
|
|
call getarg(4,arg)
|
|
|
|
read(arg,*) s
|
|
|
|
|
|
|
|
! don't count crc bits as data bits
|
|
|
|
N=174
|
|
|
|
K=91
|
|
|
|
! scale Eb/No for a (174,91) code
|
|
|
|
rate=real(K)/real(N)
|
|
|
|
|
|
|
|
write(*,*) "rate: ",rate
|
|
|
|
write(*,*) "niter= ",max_iterations," s= ",s
|
|
|
|
|
|
|
|
allocate ( codeword(N), decoded(K), message(K) )
|
|
|
|
allocate ( rxdata(N), llr(N) )
|
|
|
|
|
|
|
|
msg="K1JT K9AN EN50"
|
|
|
|
! msg="G4WJS K9AN EN50"
|
|
|
|
call packmsg(msg,i4Msg6BitWords,itype,.false.) !Pack into 12 6-bit bytes
|
|
|
|
call unpackmsg(i4Msg6BitWords,msgsent,.false.,grid) !Unpack to get msgsent
|
|
|
|
write(*,*) "message sent ",msgsent
|
|
|
|
|
|
|
|
i4=0
|
|
|
|
ik=0
|
|
|
|
im=0
|
|
|
|
do i=1,12
|
|
|
|
nn=i4Msg6BitWords(i)
|
|
|
|
do j=1, 6
|
|
|
|
ik=ik+1
|
|
|
|
i4=i4+i4+iand(1,ishft(nn,j-6))
|
|
|
|
i4=iand(i4,255)
|
|
|
|
if(ik.eq.8) then
|
|
|
|
im=im+1
|
|
|
|
! if(i4.gt.127) i4=i4-256
|
|
|
|
i1Msg8BitBytes(im)=i4
|
|
|
|
ik=0
|
|
|
|
endif
|
|
|
|
enddo
|
|
|
|
enddo
|
|
|
|
|
2018-05-29 11:32:59 -04:00
|
|
|
i1Msg8BitBytes(10:12)=0
|
|
|
|
checksum = crc14 (c_loc (i1Msg8BitBytes), 12)
|
2018-05-28 13:11:41 -04:00
|
|
|
! For reference, the next 3 lines show how to check the CRC
|
2018-05-29 11:32:59 -04:00
|
|
|
i1Msg8BitBytes(11)=checksum/256
|
|
|
|
i1Msg8BitBytes(12)=iand (checksum,255)
|
|
|
|
checksumok = crc14_check(c_loc (i1Msg8BitBytes), 12)
|
2018-05-28 13:11:41 -04:00
|
|
|
if( checksumok ) write(*,*) 'Good checksum'
|
|
|
|
|
2018-05-29 11:32:59 -04:00
|
|
|
! K=91, For now:
|
2018-05-28 13:11:41 -04:00
|
|
|
! msgbits(1:72) JT message bits
|
2018-05-29 11:32:59 -04:00
|
|
|
! msgbits(73:77) 5 free message bits (set to 0)
|
|
|
|
! msgbits(78:91) CRC14
|
2018-05-28 13:11:41 -04:00
|
|
|
mbit=0
|
|
|
|
do i=1, 9
|
|
|
|
i1=i1Msg8BitBytes(i)
|
|
|
|
do ibit=1,8
|
|
|
|
mbit=mbit+1
|
|
|
|
msgbits(mbit)=iand(1,ishft(i1,ibit-8))
|
|
|
|
enddo
|
|
|
|
enddo
|
2018-05-29 11:32:59 -04:00
|
|
|
msgbits(73:77)=0 ! the five extra message bits go here
|
|
|
|
i1=i1Msg8BitBytes(11) ! First 6 bits of crc12 are LSB of this byte
|
|
|
|
do ibit=1,6
|
|
|
|
msgbits(77+ibit)=iand(1,ishft(i1,ibit-6))
|
2018-05-28 13:11:41 -04:00
|
|
|
enddo
|
2018-05-29 11:32:59 -04:00
|
|
|
i1=i1Msg8BitBytes(12) ! Now shift in last 8 bits of the CRC
|
2018-05-28 13:11:41 -04:00
|
|
|
do ibit=1,8
|
2018-05-29 11:32:59 -04:00
|
|
|
msgbits(83+ibit)=iand(1,ishft(i1,ibit-8))
|
2018-05-28 13:11:41 -04:00
|
|
|
enddo
|
|
|
|
|
|
|
|
write(*,*) 'message'
|
2018-05-29 11:32:59 -04:00
|
|
|
write(*,'(12(8i1,1x))') msgbits
|
2018-05-28 13:11:41 -04:00
|
|
|
|
2018-05-29 11:32:59 -04:00
|
|
|
call encode174_91(msgbits,codeword)
|
2018-05-28 13:11:41 -04:00
|
|
|
call init_random_seed()
|
|
|
|
! call sgran()
|
|
|
|
|
|
|
|
write(*,*) 'codeword'
|
|
|
|
write(*,'(22(8i1,1x))') codeword
|
|
|
|
|
|
|
|
write(*,*) "Es/N0 SNR2500 ngood nundetected nbadcrc sigma"
|
|
|
|
do idb = 20,-10,-1
|
2018-05-29 11:32:59 -04:00
|
|
|
!do idb = 0,0,-1
|
2018-05-28 13:11:41 -04:00
|
|
|
db=idb/2.0-1.0
|
|
|
|
sigma=1/sqrt( 2*(10**(db/10.0)) )
|
|
|
|
ngood=0
|
|
|
|
nue=0
|
|
|
|
nbadcrc=0
|
|
|
|
nberr=0
|
|
|
|
do itrial=1, ntrials
|
|
|
|
! Create a realization of a noisy received word
|
|
|
|
do i=1,N
|
2018-05-29 11:32:59 -04:00
|
|
|
rxdata(i) = 2.0*codeword(i)-1.0 + sigma*gran()
|
2018-05-28 13:11:41 -04:00
|
|
|
enddo
|
|
|
|
nerr=0
|
|
|
|
do i=1,N
|
|
|
|
if( rxdata(i)*(2*codeword(i)-1.0) .lt. 0 ) nerr=nerr+1
|
|
|
|
enddo
|
|
|
|
if(nerr.ge.1) nerrtot(nerr)=nerrtot(nerr)+1
|
|
|
|
nberr=nberr+nerr
|
|
|
|
|
|
|
|
rxav=sum(rxdata)/N
|
|
|
|
rx2av=sum(rxdata*rxdata)/N
|
|
|
|
rxsig=sqrt(rx2av-rxav*rxav)
|
|
|
|
rxdata=rxdata/rxsig
|
|
|
|
if( s .lt. 0 ) then
|
|
|
|
ss=sigma
|
|
|
|
else
|
|
|
|
ss=s
|
|
|
|
endif
|
|
|
|
|
|
|
|
llr=2.0*rxdata/(ss*ss)
|
|
|
|
nap=0 ! number of AP bits
|
2018-05-29 11:32:59 -04:00
|
|
|
llr(colorder(174-91+1:174-91+nap)+1)=5*(2.0*msgbits(1:nap)-1.0)
|
2018-05-28 13:11:41 -04:00
|
|
|
apmask=0
|
2018-05-29 11:32:59 -04:00
|
|
|
apmask(colorder(174-91+1:174-91+nap)+1)=1
|
2018-05-28 13:11:41 -04:00
|
|
|
|
|
|
|
! max_iterations is max number of belief propagation iterations
|
2018-05-29 11:32:59 -04:00
|
|
|
call bpdecode174_91(llr, apmask, max_iterations, decoded, cw, nharderrors,niterations)
|
|
|
|
if( ndepth .ge. 0 .and. nharderrors .lt. 0 ) call osd174_91(llr, apmask, ndepth, decoded, cw, nharderrors, dmin)
|
2018-05-28 13:11:41 -04:00
|
|
|
! If the decoder finds a valid codeword, nharderrors will be .ge. 0.
|
|
|
|
if( nharderrors .ge. 0 ) then
|
2018-05-29 11:32:59 -04:00
|
|
|
call extractmessage174_91(decoded,msgreceived,ncrcflag)
|
2018-05-28 13:11:41 -04:00
|
|
|
if( ncrcflag .ne. 1 ) then
|
|
|
|
nbadcrc=nbadcrc+1
|
|
|
|
endif
|
|
|
|
|
|
|
|
nueflag=0
|
|
|
|
nerrmpc=0
|
|
|
|
do i=1,K ! find number of errors in message+crc part of codeword
|
|
|
|
if( msgbits(i) .ne. decoded(i) ) then
|
|
|
|
nueflag=1
|
|
|
|
nerrmpc=nerrmpc+1
|
|
|
|
endif
|
|
|
|
enddo
|
|
|
|
if(nerrmpc.ge.1) nmpcbad(nerrmpc)=nmpcbad(nerrmpc)+1
|
|
|
|
if( ncrcflag .eq. 1 ) then
|
|
|
|
if( nueflag .eq. 0 ) then
|
|
|
|
ngood=ngood+1
|
|
|
|
if(nerr.ge.1) nerrdec(nerr)=nerrdec(nerr)+1
|
|
|
|
else if( nueflag .eq. 1 ) then
|
|
|
|
nue=nue+1;
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
enddo
|
|
|
|
baud=12000/1920
|
|
|
|
snr2500=db+10.0*log10((baud/2500.0))
|
|
|
|
pberr=real(nberr)/(real(ntrials*N))
|
|
|
|
write(*,"(f4.1,4x,f5.1,1x,i8,1x,i8,1x,i8,8x,f5.2,8x,e10.3)") db,snr2500,ngood,nue,nbadcrc,ss,pberr
|
|
|
|
|
|
|
|
enddo
|
|
|
|
|
|
|
|
open(unit=23,file='nerrhisto.dat',status='unknown')
|
|
|
|
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)
|
|
|
|
enddo
|
|
|
|
close(23)
|
|
|
|
open(unit=25,file='nmpcbad.dat',status='unknown')
|
|
|
|
do i=1,87
|
|
|
|
write(25,'(i4,2x,i10)') i,nmpcbad(i)
|
|
|
|
enddo
|
|
|
|
close(25)
|
|
|
|
|
|
|
|
end program ldpcsim174_91
|