# This configuration file is used as an input for the traffic generator program. # Comment lines begin with '#'. # Blank lines are omitted. #==========PARAMETER FOR DEFINING OUTPUT FILE NAME & LOCATION=====# # Name of Output file OUTPUT_FILE_NAME=Calls.txt # Name of the file containing caller set CALLER_FILE_NAME = Caller.txt #=======PARAMETER FOR DEFINING USER SET====================== # Number of user in the Caller Set.(These users only generates call) NUMBER_CALLERS = 1000 #========PARAMETER FOR GENERATING USER ADDRESS====================== NUMBER_DOMAINS = 20 SUBDOMAINS_ENABLED = true MAX_CHARS_USERS = 8 MAX_CHARS_DOMAINS = 8 MAX_CHARS_SUBDOMAINS = 5 #========PARAMETER FOR TRAFFIC INTENSITY============================ # Daily highest(Traffic Intensity at peak hour)Traffic Intensity(call/second) HIGH_DAILY_RATE = 0.001 # Daily lowest(Traffic Intensity at off-peak hour) Traffic Intensity (calls/second). LOW_DAILY_RATE = 0.001 # Lowerbound of the weekly traffic rate ratio (will be multiplied by the daily call rate). # The value ranges from 0 and 1. HIGH_WEEKLY_VOLUME_RATIO = 1 TRAFFIC_VOLUME_REDUCTION_PERCENTAGE_IN_WEEKEND = 0.5 # Start time of the peak hour. # The value ranges from 0 to 23 (0 means 12 o'clock at midnight, 23 means 11.00 PM). HIGH_DAILY_RATE_START = 0 # Start time of the off-peak hour. # The value ranges from 0 to 23 (0 means 12 o'clock at midnight, 23 means 11.00 PM). HIGH_DAILY_RATE_END = 12 #==========PARAMETER FOR INTERARRIVAL DISTRIBUTION============ # Distribution function type for interarrival time. # 1 - Exponential distribution (currently only this distribution is implemented) INTERARRIVAL_DISTRIBUTION_FUNCTION_TYPE = 1 #=======PARAMETER FOR CALL DURATION DISTRIBUTION============== # Distribution function type for call duration. # 1 - Exponential distribution, 2-Lognormal, 3-pareto CALL_DURATION_DISTRIBUTION_FUNCTION_TYPE = 2 # EXPONENTIAL DISTRIBUTION FOR CALL DURATION - Average call duration (in seconds). It is required for exponential distribution as call duration distribution. AVERAGE_CALL_DURATION = 580.0 # LOG NORMAL DISTRIBUTION FOR CALL DURATION LOGNORMAL_TRUNCATION_POINT_FOR_DURATION = 2000 LOGNORMAL_MEDIAN_FOR_DURATION = 500 #=======PARAMETER FOR VOLUME PER CALLER DISTRIBUTION================ # Distribution type for user call generation (Volume per caller distribution). # 1 - Call generation at Delta Rate, 2 - Uniform_Max_Min, 3 - Exponential, 4 - Zipf, CALLER_CALL_DISTRIBUTION_TYPE = 1 # ZIPF DISTRIBUTION FOR CALL DURATION ZIPF_TRUNCATION_FOR_CALLERS_DIST = 500 ZIPF_SCALE_FOR_CALLERS_DIST = 1 # UNIFORM DISTRIBUTION as volume per caller distribution MAX_UNIFORM = 90 MIN_UNIFORM = 30 #=======PARAMETER FOR VOLUME PER RECEIVER DISTRIBUTION=========== # Distribution type for call receive by user. # 1 - Uniform RECEIVER_CALL_DISTRIBUTION_TYPE = 1