Return to KLUBNL.PL main page

rsgb_lf_group
[Top] [All Lists]

Re: VLF: DK7FC > W1VD / K3SIW 8.27 kHz EbNaut - We don't give up!

To: [email protected]
Subject: Re: VLF: DK7FC > W1VD / K3SIW 8.27 kHz EbNaut - We don't give up!
From: DK7FC <[email protected]>
Date: Fri, 16 Mar 2018 14:35:20 +0100
Dkim-signature: v=1; a=rsa-sha256; c=relaxed/simple; d=posteo.de; s=2017; t=1521207321; bh=6dRD3E2cfUIzRcxDyc3wFKQMfUVPi7V1BLixx9KvRqw=; h=Date:From:To:Subject:From; b=kyadxHwDtaBIv/HpnoBxDnD1KeJQVefd93jGm+bcmx7gtFCw5424zLEsUyyBoB641 nzgXY+B9adB2jESzd7I0mEzdLzEFgILIRa6dOyuhuwbeJzTmn+niZgP3fPMfl7U/Wp iJwxGbfpmeXjO9uTVfcua6DznCuf+ezdeUig+8CbRPvDaGKMykIdXSyMolV9zqy6ET +Azl50l+l+swU5qEqI8aysuP70zy7cXA6C8GnDzPi3rOWh3npOTew1ZOV7M29zlDwd SuQkjOWeEXB+bf2M5ovIkb3okqRogaYwFZj94xqSQgqyeuvQ4/vMU/Usk/pGQXjMxs bo2K1Lff8CFXw==
In-reply-to: <[email protected]>
References: <1UQOBAX9Wi.5GpBpi86BpG@optiplex980-pc> <[email protected]> <[email protected]> <[email protected]> <[email protected]> <[email protected]>
Reply-to: [email protected]
Sender: [email protected]
User-agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; de; rv:1.9.1.8) Gecko/20100227 Thunderbird/3.0.3
Paul,

AMAZING!
That was quickly! Many thanks.
I quickly run it through the file by W1VD, the 08.wav file. It improves the SNR from 4.67 dB to 7.57 dB, i.e. we gained 2.9 dB!
More later.

73, Stefan

Am 16.03.2018 14:21, schrieb Paul Nicholson:

Here's an awk script to normalise the I/Q signal to the
RMS amplitude.

#!/usr/bin/awk -f

BEGIN{
   idx = 0;
   sum_square = 0
}
{
   stamp[idx] = $1
   ival[idx] = $2
   qval[idx] = $3

   sum_square += $2*$2 + $3*$3
   idx++

   if( idx == 300)
   {
      rms = sqrt( sum_square/idx)

      for( i = 0; i < idx; i++)
         printf( "%s %.5e %.5e\n", stamp[i], ival[i]/rms, qval[i]/rms)
      idx = 0;
      sum_square = 0
   }
}


Make sure the 'shebang' line is the first line of the script.

Save it in a file, say, iqnorm.

Make the file executable with: chmod +x iqnorm

Then pipe the raw ASCII signal through it, so that instead of

 vtwavex 26.wav | vtraw -oa | ebnaut -dp16K21A ...

you run

 vtwavex 26.wav | vtraw -oa | ./iqnorm | ebnaut -dp16K21A ...

I've run it on my recordings (sample rate 1Hz) of the 5char
transmissions and every single one has improved Eb/N0.

Not yet tried it on the W1VD, K3SIW files.

The '300' means 300 samples, so that's 300 * 0.45723950 ~= 137 seconds
for the W1VD files, or 231.5 seconds for K3SIW.

--
Paul Nicholson
--


<Prev in Thread] Current Thread [Next in Thread>