2012-10-01 15:05:22 -04:00
|
|
|
JT9 is a mode designed for amateur QSOs at MF and LF. The mode uses
|
|
|
|
the same 72-bit structured messages as JT65. Error control coding
|
|
|
|
(ECC) uses a convolutional code with constraint length K=32, rate
|
|
|
|
r=1/2, and a zero tail, leading to an encoded message length of
|
|
|
|
(72+31)*2 = 206 information-carrying bits. Modulation is 9-FSK: 8
|
|
|
|
tones for data, one for synchronization. Sixteen symbol intervals are
|
|
|
|
used for synchronization, so a transmission requires a total of 207/3
|
|
|
|
+ 16 = 85 channel symbols. Symbol durations tsym are approximately
|
|
|
|
(TRperiod-8)/85, where TRperiod is the T/R sequence length in seconds.
|
|
|
|
Exact symbol lengths are chosen so that nsps, the number of samples
|
|
|
|
per symbol (at 12000 samples per second) is a number with no prime
|
|
|
|
factor greater than 7. This choice makes for efficient FFTs. Tone
|
2012-10-15 13:43:49 -04:00
|
|
|
spacing of the 9-FSK modulation is df=1/tsym=12000/nsps, equal to
|
2012-10-01 15:05:22 -04:00
|
|
|
the keying rate. The total occupied bandwidth is 9*df.
|
2012-09-28 14:07:07 -04:00
|
|
|
|
2012-09-28 19:59:50 -04:00
|
|
|
Parameters of five JT9 sub-modes are summarized in the following
|
2012-09-28 14:07:07 -04:00
|
|
|
table, along with S/N thresholds measured by simulation on an AWGN
|
2012-10-01 15:05:22 -04:00
|
|
|
channel.
|
2012-09-28 14:07:07 -04:00
|
|
|
|
2012-10-15 13:43:49 -04:00
|
|
|
--------------------------------------------------------------------------
|
|
|
|
Mode nsps nsps2 df tsym BW S/N* Tdec Tfree Factors
|
|
|
|
12000 1500 (Hz) (s) (Hz) (dB) (s) (s) of nsps nfft3
|
|
|
|
--------------------------------------------------------------------------
|
|
|
|
JT9-1 6912 864 1.736 0.58 15.6 -26.9 52.5 7.5 2^8 3^3 1024
|
|
|
|
JT9-2 15360 1920 0.781 1.28 7.0 -30.2 112.3 7.7 2^10 3 5 2048
|
|
|
|
JT9-5 40960 5120 0.293 3.41 2.6 -34.4 293.6 6.4 2^13 5 6144
|
|
|
|
JT9-10 82944 10368 0.145 6.91 1.3 -37.5 591.0 9.0 2^10 3^4 12288
|
|
|
|
JT9-30 252000 31500 0.048 21.00 0.4 -42.3 1788.5 11.5 2^5 3^2 5^3 7 32768
|
|
|
|
--------------------------------------------------------------------------
|
2012-09-28 14:07:07 -04:00
|
|
|
* Noise power measured in a 2500 Hz bandwidth.
|
2012-10-15 13:43:49 -04:00
|
|
|
NB: nfft3 might be doubled and used with a sin^2 window.
|
2012-09-28 14:07:07 -04:00
|
|
|
|
|
|
|
Transmitting
|
|
|
|
------------
|
|
|
|
1. Source encode the structured message to 72 bits
|
2012-09-28 19:59:50 -04:00
|
|
|
2. Apply convolutional ECC (K=32, r=1/2) to yield (72+31)*2 = 206 bits
|
2012-09-28 14:07:07 -04:00
|
|
|
3. Interleave to scramble the bit order
|
|
|
|
4. Assemble 3-bit groups to make (206+1)/3 = 69 symbols
|
|
|
|
5. Gray-code the symbol values
|
2012-10-15 13:43:49 -04:00
|
|
|
6. Insert 16 sync symbols ==> 69+16=85 channel symbols, values 0-8
|
2012-09-28 14:07:07 -04:00
|
|
|
|
|
|
|
|
|
|
|
Receiving
|
|
|
|
---------
|
|
|
|
1. Apply noise blanking with the timf2 method
|
2012-10-01 15:05:22 -04:00
|
|
|
2. Filter to 1000 Hz bandwidth and downsample (1/8) to 1500 Hz, saving
|
2012-10-15 13:43:49 -04:00
|
|
|
complex data to array c0(2,700,000).
|
|
|
|
3. Compute spectra at half-symbol steps. Use for waterfall display
|
|
|
|
s(22000) and save in ss(184,22000) and
|
2012-10-01 15:40:23 -04:00
|
|
|
savg(22000), for detecting sync vectors.
|
2012-10-15 13:43:49 -04:00
|
|
|
4. At time Tdec, find sync vectors in ss(); get approx DF or list of DFs
|
2012-10-01 15:40:23 -04:00
|
|
|
5. Do full-length FFT, NFFT1=96*nsps2, zero-padded as required.
|
2012-10-15 13:43:49 -04:00
|
|
|
6. For each candidate signal, do inverse FFT of length 1536 (or 3072?).
|
|
|
|
This yields 16 complex samples per symbol, and sync tone should be
|
2012-09-28 19:59:50 -04:00
|
|
|
close to zero frequency.
|
2012-09-28 14:07:07 -04:00
|
|
|
7. Use afc65b method to get improved values of DF, DT.
|
|
|
|
8. Tweak freq and time offset to 0.
|
2012-10-15 13:43:49 -04:00
|
|
|
9. Compute 8-bin spectra of 69 data symbols: ssym(0:7,69). Re-order the
|
|
|
|
bins to remove Gray code.
|
|
|
|
10. Compute soft symbols for 206 bits (bit 207 is always 0).
|
2012-09-28 19:59:50 -04:00
|
|
|
11. Remove interleaving
|
2012-09-28 14:07:07 -04:00
|
|
|
12. Pack bits into bytes, send to Fano decoder
|
|
|
|
13. If Fano succeeds, remove source encoding and display user message.
|