multipath fading mimo channel propagation conditions -凯发k8网页登录
multipath fading mimo channel propagation conditions
description
[
filters waveform rx
,info
]
= ltefadingchannel(model
,tx
)tx
through the rayleigh fading channel parameterized by
model
. the function returns channel output waveform
rx
and channel model information info
. for
information about the multiple-input multiple-output (mimo) multipath fading channel that this
function implements, see fading channel model delay.
examples
transmit multiple subframes over fading channel
define the channel configuration structure.
model = struct(delayprofile="epa",nrxants=1, ... dopplerfreq = 5,mimocorrelation="low", ... seed=1,initphase="random",modeltype="gmeds", ... nterms=16,normalizetxants="on", ... normalizepathgains="on");
define the transmission waveform configuration structure, initialized to reference measurement channel (rmc) r.10 and one subframe.
rmc = ltermcdl("r.10");
rmc.totsubframes = 1;
generate ten subframes, one subframe at a time, by following these steps.
define
delay
, which accounts for a combination of implementation delay and channel delay spread.set the subframe number and initialize the subframe start time, allocating 1 ms per subframe.
generate a transmit waveform.
initialize the number of transmit antennas and the waveform sampling rate.
send the waveform through the channel. append
delay
zeros to the generated waveform prior to channel filtering.
delay = 25; for subframenumber = 0:9 rmc.nsubframe = mod(subframenumber,10); model.inittime = subframenumber/1000; [waveform,txgrid,info] = ltermcdltool(rmc,[1; 0; 1; 1]); numtxant = size(waveform,2); model.samplingrate = info.samplingrate; tx = [waveform; zeros(delay,numtxant)]; [rx,info] = ltefadingchannel(model,tx); end
transmit two consecutive frames over fading channel
transmit two consecutive frames over a fading channel while maintaining continuity in the fading process between the end of the first frame and the beginning of the second frame.
initialize a resource grid to rmc r.10 and generate a transmit waveform for the first frame.
rmc = ltermcdl("r.10");
[waveform,~,info] = ltermcdltool(rmc,[1; 0; 1]);
initialize a propagation channel configuration structure and set the start time for the first frame.
model = struct(delayprofile="epa",nrxants=1, ... dopplerfreq=5,mimocorrelation="low", ... samplingrate=info.samplingrate,seed=1, ... initphase="random",modeltype="gmeds", ... nterms=16,normalizetxants="on", ... normalizepathgains="on",inittime=0); ntxants = size(waveform,2);
define delay
and append zeros to the generated waveform prior to channel filtering.
delay = 25; tx = [waveform; zeros(delay,ntxants)];
filter the first frame through the channel.
[rx1,info1] = ltefadingchannel(model,tx);
update the frame number, and then generate a transmit waveform for the second frame with the start time set to 10 ms.
model.nframe = 1; [waveform,txgrid] = ltermcdltool(rmc,[1; 0; 1]); tx = [waveform; zeros(delay,ntxants)]; model.inittime = 10e-3;
pass the second frame through the channel.
[rx2,info2] = ltefadingchannel(model,tx);
input arguments
model
— multipath fading channel model
structure
multipath fading channel model, specified as a structure containing these fields.
field | required or optional | values | description | dependencies |
---|---|---|---|---|
nrxants | required | positive integer | number of receive antennas | not applicable |
mimocorrelation | required |
| correlation between ue and enodeb antennas.
note because the | |
normalizetxants | optional |
| transmit antenna number normalization. to normalize the output waveform by 1/√p, where p is the number of transmit antennas, set
this field to | |
delayprofile | required |
| delay profile model. for more information, see propagation channel models. to completely switch off fading and
implement a mimo channel model that is constant in time and frequency, set this field to
| |
dopplerfreq | required | nonnegative scalar | maximum doppler frequency in hz | to enable these fields, set the delayprofile field
to a value other than "off" . |
samplingrate | required | positive scalar | input waveform sampling rate | |
inittime | required | nonnegative scalar | fading process time offset in seconds | |
nterms | optional |
power of 2 | number of oscillators used in fading path modeling | |
modeltype | optional |
| rayleigh fading model type. note setting this field to | |
normalizepathgains | optional |
| model output normalization.
| |
initphase | optional |
scalar 4-d array | phase initialization for the sinusoidal components of the model.
note
| |
seed | required | scalar | random number generator seed. to use a random seed, set this field to
note
| to enable this field, set the delayprofile field to a value
other than "off" and the initphase field to
"random" . |
averagepathgaindb | required | vector | average gains of the discrete paths in db | to enable these fields, set the delayprofile field
to "custom" . |
pathdelays | required | vector | delays of the discrete paths in seconds. this vector must be the same size as
| |
txcorrelationmatrix | required | complex-valued matrix | correlation between each of the transmit antennas, specified as a complex-valued matrix of size p-by-p. | to enable these fields, set the mimocorrelation
field to "custom" . |
rxcorrelationmatrix | required | complex-valued matrix | correlation between each of the receive antennas, specified as a
complex-valued matrix of size
|
data types: struct
tx
— input samples
complex-valued matrix
input samples, specified as a complex-valued matrix of size t-by-p, where t is the number of time-domain samples, and p is the number of transmit antennas. each column of this input corresponds to the waveform at one transmit antenna.
data types: double
| single
complex number support: yes
output arguments
rx
— channel output waveform
complex-valued matrix
channel output waveform, returned as a complex-valued matrix. each column of
rx
corresponds to the waveform at a receive antenna. this output has
the same number of rows as the tx
input.
data types: double
| single
complex number support: yes
info
— channel modeling information
structure
channel modeling information, returned as a structure containing these fields.
parameter field | values | description |
---|---|---|
channelfilterdelay | scalar value | implementation delay of the internal channel filtering, in samples |
pathgains | numeric array | complex gain of the discrete channel paths, returned as a numeric array of size
t-by-l-by-p-by-
|
pathsampledelays | row vector | delays of the discrete channel paths, in samples, returned at the sampling rate specified in the |
averagepathgaindb | row vector | average gains of the discrete paths in db |
data types: struct
algorithms
fading channel model delay
this function implements the mimo multipath fading channel model specified
in [1] and [2]. the transmitted waveform passes through the multipath rayleigh fading channel model
specified by the input structure model
. the function resamples the delay
profile of the model
input to match the input waveform sampling rate. when
the path delays are not a multiple of the sampling rate, the function uses fractional delay
filters to implement them. these filters introduce an implementation delay of
info
.
channelfilterdelay
samples.
the waveform passing through the channel passes through these filters and incurs this channel
filter delay regardless of the value of the path delays.
references
[1] 3gpp ts 36.101. “evolved universal terrestrial radio access (e-utra); user equipment (ue) radio transmission and reception.” 3rd generation partnership project; technical specification group radio access network. .
[2] 3gpp ts 36.104. “evolved universal terrestrial radio access (e-utra); base station (bs) radio transmission and reception.” 3rd generation partnership project; technical specification group radio access network. .
[3] dent, p., g. e. bottomley, and t. croft. “jakes fading model revisited.” electronics letters. 29, no. 13 (1993): 1162–1163.
[4] pätzold, matthias, cheng-xiang wang, and bjørn olav hogstad. “two new sum-of-sinusoids-based methods for the efficient generation of multiple uncorrelated rayleigh fading waveforms.” ieee transactions on wireless communications. 8, no. 6 (2009): 3122–3131.
version history
introduced in r2013b
see also
ltemovingchannel
| | | | | lte3dchannel
打开示例
您曾对此示例进行过修改。是否要打开带有您的编辑的示例?
matlab 命令
您点击的链接对应于以下 matlab 命令:
请在 matlab 命令行窗口中直接输入以执行命令。web 浏览器不支持 matlab 命令。
select a web site
choose a web site to get translated content where available and see local events and offers. based on your location, we recommend that you select: .
you can also select a web site from the following list:
how to get best site performance
select the china site (in chinese or english) for best site performance. other mathworks country sites are not optimized for visits from your location.
americas
- (español)
- (english)
- (english)
europe
- (english)
- (english)
- (deutsch)
- (español)
- (english)
- (français)
- (english)
- (italiano)
- (english)
- (english)
- (english)
- (deutsch)
- (english)
- (english)
- switzerland
- (english)
asia pacific
- (english)
- (english)
- (english)
- 中国
- (日本語)
- (한국어)