~comnets/openwns-systemtest-wimac/systemtest-wimac--main--1.0

« back to all changes in this revision

Viewing changes to configIMTA/configSMa.py

  • Committer: Maciej Muehleisen
  • Date: 2010-06-02 15:48:16 UTC
  • mto: This revision was merged to the branch mainline in revision 64.
  • Revision ID: mue@comnets.rwth-aachen.de-20100602154816-bmfbng92wu0olmri
Only center cell nodes are evaluated in IMT-A scenarios.

Show diffs side-by-side

added added

removed removed

Lines of Context:
53
53
    trafficDL = 0.0 # bit/s per station
54
54
    
55
55
    noIPHeader = True #Set to true to set IP header to 0
56
 
    probeWindowSize = 0.01 # Probe per frame
 
56
    probeWindowSize = 0.005 # Probe per frame
57
57
    scheduler = "RoundRobin" # "PropFair"
58
58
 
59
59
# General Setup
104
104
# DHCP, ARP, DNS for IP
105
105
ip.BackboneHelpers.createIPInfrastructure(WNS, "WIMAXRAN")
106
106
 
107
 
utNodes = WNS.simulationModel.getNodesByProperty("Type", "UE")
108
 
bsNodes = WNS.simulationModel.getNodesByProperty("Type", "BS")
 
107
centerNodes = WNS.simulationModel.getNodesByProperty("isCenter", True)
109
108
 
110
109
# Probe configuration
111
110
loggingStationIDs = []
112
111
 
113
 
for node in utNodes + bsNodes:    
 
112
for node in centerNodes:    
114
113
    loggingStationIDs.append(node.dll.stationID)
115
114
 
116
115
wimac.evaluation.default.installDebugEvaluation(WNS, loggingStationIDs, "Moments")