Hi ,
The first part of my last question is not yet resolved and I still get only the first position of the chosen node as output.
However, the second part is partially resolved: In fact, if I use two nodes belonging to the same Nodecontainer and Having the same mobility model (I'm using a trace file from Bonnmotion) using the following code, I get the initial position of the two nodes:
oss <<"/NodeList/"<<epc.ueNodes.Get(0)->GetId()<<"|"<<epc.ueNodes.Get(1)->GetId()<<"/$ns3::MobilityModel/CourseChange";
However, if I need to use a different two differents nodes from differents nodecontainer and having different mobility model ( the first one is from Bonnmotion trace file and the second using ConstantPositionMobilityModel), I get only the initial position of the first node:
oss <<"/NodeList/"<<epc.ueNodes.Get(0)->GetId()<<"|"<<mesh.mesh_nodes.Get(3)->GetId()<<"/$ns3::MobilityModel/CourseChange";
Can you tell me what is the issue ?
Best regards.