首页 > > 详细

辅导 TELCOM 2310 Fall 2024 Project 1辅导 Python语言

TELCOM 2310 Fall 2024

Project 1

As discussed in class, routers and switches use queues (also called buffers) to temporarily store packets when they cannot immediately send them on an outgoing link. As we’ve seen, these queues are finite. Once the queue is filled with packets, any new packets that arrive before a packet transmission makes space in the queue again are dropped and lost.

Recall that the details of this phenomenon are tightly related to the rates at which packets arrive at the queue and can be transmitted on the outgoing link, as well as the size of the buffer. We will use λ to denote the packet arrival rate (in packets per second), µ to denote the packet departure (or transmission) rate (in packets per second), and n to denote the size of the buffer (in packets). See Figure 1 for an illustration. If you are interested in more details for queuing theory and its application to computer networks, you can see [1] and [2].

In this project, you will write a software tool that will simulate the arrival and departure of packets to/from the router. You will then use this tool examine scenarios with different a rrival / departure rates and queue sizes.

Figure 1: A router buffer representation.

1 Discrete event simulator

Every arrival or departure of a packet to/from the router is a discrete event. Whenever a new event takes place, the state of the queue is altered. We can define the state S of the queue Q as the following tuple:

S(Q) = (# of packets in the queue, # of packets dropped)                      (1)

For example if S(Q) = (143, 4), there are currently 143 packets in the buffer, and 4 packets have been dropped so far in total.

For this project, we have two different possible events: (i) packet arrival and (ii) packet depar-ture. In order to decide if a simulated event is a packet arrival or departure we have to calculate the probability of each event. Since we have an arrival rate of λ packets/sec, and a departure rate of µ packets/sec, the corresponding probabilities P are:

After every event, the state S(Q) is changed, that is, the number of packets in the queue and/or the number of dropped packets are changed. Our objective in this project is to keep track of the state changes for a number of discrete events and understand the reasons behind the observed changes.

2 Programming assignment

You can use any programming language you are familiar with to complete this project. The basic steps you need to take to complete the assignment are given below in pseudocode.

2.1 Initialization phase

Initialize variables/counters related to the queue status.

• pkt in q = 0

• pkt dropped = 0

2.2 Simulating the events

Repeat for x times (that is, the number of events we want to simulate) algorithm 1.

Algorithm 1: Pseudo code for event

In line 1 you need to call a random number generator routine that returns a random real number in the range [0, 1]. Note that this is must a real number between 0 and 1 (inclusive); it is NOT an integer (i.e. you need to be able to generate numbers between 0 and 1, not just either 0 or 1). For example, Python’s random.random() can be used here, but random.randint() will not give the correct results (https://docs.python.org/3/library/random.html).

3 Analyzing performance

After implementing the simulator you will experiment with it using different values for the input parameters (λ, µ, n). Therefore, it is not advisable to hardcode the parameters within the simu-lator’s code. It is preferable to pass them to the program as command line arguments. For each combination of input parameters, you will be required to simulate at least 1,000,000 total events (i.e., x = 1, 000, 000).

3.1 Constant rates

In the first set of experiments, you will use constant input rates. Table 1 summarizes the different values of λ, µ and n that you are going to use. Note that you will have to use all the different combinations (27 in total).

Table 1: Simulation parameters.

3.2 Variable input rate

In the second set of simulations, the input rate λ will vary over the events, while the departure rate stays constant at µ = 125pkt/sec and the buffer size n = 100 packets. You will again have to simulate at least 1,000,000 events, and during the simulation λ will vary according to Table 2.

Table 2: Variations of λ as the simulation progresses.

Table 2 should be interpreted as follows: “For the first 10% of the events the input rate will be 70 pkt/sec, for the next 60% of the events λ = 200pkt/sec” and so on.

4 Deliverables

You are required to deliver the following:

• Clean event simulator code (i.e., structured and with comments) that will compile and run without modifications, and a text README file that clearly explains exactly how to compile (if needed) and run the code (35% of the total project’s points).

• A report (65% of the total project’s points) that will, (i) briefly describe the implementation of your simulator, and (ii) analyze the simulation results. In particular, for the second part, you are asked to provide figures for every scenario, for the number of packets in the queue and the number of packets dropped from the queue, versus the number of simulated events. Additionally, you will need to provide a (brief) explanation of the behaviors observed based on our discussions in class. Figure 2 shows a sample evaluation plot. We have 10 simulated events and the queue size is n = 5. The relation between the incoming and outgoing rate is such that the queue gets filled up quickly and packet drops start to be observed after the 6 th event (but, you will have to provide a more detailed explanation, and show results for 1 million events, not 10).

To help you create your figures, we are providing a Python program that you can use/modify for this purpose (although you are also free to use a tool of your choice to create the figures). Note that in some cases, it may be helpful to create “zoomed-in” plots that focus on the initial behavior. (e.g. the first 2000 events rather than all 1 million) to better understand the effects of the different parameters.

Figure 2: Sample evaluation plot.

The deadline is Monday, October 28th, 2024, at 6 pm. Projects must be submitted on Canvas. As with the homework assignments, you may use your textbook and notes to complete this assignment, and may discuss concepts with other students or use online resources that help you better understand the concepts involved. You are NOT permitted to look at other students’ solutions (including code), or online solutions/code for substantially similar problems. Similarly, you are not permitted to share your solutions with other students, or post your solutions online. Ask the instructor if you have any questions about this policy.




联系我们
  • QQ:99515681
  • 邮箱:99515681@qq.com
  • 工作时间:8:00-21:00
  • 微信:codinghelp
热点标签

联系我们 - QQ: 99515681 微信:codinghelp
程序辅导网!