Hi,
Do you find a solution to include movement in umts interface using NIST module ?
I know that it's possible to add movement to iface80211 and iface80216 but not
yet for umts ?
Concerning the data trafic that ifaceUMTS never receive .. you should add this
in your TCL code
# control for umts interface##################################
set node_odd [expr $nn % 2] ; nn is the number of mobile
if { $node_odd == 1 } {
set dummy_node [$ns create-Umtsnode 0.0.[expr 2+$nn]]
puts "*** dummy: tcl=$dummy_node; id=[$dummy_node id]; addr=[$dummy_node
node-addr]"
}
# don't ask me why we should have a pair number of umts interfaces :)
then, to see the trafic in the tracefile , you should add these lines:
$bsUMTS trace-outlink $f 2
$iface0_($j) trace-inlink $f 2 ;# for each umts interface that u create
$iface0_($j) trace-outlink $f 3 ;# for each umts interface that u create
Best Regards
El Hadi