30. May 2018 at 7:35
#10523
Stefan Pratschner
Keymaster
Hi,
in your topology and link configuration you assign UE1 to BS1 and UE2 and UE3 to BS2:
% Primary (desired) links
scStr.topology.primaryLinks = [ ‘BS1:UE1,’…
‘BS2:UE2,’…% downlink links only
‘BS2:UE3’ ];
However, in your downlink schedule, you assign UE1 and UE2 to BS1 and UE3 to BS2:
%% Schedule
% both users are scheduled the same total bandwidth
scStr.schedule.fixedSchedule{1} = [ ‘UE1:96,UE2:112’ ]; % first user gets the upper half of the first cells’s schedule
scStr.schedule.fixedSchedule{2} = [ ‘none:28,UE3:24’ ]; % second user gets the lower half of the second cells’s schedule
which is not consistent with your topology setting.
best
Stefan