1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- [General]
- network = ObstacleIntersectionTest
- #debug-on-errors = true
- tkenv-plugin-path = ../../../etc/plugins
- description = "Test intersection with obstacles"
- seed-set = 3
- *.numHosts = 2
- **.config = xmldoc("obstacles.xml")
- **.displayIntersections = true
- **.constraintAreaMinX = 0m
- **.constraintAreaMinY = 0m
- **.constraintAreaMinZ = 0m
- **.constraintAreaMaxX = 2000m
- **.constraintAreaMaxY = 1000m
- **.constraintAreaMaxZ = 100m
- **.obstacleLossType = "DielectricObstacleLoss"
- **.objectCacheType = ""
- # mobility
- **.host*.mobility.initFromDisplayString = false
- **.host*.mobilityType = "MassMobility"
- **.host*.mobility.changeInterval = truncnormal(2s, 0.5s)
- **.host*.mobility.changeAngleBy = normal(0deg, 30deg)
- **.host*.mobility.speed = truncnormal(20mps, 8mps)
- **.host*.mobility.updateInterval = 100ms
- # ping app (host[0] pinged by others)
- *.host[0].numPingApps = 0
- *.host[*].numPingApps = 2
- *.host[*].pingApp[*].destAddr = "host[0]"
- **.pingApp[0].startTime = uniform(1s,5s)
- **.pingApp[1].startTime = 5s+uniform(1s,5s)
- **.pingApp[*].printPing = true
- # nic settings
- **.wlan[*].bitrate = 2Mbps
- **.wlan[*].mgmt.frameCapacity = 10
- **.wlan[*].mac.address = "auto"
- **.wlan[*].mac.maxQueueSize = 14
- **.wlan[*].mac.rtsThresholdBytes = 3000B
- **.wlan[*].mac.retryLimit = 7
- **.wlan[*].mac.cwMinData = 7
- **.wlan[*].mac.cwMinBroadcast = 31
- **.wlan[*].radio.transmitter.power = 5mW
- **.wlan[*].radio.receiver.sensitivity = -85dBm
- **.wlan[*].radio.receiver.snirThreshold = 4dB
|