2017-11-09 13 views
0

이미 스모 궤적이있는 일부 노드가있는 802.11p 시나리오가 있습니다. 지금 V2V (차량과 차량) 통신을 측정하고 있습니다. DSDV 및 AODV 라우팅 프로토콜을 통해 사용할 수 있지만 적어도 3 개의 802.11p RSU (도로 측 장치)와 LTE eNodeB를 추가해야합니다. 두 네트워크 요소를 ns2 프로젝트에 추가하여 V2I (차량)를 테스트 할 수있는 방법은 무엇입니까? 인프라).ns2 시나리오에서 도로 측 장치와 eNodeB를 만드는 방법

답변

0

지금은 폐쇄 'googlecode'에서 사용할 수있는 'LTE 소스 코드 패키지 "의

하나는"미 네르 - mampaka-LTE는 "이었다 LTE의 노드 -B : 다른 곳에서 찾을 수없는 일부 파일이 있습니다 Parameters.tcl 시뮬레이션에서 Topology.tcl, main.tcl ...

LTE__minerve-mampaka-lte.tar.gz https://drive.google.com/file/d/1xpqUxUV3d1WHKZsBS54r_Qnx-IfOj3HB/view?usp=sharing

main.tcl

구성 파일 Topology.tcl에서
#include other tcl files 
source Parameters.tcl 
source Topology.tcl 
source session-rtp.tcl 
source http-agent.tcl 
source http-cache.tcl 
source http-server.tcl 

, 라인 53 - 70 일 :

#create dual-simplex links between eNodeB and the SGW 
#uplink S1-U link from each eNB to SGW with user defined bandwidth and delay 
$ns simplex-link $eNodeB $SGW $input_(UP_S1_BANDWIDTH) $input_(UP_S1_DELAY) $input_(UP_S1_QUEUE) 
$ns queue-limit $eNodeB $SGW $input_(QUEUE_LIMIT) 

#downlink S1-U link from each SGW to eNB with user defined bandwidth and delay 
$ns simplex-link $SGW $eNodeB $input_(DOWN_S1_BANDWIDTH) $input_(DOWN_S1_DELAY) $input_(DOWN_S1_QUEUE) 
$ns queue-limit $SGW $eNodeB $input_(QUEUE_LIMIT) 

#create duplex link between SGW and PGW with user defined bandwidth and delay 
$ns duplex-link $SGW $PGW $input_(S5_BANDWIDTH) $input_(S5_DELAY) $input_(S5_QUEUE) 
$ns queue-limit $SGW $PGW $input_(QUEUE_LIMIT) 

#create duplex link between PGW and SERVER with user defined bandwidth and delay 
$ns duplex-link $PGW $SERVER $input_(SGI_BANDWIDTH) $input_(SGI_DELAY) $input_(SGI_QUEUE) 
$ns queue-limit $PGW $SERVER $input_(QUEUE_LIMIT) 

} 

예, 사용 :

+0

source Topology.tcl 감사합니다 → 시뮬레이션에 'Topology.tcl'를 포함 @KnudLarsen 나는 줄 것이다 하지만 내 프로젝트에서 어떻게 구현할 수 있는지 설명해 주시겠습니까? 내 프로젝트에 파일이나 라인을 어떻게 통합 할 수 있는지, 그리고 802.11p 도로 측면 유닛의 구현에 대한 조언이 있거나 교통 인프라 구축을위한 교통 수단을 형성하는 접근 점보다 감사 할 것입니다. – Houston61