diff --git a/src/lte/doc/source/lte-design.rst b/src/lte/doc/source/lte-design.rst index 1ae372e86..cd053a631 100644 --- a/src/lte/doc/source/lte-design.rst +++ b/src/lte/doc/source/lte-design.rst @@ -2085,11 +2085,13 @@ The simulation user can set two parameters to control the handover decision: serving cell is less or equal to the servingHandoverThreshold parameter (i.e. the conditions of the UE in the serving cell are getting bad or not good enough), then the eNB considers this UE to hand it over to a new - neighbour eNB. The handover will really triggered depending on the + neighbour eNB. The handover will eventually be triggered depending on the measurements of the neighbour cells. - - neighbourHandoverOffset, if the difference between the best neighbour RSRQ - and the serving cell RSRQ is greater or equal to the neighbourHandoverOffset + - neighbourHandoverOffset, if the UE is considered for handover, and + the difference between the best neighbour RSRQ + and the RSRQ difference between the neighbor and the serving cell + is greater or equal to the neighbourHandoverOffset parameter, then the handover procedure is triggered for this UE. diff --git a/src/lte/doc/source/lte-user.rst b/src/lte/doc/source/lte-user.rst index b58d13445..e963d32a7 100644 --- a/src/lte/doc/source/lte-user.rst +++ b/src/lte/doc/source/lte-user.rst @@ -564,8 +564,8 @@ It is to be noted that any mobility model can be used; however, based on the inf BuildingsHelper::Install (ueNodes); NetDeviceContainer ueDevs; ueDevs = lteHelper->InstallUeDevice (ueNodes); - Ptr mm0 = enbNodes.Get (0)->GetObject (); - Ptr mm1 = enbNodes.Get (1)->GetObject (); + Ptr mm0 = enbNodes.Get (0)->GetObject (); + Ptr mm1 = enbNodes.Get (1)->GetObject (); mm0->SetPosition (Vector (5.0, 5.0, 1.5)); mm1->SetPosition (Vector (30.0, 40.0, 1.5));