Hi there,
what is the different between these 2 parameter ? SINR and effec_SINR?
is there any place in the LTE-Sim, that SINR is computed ? or it had
been computed before ?
as i see here ? double SINRForCQIIndex[15] = {
-4.63, -2.6, -0.12, 2.26, 4.73,
7.53, 8.67, 11.32,
14.24, 15.21, 18.63, 21.32,
23.47, 28.49, 34.6
};
is there any method implemented here to compute SINR in depending on
PR(power trasnmision) ?
I would also like to put out the SINR value depending on the received
power level? As I am running the MultiCell scenario there is no sinr
put out if I am defining the AMC-MAPPING feature in global_config/load-
parameter (btw: which one is loaded exactly?).
As I am writing some couts to the StartRx function for debugging there
is nothing given to console. When is the StartRx() function invoked?
Does the UEs have to receive something to get the StartRx() fct get
invoked?
If the UE is attached to the channel, the method StartRx is always called, also when there are no packets sent to that device.
To sum up: How could i print out those sinr easily?
Thanks a lot for your reply! I already did what you have mentioned:
-recompiled after making any changes (i.e. make clean and then make)
-enabled AMC-MAPPING
What i want to do?
I have now implemented a new mobility model (Manhattan) to LTE-Sim and
want now evaluate it by shifting the UEs through a multicell scenario
and plot the SINR.
Therefore, i tried modifying the multicell scenario by commenting out
the applications stuff. But now there is nothing put out. I just found
out that the AMC-DEBUGGING stuff is print out if i am switching on any
application (e.g. VOIP) like:
eNBs->at (j)->GetPhy ()->GetDlChannel ()->AddDevice(ue);
Hi Giuseppe,It seems the calculation of effective SINR is useless in the current implementation. The UE sends only 1 CQI value (not 1 CQI value per sub carrier). So in the function SelectUsersToSchedule, I see that we only set this single CQI value in m_channelContition. Hence this vector will only have a single value, there will be no averaging taking place in the function GetEesmEffectiveSinr and the effective SINR will be always the same as SINR.
Regards,Tamer
On Monday, July 25, 2011 3:03:22 PM UTC+2, Giuseppe Piro wrote:Hi there,2011/7/25 K.TruongDinh <ktruo...@googlemail.com>Hi there,
what is the different between these 2 parameter ? SINR and effec_SINR?
The effective SINR is a SINR value obtained as a weighted average among SINRs of a set of sub channels .It is used in two cases:- into the packet scheduler for choosing the MCS to use for data transmission, knowing the SINRs (or, if you prefer CQIs) sent by the scheduled UE for the assigned sub channels- into the error model for selecting the BLER knowing both the effective SINR and the MCS used during the transmissionis there any place in the LTE-Sim, that SINR is computed ? or it had
been computed before ?
as i see here ? double SINRForCQIIndex[15] = {
-4.63, -2.6, -0.12, 2.26, 4.73,
7.53, 8.67, 11.32,
14.24, 15.21, 18.63, 21.32,
23.47, 28.49, 34.6
};The previous code represent a set of SINR thresholds assigned to each CQI value. I.e., if you receive a CQI equal to 1, it means that the SINR is at most equal to -4.63 dB.is there any method implemented here to compute SINR in depending on
PR(power trasnmision) ?Yes. have a look to the UeLtePhy::StartRx function.Cheers,Giuseppe
--
You received this message because you are subscribed to the Google Groups "lte-sim" group.
To post to this group, send email to lte...@googlegroups.com.
To unsubscribe from this group, send email to lte-sim+u...@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/lte-sim?hl=en