2015-02-10 14:04:54 +00:00
|
|
|
subroutine fillcom(nutc0,ndepth0,nrxfreq,mode,tx9,flow,fsplit,fhigh)
|
2013-04-16 16:38:25 +00:00
|
|
|
character*20 datetime
|
2015-02-10 14:04:54 +00:00
|
|
|
integer mode,flow,fsplit,fhigh
|
|
|
|
logical tx9
|
2013-08-09 17:22:08 +00:00
|
|
|
common/npar/nutc,ndiskdat,ntrperiod,nfqso,newdat,npts8,nfa,nfsplit,nfb, &
|
|
|
|
ntol,kin,nzhsym,nsave,nagain,ndepth,ntxmode,nmode,datetime
|
2013-04-16 16:38:25 +00:00
|
|
|
save
|
|
|
|
|
|
|
|
nutc=nutc0
|
|
|
|
ndiskdat=1
|
|
|
|
ntrperiod=60
|
2013-07-16 18:17:20 +00:00
|
|
|
nfqso=nrxfreq
|
2013-04-16 16:38:25 +00:00
|
|
|
newdat=1
|
|
|
|
npts8=74736
|
2015-02-10 14:04:54 +00:00
|
|
|
nfa=flow
|
|
|
|
nfsplit=fsplit
|
|
|
|
nfb=fhigh
|
2013-05-16 19:01:16 +00:00
|
|
|
ntol=3
|
2013-04-16 16:38:25 +00:00
|
|
|
kin=1024
|
|
|
|
nzhsym=173
|
|
|
|
nsave=0
|
2013-04-16 18:33:38 +00:00
|
|
|
ndepth=ndepth0
|
2015-02-10 14:04:54 +00:00
|
|
|
if (tx9) then
|
|
|
|
ntxmode=9
|
|
|
|
else
|
|
|
|
ntxmode=65
|
|
|
|
end if
|
|
|
|
if (mode.lt.9) then
|
|
|
|
nmode=65+9
|
|
|
|
else
|
|
|
|
nmode=mode
|
|
|
|
end if
|
2013-04-16 16:38:25 +00:00
|
|
|
datetime="2013-Apr-16 15:13"
|
|
|
|
|
|
|
|
return
|
|
|
|
end subroutine fillcom
|