Hi everyone,
I change the code at UE.m:
`% Get the RX power (power allocation) from the target eNodeB
if(strcmp(obj.attached_site.site_type,’femto’))
TX_power_signaling = the_RB_grid.power_allocation_signaling’.*(6.31); %%%% 6.31 = 8dB,
TX_power_data = the_RB_grid.power_allocation’;
RX_total_RB = (TX_power_data+TX_power_signaling)./user_macroscopic_pathloss_lin./user_shadow_fading_loss_lin;
RX_total = reshape([RX_total_RB; RX_total_RB],1,[])/(2);
else
TX_power_data = the_RB_grid.power_allocation’;
TX_power_signaling = the_RB_grid.power_allocation_signaling’;
RX_total_RB = (TX_power_data+TX_power_signaling)./user_macroscopic_pathloss_lin./user_shadow_fading_loss_lin;
RX_total = reshape([RX_total_RB; RX_total_RB],1,[])/(2);
end.`
But it didn’t work.
Can you help me??
Thanks so much.