日韩精品一区二区三区高清_久久国产热这里只有精品8_天天做爽夜夜做爽_一本岛在免费一二三区

合肥生活安徽新聞合肥交通合肥房產生活服務合肥教育合肥招聘合肥旅游文化藝術合肥美食合肥地圖合肥社保合肥醫院企業服務合肥法律

代寫CS345、代做Java,Python程序設計

時間:2023-12-21  來源:合肥網hfw.cc  作者:hfw.cc 我要糾錯


CS345/912 Sensor Networks and Mobile Data Communications Term 1, 202**024

_________________________________________________________________________________________

__________________________________________________________________________

Victor Sanchez

Department of Computer Science, University of Warwick 1

Coursework Specification

I. Introduction

Two villages 10 kilometres apart communicate through a Delay Tolerant Network (DTN).

Village 1, which has the transceiver Node 0, sends packets to transceiver Node 1. Node 1 is

located in a bus that travels to the vicinity of Village 2, where it will transfer the packets to

transceiver Node 2. The position of all nodes is depicted in Fig. 1, where d = 3 m.

Fig. 1. Initial position of nodes

Node operation

Village 1 - Node 0

Several readings are generated by Node 0 at a rate of 1 reading per second. These readings

are stamped with the order in which they are generated and stored in a buffer. The elements

in the buffer are represented in the simulation by two variables: head and tail. The buffer

in Node 0 can only accommodate three readings; when the buffer is full, the oldest reading

in the buffer is thrown away. Assuming no data is transmitted to Node 1, the contents of

Node 0’s buffer change as tabulated in Table 1.

d

10000 m

Node 0 Node 2

Node 1

x

y

CS345/912 Sensor Networks and Mobile Data Communications Term 1, 202**024

_________________________________________________________________________________________

__________________________________________________________________________

Victor Sanchez

Department of Computer Science, University of Warwick 2

Table 1. Contents of Node 0’s buffer assuming no data transmission.

No. of readings

generated

No. of readings

stored in buffer Stamps Simulation variables

Head Tail

0 0 0 0

1 1 [1] 1 1

2 2 [1,2] 2 1

3 3 [1,2,3] 3 1

4 3 [2,3,4] 4 2

5 3 [3,4,5] 5 3

… … … … …

As long as the buffer is not empty, Node 0 encapsulates the buffer’s contents into a packet

and transmits it to Node 1 at the rate of 4 packets per second. Upon receiving an

acknowledgement from Node 1, Node 0 clears the contents of its buffer.

The bus - Node 1

After receiving a data packet from Node 0, Node 1 stores the contents of the packet into its

buffer, and then acknowledges the reception of the packet. After acknowledging the packet,

Node 1 repeatedly transmits data packets to Node 2 at the rate of 4 packets per second. Node

1 also encapsulates its buffer into a packet. Node 1 only stops transmitting a data packet

upon receiving an acknowledgement from Node 2. Note, however, that Node 1’s buffer can

change before it can successfully send a packet to Node 2. This will happen for instance

when it receives a new packet from Node 0.

Village 2- Node 2

Upon receiving a data packet from Node 1, Node 2 sends an acknowledgement.

II. Methods

Use code CS345_BASE_2023.cc, which is available on the module webpage, to complete

this coursework. The bus as simulated in the code does not move. You can verify this by

running the code: it is only the bus and Village 1 that interact.

a. Introduce a mobility model such that Node 1 moves at a constant speed of 20m/s.

Make sure that the bus moves in a straight line up to the x-coordinate of Village 2

(Node 1 should stop once it reaches this destination). After implementing the

mobility of the bus, make sure that all nodes interact according to the behaviour

described before. [15 marks]

b. Determine the transmission range of Village 1 and Village 2 and the region where the

bus can receive/transmit to both villages (if any). When running your simulations,

make sure that the duration of the simulation is long enough for Node 1 to move to

the same x-coordinate as that of Node 2. [5 marks]

CS345/912 Sensor Networks and Mobile Data Communications Term 1, 202**024

_________________________________________________________________________________________

__________________________________________________________________________

Victor Sanchez

Department of Computer Science, University of Warwick 3

c. Modify the code so that every time Node 2 receives a unique packet, it also prints the

number of readings received so far. [5 marks]

d. Plot the relationship between the speed of Node 1, distance d, and the number of

readings received by Node 2. To this end, test a speed from 20m/s to 200m/s

(increments of 10m/s) and a distance d from 3m to 303m (increments of 6 m). Note

that this relationship can be plotted in different ways, e.g., line plots or 3D plots.

How does the speed of Node 1 and distance d affect the number of readings received

by Node 2? Explain. [10 marks]

e. Modify the behaviour of Node 1 so that it keeps all received readings in its buffer.

For example:

Node 1’s current buffer: [1, 2, 3]

EVENT: data packet is received by Node 1 with readings [4, 5, 6]

Node 1’s new buffer: [1, 2, 3, 4, 5, 6]

[10 marks]

f. Repeat the experiment in II.d, but this time using the modified code from II.e. Plot

the relationship between the speed of Node 1, distance d, and the number of readings

