mirror of
https://github.com/saitohirga/WSJT-X.git
synced 2024-11-01 08:07:10 -04:00
1f734899f3
git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/branches/wsjtx@7681 ab8295b8-cf94-4d9e-aec4-7959e3be5d79
45 lines
995 B
Fortran
45 lines
995 B
Fortran
subroutine wspr_fsk8_wav(baud,xdt,f0,itone,snrdb,iwave)
|
|
|
|
! Generate iwave() from itone().
|
|
|
|
include 'wspr_fsk8_params.f90'
|
|
integer itone(NN)
|
|
integer*2 iwave(NMAX)
|
|
real*8 twopi,dt,dphi,phi
|
|
real dat(NMAX)
|
|
|
|
twopi=8.d0*atan(1.d0)
|
|
dt=1.d0/12000.d0
|
|
|
|
dat=0.
|
|
if(snrdb.lt.90) then
|
|
do i=1,NMAX
|
|
dat(i)=gran() !Generate gaussian noise, rms = 1.0
|
|
enddo
|
|
bandwidth_ratio=2500.0/6000.0
|
|
sig=sqrt(2*bandwidth_ratio)*10.0**(0.05*snrdb)
|
|
else
|
|
sig=1.0
|
|
endif
|
|
|
|
phi=0.d0
|
|
k=nint((xdt+1.0)/dt)
|
|
do j=1,NN
|
|
dphi=twopi*(f0+ itone(j)*baud)*dt
|
|
if(k.eq.0) phi=-dphi
|
|
do i=1,NSPS0
|
|
k=k+1
|
|
phi=phi+dphi
|
|
if(phi.gt.twopi) phi=phi-twopi
|
|
xphi=phi
|
|
if(k.gt.0 .and. k.le.NMAX) dat(k)=dat(k) + sig*sin(xphi)
|
|
enddo
|
|
enddo
|
|
fac=32767.0
|
|
rms=100.0
|
|
if(snrdb.ge.90.0) iwave=nint(fac*dat)
|
|
if(snrdb.lt.90.0) iwave=nint(rms*dat)
|
|
|
|
return
|
|
end subroutine wspr_fsk8_wav
|