-
Notifications
You must be signed in to change notification settings - Fork 0
/
st_middle_pt_perfect_norm.m
252 lines (164 loc) · 7.51 KB
/
st_middle_pt_perfect_norm.m
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
%% Notations
%$$Y = HX + N$$
%(except for STBC, which is $Y=XH + N$)
%Y: M_r * T
%H: M_r * M_t
%X: M_t * T
%N: M_r * T
%% Initialization
clear all;
close all;
%Specify extra stings to save .mat file as (leave no spaces)
version = 'pathLossNormMiddle';
%% SNR and error parameters
% Set SNR and errors to be evaulated
errors_evaluated = 2000;
snr_dB = -5:5:20;
ber_pu_direct = zeros(1,length(snr_dB));
ber_pu_relay = zeros(1,length(snr_dB));
ber_su = zeros(1,length(snr_dB));
%% Pathloss Model
% Taking all pathlosses in dB
pl_pt_pr_dB = 0;
%pl_pt_st_dB = 10;
pl_st_pr_dB = 7;
pl_st_sr_dB = 0;
%% Primary Transmitter Setup
pt_direct_constellation = [-1 1];
pt_direct_average_symbol_energy = mean(abs(pt_direct_constellation).^2);
pt_direct_constellation = pt_direct_constellation./sqrt(pt_direct_average_symbol_energy);
pt_direct_average_symbol_energy = mean(abs(pt_direct_constellation).^2);
%Relay Phase: TODO- check
pt_bits = 6;
pt_M = 2.^pt_bits;
pt_relay_constellation = qammod([0:pt_M-1], pt_M, 0);
pt_relay_average_symbol_energy = mean(abs(pt_relay_constellation).^2);
pt_relay_constellation = pt_relay_constellation./sqrt(pt_relay_average_symbol_energy);
pt_relay_average_symbol_energy = mean(abs(pt_relay_constellation).^2);
%% STBC Setup
rng('default');
rng('shuffle');
%QPSK symbols
st_pu_const = (exp(1i.*[-3*pi/4 3*pi/4 7*pi/4 -7*pi/4])); %Unity magnitude and thus unity power
%st_pu_average_symbol_energy = mean(abs(st_pu_const).^2);
%scaled QPSK symbols
st_su_const = st_pu_const./1.6; %Scaling down the unity amplitude by 1.6
% st_su_average_symbol_energy = mean(abs(st_su_const).^2);
%
% e = 4./((9*st_pu_average_symbol_energy) + (3*st_su_average_symbol_energy));
% st_pu_const = st_pu_const.*sqrt(e);
% st_su_const = st_su_const.*sqrt(e);
%create all combinations of two QPSK symbols
a=[1:4 1:4 1:4];
b=unique([nchoosek(a,3)],'rows');
%nchoosek: produces all combinations of vector where 3 elements are chosen at a time. unique: Choose unique combinations, since each element was assumed to be unique in combination.
X = st_su_const(b((1:length(b)),:));
%% Loop section
% Set SNR here onwards for loop, when calculating BER
for m = 1:length(snr_dB)
no_tx_pu = 0;
no_tx_su = 0;
errors_pu_direct = 0;
errors_pu_relay = 0;
errors_su = 0;
pt_direct_pr_snr = snr_dB(m) + pl_pt_pr_dB;
pt_direct_pr_snr = 10.^(pt_direct_pr_snr/10);
pt_direct_pr_sigma = sqrt(1/pt_direct_pr_snr);
st_pr_snr = snr_dB(m) +pl_st_pr_dB;
st_pr_snr = 10.^(st_pr_snr/10);
st_sr_snr = snr_dB(m) +pl_st_sr_dB;
st_sr_snr = 10.^(st_sr_snr/10);
while errors_pu_direct < errors_evaluated
%%%%%%%%
%Direct Transmission of PU
%BSPK, 6 bits at a time. h constant for whole time interval.
%%%%%%%%
pt_direct_bits = randi([0 1], 1, 6);
pt_direct_x = pt_direct_constellation(pt_direct_bits + 1);
pt_direct_h = (randn(1, 6) + 1i.*randn(1,6))./sqrt(2);
pt_direct_n = pt_direct_pr_sigma*((randn(1,6)+1i*randn(1,6))./sqrt(2));
pt_direct_y = pt_direct_h.*pt_direct_x + pt_direct_n;
%Perfect CSI
pt_direct_y = conj(pt_direct_h).*pt_direct_y./(abs(pt_direct_h).^2);
pt_direct_decoded = (sign(real(pt_direct_y))+1)./2;
errors_pu_direct = errors_pu_direct + sum(pt_direct_bits ~= pt_direct_decoded);
%%%%%%%%
%Relayed System
%Phase I: Assume perfect decoding.
%%%%%%%%
pt_symbols = randi([0 pt_M-1], 1,1);
pt_bit_sequence = de2bi(pt_symbols,pt_bits);
%At secondary transmitter
pt_st_y_decoded = pt_symbols;
pt_st_y_decoded_bits = de2bi(pt_st_y_decoded,pt_bits);
%%%%%%%%
%Phase II: ST, STBC Code
%%%%%%%%
%At secondary transmitter
st_symbols = randi([1,4], 3, 1);
st_bit_sequence = de2bi(st_symbols-1, 2);
st_symbols = st_su_const(st_symbols);
c = st_pu_const(bi2de(reshape(pt_st_y_decoded_bits, 3, 2)) + ones(3,1));
s = st_symbols;
st_stbc_code = [c(1) c(2) c(3); -c(2)' c(1)' s(1)'; -c(3)' s(2)' c(1)'; s(3)' -c(3)' c(2)'];
%Conjugate: '
%Row vectors: Instance of time, T= 4, Column vector: Tx Antennas M_t = 3;
%At primary receiver
st_pr_sigma = sqrt((norm(st_stbc_code,'fro')^2)/(4*st_pr_snr));
h = (randn(3,1)+1i*randn(3,1))./sqrt(2); %Joint variance of complex Gaussian distribution is 1. Therefore, average value of magnitude of fading channel is 1.
%the following complex equivalent channel matrix is for the ORTHOGONAL 3TX STBC
H = [h(1) h(2) h(3); h(2)' -h(1)' 0; h(3)' 0 -h(1)'; 0 h(3)' -h(2)'];
%the following complex equivalent channel is for the Embedded Diversity Code
%for 3 TX
H_eqv = [h(1) h(2) h(3) 0 0 0; h(2)' -h(1)' 0 h(3)' 0 0; h(3)' 0 -h(1)' 0 h(2)' 0; 0 h(3)' -h(2)' 0 0 h(1)'];
N = st_pr_sigma.*((randn(4,1)+1i*randn(4,1))./sqrt(2));
% T= 4, M_r = 1
%Joint variance of complex Gaussian distribution is 1. Therefore, average value of magnitude of fading channel is 1.
%received Signal
Y = st_stbc_code * h + N; %Code multiplied with h, not H i.e. multiplied with fading coefficients only.
for k = 1:length(X)
%discard the effect of diversity 2 and 1 layer from total received
%signal to get Y_remaining, alias Y_rem
Y_rem = [Y(1); Y(2)-h(3)*X(k,1)'; Y(3)-h(2)*X(k,2)'; Y(4)-h(1)*X(k,3)'];
Y_prime = [Y_rem(1) Y_rem(2:4)'].';
%Apply matched filtering because the remaining received signal is
%due to the contribution from the Orthogonal Diversity 3 layer Only
Y_match = H' * Y_prime;
Sym = sign([real(Y_match); imag(Y_match)]);
S_tilde = Sym(1:3) + 1i*Sym(4:6);
Decoded_Symb{k} = [S_tilde.' X(k,1) X(k,2) X(k,3)];
%Now apply ML decoding using the overall equivalent channel matrix
%H_Eqv
diff = [Y(1) Y(2:4)'].' - H_eqv * Decoded_Symb{k}.';
metric(k) = norm(diff,'fro')^2;
end
[W, ind] = min(metric);
st_pr_decoded_stbc = Decoded_Symb{ind};
st_pr_decoded_symbols = st_pr_decoded_stbc(1:3);
st_pr_decoded_bits = reshape([(sign(imag(st_pr_decoded_symbols))+1)/2;(sign(real(st_pr_decoded_symbols))+1)/2].', 1,6);
errors_pu_relay = errors_pu_relay + sum(pt_bit_sequence ~= st_pr_decoded_bits);
no_tx_pu = no_tx_pu + 1;
% At secondary reciever
st_sr_sigma = sqrt((norm(st_stbc_code,'fro')^2)/(4*st_sr_snr));
st_sr_h = (randn(3,1)+1i*randn(3,1))./sqrt(2);
st_sr_n = st_sr_sigma.*((randn(4,1)+1i*randn(4,1))./sqrt(2));
st_sr_Y = st_stbc_code * st_sr_h + st_sr_n;
%%%%%%%%%%%%%%%
% Assume that we know all 6 bits of primary transmitter
% perfectly.
%%%%%%%%%%%%%%%
st_sr_Y_dash = st_sr_Y(2:4);
H_dash = [-st_sr_h(2) st_sr_h(1) 0;-st_sr_h(3) 0 st_sr_h(1); 0 -st_sr_h(3) st_sr_h(2)];
H_prime = [st_sr_h(3)'./(abs(st_sr_h(3)).^2);st_sr_h(2)'./(abs(st_sr_h(2)).^2);st_sr_h(1)'./(abs(st_sr_h(1)).^2)];
s_prime = (H_prime.*(st_sr_Y_dash + H_dash*(c')))';
st_sr_decoded_bits = [(sign(imag(s_prime))+1)/2;(sign(real(s_prime))+1)/2].';
errors_su = errors_su + sum(st_bit_sequence(:) ~= st_sr_decoded_bits(:));
no_tx_su = no_tx_su + 1;
end
snr_dB(m)
ber_pu_direct(m) = errors_pu_direct/(pt_bits*no_tx_pu)
ber_pu_relay(m) = errors_pu_relay/(pt_bits*no_tx_pu)
ber_su(m) = errors_su/(6*no_tx_su)
end
%% Save Data
save(strcat('values_', num2str(snr_dB(1)), '_' , num2str(snr_dB(end)), 'dB','_',num2str(errors_evaluated),'iterations', version,'.mat'));