received by Node 2. Explain any differences with the plot obtained in II.d.

[5 marks]

g. Add a mobile node (Node 3) to the DTN. This additional node must be initially

located to the left of Node 1 at a distance d2 = 250 m (see Fig. 3). Node 3 must have

the same y-coordinate and speed as those of Node 1. Node 3 must have the same

behaviour as that of Node 1 (after all previous modifications introduced); i.e., it

should be able to receive packets from Node 0 and transmit packets to Node 2.

Fig. 3. Initial position of nodes with additional node.

d

10000 m

Node 0 Node 2

Node 1

x

y

Node 3 d2 = 250 m

CS345/912 Sensor Networks and Mobile Data Communications Term 1, 202**024

_________________________________________________________________________________________

__________________________________________________________________________

Victor Sanchez

Department of Computer Science, University of Warwick 4

Note that by adding Node 3 to the DTN, the following aspects should be considered:

• Node 0 is originally hard-coded to transmit exclusively to Node 1. You should

modify Node 0’s behaviour so that it can transmit (broadcast) to both Node 1 and

Node 3. Hint: you may use the method SetAllowBroadcast.

• Node 2 should be able to receive data packets from Node 1 and Node 3. Node 2

must be able to properly count the number of readings received. It is possible for

the readings transmitted by Node 1 and Node 3 to overlap. For example, Node 1

may transmit readings **6, while Node 3 may transmit readings 4-7. The total

number of received readings, in this case, is 7; i.e., [1, 2, 3, 4, 5, 6,

7]. It is also possible for Node 1 and Node 3 to transmit different readings. For

example, Node 1 may transmit readings **6, while Node 3 may transmit readings

10-12. The total number of received readings in this case is 9; i.e., [1, 2, 3,

4, 5, 6, 10, 11, 12]. Node 2 must be able to deal with both cases

properly. [30 marks]

h. Plot the relationship between distance d2, as depicted in Fig. 3, distance d, and the

total number of readings received by Node 2. Set the speed of Node 1 and Node 3 to

20m/s. Test distance d from 3m to 303m (increments of 6 m). Test distance d2 from

50m to 1000m (increments of 50 m). When running your simulations, make sure that

the duration of the simulation is long enough for Node 3 to move to the same xcoordinate as that of Node 2. Explain and discuss any differences in the plot

compared to the one obtained in II.f for a speed of 20m/s. [10 marks]

III. Deliverables

Submit the following via Tabula:

1. A report with a description of how the DTN was modified according to each subsection

of Section II, as well as the requested explanations, discussions, and plots. Make sure to

include snippets of code showing your modifications to the code. Cleary explain these

modifications.

2. Your final solution for II.g as a cc file. Please make sure that the submitted code

compiles and works correctly before submitting.

A total of 10 marks are available for the quality and presentation of reports, as well as the

organization and explanation of your code (comment your code appropriately to indicate the

changes made). Documents should be clearly and logically structured, well-written, and

adequately proof-read before submission. The suggested length is between 1600-1800

words. The standard department late penalties and plagiarism policies are in effect.

請加QQ:99515681 或郵箱:99515681@qq.com   WX:codehelp

 

