📄 ofdm_wienerpa.m
字号:
% OFDM_WienerPA.m
%
% Simulation 16QAM-OFDM with Wiener PA model
%
% Programmed by linxiaochen
%
%******************** Preparatin part *******************************
sr = 256000.0; % Symbol rate
m1 = 4; % m1:Number of modulation levels
% (BPSK:m1=1, QPSK:m1=2, 16QAM:m1=4)
br = sr .* m1; % Bit rate
nd = 1024; % Number of symbols htat simulates in
% each loop
IPOINT = 8; % Number of oversamples
L = 4; % IFFT(FFT)采样点数
Sdata = 2^7; % IFFT(FFT)每帧长度
SNR_dB = 1:12; % 仿真信噪比范围
SNR1_dB = 0:0.1:12;
%******************** Data generation *******************************
data1 = rand(1,nd*m1) > 0.5; % rand:built in function
%******************** 16QAM Modulation ******************************
[ich,qch] = qammod(data1,1,nd,m1);
% figure(1);
% plot(ich,qch,'*');
QAM_mod = ich + i*qch;
%**************************** OFDM调制 ****************************
OFDM_mod_group = zeros(L*length(QAM_mod),1);
OFDM_mod = zeros(L*length(QAM_mod),1);
for n = 1:length(QAM_mod)/Sdata
OFDM_mod_group((n-1)*L*Sdata+Sdata/2+1:(n-1)*L*Sdata+Sdata/2*3) =...
QAM_mod((n-1)*Sdata+1:n*Sdata);
OFDM_mod((n-1)*(L*Sdata)+1:n*(L*Sdata)) = ...
ifft(OFDM_mod_group((n-1)*(L*Sdata)+1:n*(L*Sdata)),(L*Sdata));
end;
%**************************** Wiener PA *************************
OFDM_mod_reshape = reshape(OFDM_mod,1,length(OFDM_mod));
for every = 1:length(OFDM_mod_reshape)
if every == 1
v(every) = OFDM_mod_reshape(every);
elseif every == 2
v(every) = 0.2*v(every-1) + OFDM_mod_reshape(every);
else
v(every) = 0.2*v(every-1) + OFDM_mod_reshape(every)...
+ 0.3*OFDM_mod_reshape(every-2);
end
y(every) = (14.9740 + i*0.0519)*v(every)+...
(-23.0954 + i*4.9680)*v(every)*(abs(v(every)))^2+...
(21.3936 + i*0.4305)*v(every)*(abs(v(every)))^4;
end
ich2 = real(y);
qch2 = imag(y);
for ebn0 = 1:length(SNR_dB)+1
%******************** START CALCULATION *****************************
nloop = 10; % Number of simulation loops
noe = 0; % Number of error data
nod = 0; % Number of transmitted data
%for iii = 1:nloop
%******************** Attenuation Calculation ***********************
spow = sum(ich2.*ich2+qch2.*qch2)/nd;
% sum:built in function
attn = 0.5*spow*sr/br*10.^(-(ebn0-1)/10);
attn = sqrt(attn);
% sqrt:built in function
%************** Add White Gaussian Noise (AWGN) *********************
[ich3,qch3] = comb(ich2,qch2,attn);
OFDM_AWGN = ich3 + j*qch3;
OFDM_AWGN_reshape = reshape(OFDM_AWGN,length(OFDM_AWGN),1);
%**************************** OFDM解调 ****************************
for m = 1:length(QAM_mod)/Sdata
OFDM_demod_group((m-1)*(L*Sdata)+1:m*(L*Sdata)) = ...
fft(OFDM_AWGN_reshape((m-1)*(L*Sdata)+1:m*(L*Sdata)),(L*Sdata));
OFDM_demod((m-1)*Sdata+1:m*Sdata) = ...
OFDM_demod_group((m-1)*L*Sdata+Sdata/2+1:(m-1)*L*Sdata+Sdata/2*3);
end;
ich5 = real(OFDM_demod);
qch5 = imag(OFDM_demod);
figure(2);
plot(ich5,qch5,'*');
%******************** 16QAM Demodulation ****************************
[demodata] = qamdemod(ich5,qch5,1,nd,m1);
%******************** Bit Error Rate (BER) **************************
noe2 = sum(abs(data1-demodata));
nod2 = length(data1);
noe = noe + noe2;
nod = nod + nod2;
ber(ebn0) = noe/nod;
end % for iii = 1:nloop
%******************** Output result *********************************
%end
t1 = [0:0.1:12];
tt1=exp(t1*log(10)/10);
B1 = 3/8.*erfc(sqrt(2/5.*tt1))-9/64.*erfc(sqrt(2/5.*tt1)).*erfc(sqrt(2/5.*tt1));
t11=[0:(length(ber)-1)];
figure(3);
semilogy(t1,B1,t11,ber,'v-');
[pxx1,f1] = pwelch(OFDM_mod,256);
pxxdB1 = 10 * log10(pxx1 / max(pxx1));
[pxx2,f2] = pwelch(y,256);
pxxdB2 = 10 * log10(pxx2 / max(pxx2));
figure(4); % OFDM调制、解调信号功率谱密度
plot(f1,pxxdB1,'b',f2,(pxxdB2+3),'r');
% eyediagram((ich+qch*i),2);
eyediagram((ich5(1:500)+qch5(1:500)*i),2)
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -