addressed the comments in https://codereview.appspot.com/11372043/#msg1
authorNicola Baldo <nbaldo@cttc.es>
Mon, 29 Jul 2013 13:26:01 +0200
changeset 10100 169a01a864de
parent 10099 dbc507428c0f
child 10101 9658a01ee462
addressed the comments in https://codereview.appspot.com/11372043/#msg1
src/lte/doc/source/lte-design.rst
src/lte/doc/source/lte-user.rst
--- a/src/lte/doc/source/lte-design.rst	Wed Jul 24 13:20:24 2013 +0200
+++ b/src/lte/doc/source/lte-design.rst	Mon Jul 29 13:26:01 2013 +0200
@@ -2085,11 +2085,13 @@
    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.
 
 
--- a/src/lte/doc/source/lte-user.rst	Wed Jul 24 13:20:24 2013 +0200
+++ b/src/lte/doc/source/lte-user.rst	Mon Jul 29 13:26:01 2013 +0200
@@ -564,8 +564,8 @@
     BuildingsHelper::Install (ueNodes);
     NetDeviceContainer ueDevs;
     ueDevs = lteHelper->InstallUeDevice (ueNodes);
-    Ptr<BuildingsMobilityModel> mm0 = enbNodes.Get (0)->GetObject<ConstantPositionMobilityModel> ();
-    Ptr<BuildingsMobilityModel> mm1 = enbNodes.Get (1)->GetObject<ConstantPositionMobilityModel> ();   
+    Ptr<ConstantPositionMobilityModel> mm0 = enbNodes.Get (0)->GetObject<ConstantPositionMobilityModel> ();
+    Ptr<ConstantPositionMobilityModel> mm1 = enbNodes.Get (1)->GetObject<ConstantPositionMobilityModel> ();
     mm0->SetPosition (Vector (5.0, 5.0, 1.5));
     mm1->SetPosition (Vector (30.0, 40.0, 1.5));