掃一掃在手機打開當前頁
  • 上一篇:XJCO3811代寫、C++程序設計代做
  • 下一篇:COMP 250代做、代寫java編程設計
  • 無相關信息
    合肥生活資訊

    合肥圖文信息
    仿真分析咨詢外包服務-結構 / 熱 / CFD流體 / 電磁 / 光學CAE代做
    仿真分析咨詢外包服務-結構 / 熱 / CFD流體
    流體仿真外包多少錢_專業CFD分析代做_友商科技CAE仿真
    流體仿真外包多少錢_專業CFD分析代做_友商科
    CAE仿真分析代做公司 CFD流體仿真服務 管路流場仿真外包
    CAE仿真分析代做公司 CFD流體仿真服務 管路
    流體CFD仿真分析_代做咨詢服務_Fluent 仿真技術服務
    流體CFD仿真分析_代做咨詢服務_Fluent 仿真
    結構仿真分析服務_CAE代做咨詢外包_剛強度疲勞振動
    結構仿真分析服務_CAE代做咨詢外包_剛強度疲
    流體cfd仿真分析服務 7類仿真分析代做服務40個行業
    流體cfd仿真分析服務 7類仿真分析代做服務4
    超全面的拼多多電商運營技巧,多多開團助手,多多出評軟件徽y1698861
    超全面的拼多多電商運營技巧,多多開團助手
    CAE有限元仿真分析團隊,2026仿真代做咨詢服務平臺
    CAE有限元仿真分析團隊,2026仿真代做咨詢服
  • 豆包網頁版入口 Trae 目錄網 排行網

    關于我們 | 打賞支持 | 廣告服務 | 聯系我們 | 網站地圖 | 免責聲明 | 幫助中心 | 友情鏈接 |

    Copyright © 2025 hfw.cc Inc. All Rights Reserved. 合肥網 版權所有
    ICP備06013414號-3 公安備 42010502001045

    日韩精品一区二区三区高清_久久国产热这里只有精品8_天天做爽夜夜做爽_一本岛在免费一二三区

      <em id="rw4ev"></em>

        <tr id="rw4ev"></tr>

        <nav id="rw4ev"></nav>
        <strike id="rw4ev"><pre id="rw4ev"></pre></strike>
        日韩视频在线免费播放| 在线视频国内一区二区| 中文字幕一区免费| 国产视频二区| 一级片在线免费看| 国产一级片在线| 亚洲免费播放| 日韩av一区二区在线观看| 91精品在线观看国产| 97天天综合网| 久久精品卡一| 日韩你懂的电影在线观看| 中文字幕成人乱码在线电影| 日韩在线观看精品| 日韩欧美视频一区二区三区四区| 国产黄色在线观看| 国产成人综合精品| 最近免费中文字幕在线第一页| www日韩欧美| 久久激情中文| 国产黄在线播放| 欧美日韩国产片| 亚洲高清在线观看一区| 日韩欧美国产成人一区二区| 国产午夜精品久久| 中文欧美日韩| 在线视频三区| 中文字幕在线观看视频www| 欧美日韩视频在线| 日韩精品视频在线观看网址| 日韩欧美国产成人精品免费| 亚洲免费精品视频| 欧美在线日韩在线| www高清在线视频日韩欧美| 久久精品视频免费看| 国产免费永久在线观看| 日韩欧美视频一区二区三区四区| 亚州黄色一级| 日韩欧美中文在线视频| 亚洲成av人片在线| 91麻豆视频网站| 国产在线不卡一区| 日韩视频精品在线观看| 亚洲女人天堂色在线7777| 日韩欧美高清在线视频| 日韩在线中文字幕| 日韩视频在线一区| 91精品国产99| 久久久精品日韩| 欧美日韩成人一区二区| 免费在线观看国产黄| 中文字幕欧美日韩在线| 久久电影国产免费久久电影| 日韩精品视频网| 日韩高清在线一区二区| wwwwww在线观看| 欧美一级一级性生活免费录像| 国产导航在线| 亚洲素人一区二区| 91精品国产乱码久久蜜臀| 欧美一级久久久久久久久大| 日韩在线视频观看正片免费网站| 日韩 欧美 中文| 91精品国产全国免费观看| 婷婷中文字幕一区三区| 国产一级久久久| 日韩视频免费直播| 日韩精品视频在线观看视频| 日韩中文字幕在线一区| 99综合精品久久| 久久久精品网| www.老鸭窝.com| 91欧美日韩在线| 亚洲第一视频在线观看| 99国内精品| 日韩精品视频在线观看免费| 日韩亚洲一区在线| 欧美日韩亚州综合| 欧美日韩高清不卡| 精品不卡一区二区| 国产日韩1区| 日本黄色一区二区三区| 日韩在线高清视频| 日韩欧美中文字幕在线视频| 国产黄色一区| av中文在线资源| 一区二区在线视频播放| 久久久精品福利| 国产激情99| 欧美日韩性视频一区二区三区| 中文字幕日韩在线视频| 日韩精品在线视频| 欧美日韩在线视频首页| 日韩欧美在线视频| 日本a口亚洲| 欧美日本精品| 极品久久久久久| 欧美在线视频二区| 国产区高清在线| 亚洲小说春色综合另类网蜜桃| 二区三区不卡不卡视频| 国产 中文 字幕 日韩 在线| 久久香蕉一区| 亚洲第一福利视频在线| 久久久精品午夜少妇| 欧美日韩在线视频首页| 国产成人精品av久久| 97天天综合网| 亚洲第一中文字幕在线观看| 免费视频最近日韩| 中文字幕无线码一区| 国产福利免费观看| 亚洲高清视频一区| 国产日韩专区| a级在线免费观看| 日本啊v在线| 国产日韩专区| 91精品国产全国免费观看| 亚洲一区导航| 日韩国产91| 中文字幕亚洲一区二区av在线| 91精品观看| 国产欧美日韩中文字幕在线| 日韩欧美久久久| 欧美日韩精品高清| 欧美日韩第一区日日骚| 一区在线播放视频| 视频一区二区精品的福利| 亚洲日产av中文字幕| 日本不卡视频一区| 91精品国产综合久久蜜臀| av高清一区| 日韩欧美在线网址| 日韩精品不卡一区二区| 国产在线观看精品| 国产一区精品| 成人久久久久| 国产中文伊人| 精产国产伦理一二三区| 国产高清在线一区| 国产三级免费观看| 九九在线精品| 欧美日韩中文| 91精品视频在线| 最近中文字幕在线中文视频| 国产99在线|亚洲| 第一页在线观看| 日韩欧美亚洲国产| 亚洲精华国产欧美| 国产成人精品综合网站| 国产黄色在线播放| 国产色综合网| 久久91精品国产91久久小草| av免费不卡国产观看| 欧美激情一区二区在线| 国产在线不卡av| 欧美日韩国产综合久久| 欧美日韩国产区| 国产精久久久久| 91麻豆免费视频网站| 国产h片在线观看| 韩国v欧美v日本v亚洲| 欧美国产一级片| 亚洲一区日韩精品中文字幕|