discuss-gnuradio
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Discuss-gnuradio] anyone implement the Raleigh fading model / multi


From: Tim O'Shea
Subject: Re: [Discuss-gnuradio] anyone implement the Raleigh fading model / multi-path?
Date: Tue, 2 Jul 2013 08:44:06 -0400

There are currently two fading model blocks that are usable in 3.7 
both should show up in GRC - or from python you can use:

the flat fading model:
    channels.fading_model( 8, 10.0/samp_rate, False, 4.0, 0 ) 
    where args are {# sinusoids, fDTs, los_component, rician_factor, prng_seed }

and a simple frequency selective fading model combining N flat fading channels of a fixed PDP:
    channels.selective_fading_model( 8, 10.0/samp_rate, False, 4.0, 0, (0.0,0.1,1.3), (1,0.99,0.97), 8 )
    where args are {# sinusois, fDTs, los_component, rician_factor, prng_seed, power_delay_profile_delays_samples, power_delay_profile_amplitudes, max_channel_taps}

-Tim


reply via email to

[Prev in Thread] Current Thread [Next in Thread]