国产人妻人伦精品_欧美一区二区三区图_亚洲欧洲久久_日韩美女av在线免费观看

合肥生活安徽新聞合肥交通合肥房產(chǎn)生活服務(wù)合肥教育合肥招聘合肥旅游文化藝術(shù)合肥美食合肥地圖合肥社保合肥醫(yī)院企業(yè)服務(wù)合肥法律

Specification for Automail代寫、Java/C++設(shè)計(jì)編程代做
Specification for Automail代寫、Java/C++設(shè)計(jì)編程代做

時(shí)間:2024-09-05  來源:合肥網(wǎng)hfw.cc  作者:hfw.cc 我要糾錯(cuò)



Project 1: Specification for Automail
Background: Automail
Delivering Solutions Inc. (DS) has recently developed and provided a Robotic Mail Delivery system
called Automail to the market. Automail is an automated mail sorting and delivery system designed to
operate in a large building that has a dedicated mail room. The system offers end-to-end receipt and
delivery of mail items within the building and can be tweaked to fit many different installation
environments.
The current version of the system supports delivery of letters using one specific delivery mode where
every robot operates with the same behaviour.  DS would like the system to also handle parcel
delivery, and to support exploring alternative delivery modes which specialize the robot behaviour.
The Automail System
The building the system operates in (see Figure 1) will have a number of floors each with the same
number of rooms.  Below the rooms is a mailroom (row 0), to the left and right are robot tracks (column
0 and column roomsperfloor+1) respectively.
Figure 1: Automail Building Layout (6 floors by 5 rooms) with Robots
The mail items are letters which are effectively weightless, or parcels which have a given weight.  All
mail items are addressed to deliver within the building to an room identified by combination of Floor
and Room number.  The current system handles only delivery of letters.
The Automail system consists of two key components:
A MailRoom subsystem which holds mail items after their arrival at the building’s mail room. The
mail roomdecides the order in which mail items should be delivered.
Delivery Robots which take mail items from the mail room, or from other robots, and deliver them
throughout the building. The currently used robot (see Figure 2) has a backpack-like container for
carrying mail items.  Carrying capacity of the robot is weight limited. As such the total weight of
carried items cannot exceed robot.capacity.  An installation of Automail can manage a team of
delivery robots of configurable size.
 .Figure 2: Artistic representation of one of the DS robots
DS provides a simulation subsystem to show that Automail can operate to deliver mail items within the
building. The subsystem runs a simulation based on a property file, generates an output trace of
execution and outputs the average time to deliver a mail item.
The simulation subsystem uses a clock to simulate operations of the mail room and robot subsystems.
 Broadly speaking, for each tick of the clock (i.e. one unit of time), the mail room subsystem will load
items to a robot if there are robots available at the mailroom; and the robots will either move to deliver
an item (if there are items in their backpack), deliver an item, or move to return to the mailroom (if all
items are delivered). Currently, the robots offered by DS will take one unit of time when
moving one step (i.e., moving up or down one floor in a building, or left or right one across the
building).
delivering items at one apartment once there.
transferring items from one robot to another.
being loaded and moved out of the mailroom.
The simulation completes only after all items have been delivered.
Unfortunately, the staff who designed and implemented the Automail simulation did not consider
maintainability and future enhancements.
Current operating mode: Cycling
This mode has been implemented in the current simulation.  It has the robots moving clockwise
through the building delivering mail items, as illustrated in this video
(https://canvas.lms.unimelb.edu.au/media_attachments_iframe/20429677?type=video&embedded=true) .
The Cycling mode (MODE=cycling) has every robot operating with the same behaviour. All items a
robot carries for delivery will only ever be for a single floor at a time.
Initially: All robots (robot.number>0) start in the MailRoom.
Ongoing (each timestep):
1. If there are any items and robots in the mailroom, the mailroom will Load a robot with items for one
floor (the floor with the earliest remaining delivered item), and move it to the bottom left (0, 0).
2. If a robot has items to deliver and has not reached its target floor, it will Step up.
3. If a robot has an item to deliver it will Step towards the left-most location to which its items are
addressed.
4. If a robot has reached its delivery location and not yet delivered, it will Deliver.
5. If a robot has no items to deliver, it will Step towards the bottom right (0, building.roomsperfloor+1).
6. If there is a robot at bottom right (0, building.roomsperfloor+1), it will Return to the mailroom.You can assume that the Automail Cycling mode has been well tested and performs reasonably well,
though only for letters.
Proposed operating mode: Flooring
This mode has not been implemented in the current simulation; you and your team need to add this.  It
involves having one robot per floor delivering on that floor, with two robots (one at each end) bringing
mail items up to the other robots for delivery, as per this video
(https://canvas.lms.unimelb.edu.au/media_attachments_iframe/20429779?type=video&embedded=true) .
The Levels mode (mode=FLOORING) always involves exactly building.floors+2 robots
one for each floor, each of which exhibits floor behaviour, and
one for each of the leftmost and rightmost columns, each which exhibits column behaviour. 
Floor robots only ever move on their floor and column robots only ever move on their column and in/out
of the mailroom.
Floor Behaviour:
Initially: the robot is at Room 1 on their floor.
Ongoing (each timestep):
1. If the robot has mail items, continue delivering them (ignore column robots).
2. If the robot is next to a waiting column robot (i.e. with items for this floor), Transfer them from
the column robot to this robot and start delivering from that end of the floor towards the other
end. (Note: as all robots have the same capacity and the floor robot is carrying nothing, all items
will be transferable.)
3. If the robot is heading for a waiting column robot, continue moving towards that robot.
4. If a column robot is newly waiting, start heading towards it.  If two column robots are newly
waiting, move towards the one with the earliest arrival item, or the left one if the arrival time is
the same.
5. If the robot has no items and no column robots are waiting for this floor, then do nothing.
Column behaviour:
Initially: the robot is in the mailroom and is assigned to the left or right column (one robot to each).
Ongoing (each timestep):
1. If the robot is in the mailroom and the mailroom has items, Load the robot (as per Cycling) and
move it to its floor 0, otherwise do nothing.
2. If the robot is loaded for delivery, and not at the destination floor move towards the destination
floor.
3. If the robot is at the destination floor, and the floor robot is adjacent, Transfer from this robot to
the floor robot.
4. If the robot has transferred, head towards floor 0.
5. If the robot arrived back at floor 0, enter the mail room.
All items a robot carries for delivery will only ever be for a single floor at a time.
Robot Operations:
Step: move one floor or apartment towards the destination.  Only one robot can be on a square at a
time.  If the destination square is blocked, the robot does nothing.Load: the load destination is the floor of the item in the mailroom with the earliest arrive time. Load
the robot with all items destined for that floor which can be transferred to the destination robot,
subject to load.  All letters are transferred, and parcels are transferred in order of "earliest arrival
time package which will fit within weight capacity".
Transfer: all items which can be transferred are move from the source robot to the destination
robot, subject to load.  All letters are transferred, and parcels are transferred in order of "earliest
arrival time package which will fit within weight capacity".
Return: all items are transferred from the robot back to the mailroom.
Deliver: the item is removed from the robot and the elapsed time since arrival used in the item
statistics.
 
Your Task
To expand the usage and trial different modes of operation, DS wants to update their Automail to
support (1) parcels, and (2) the FLOORING operating mode. 
 
The Base Package
You have been provided with a zip file containing source code for  the current version of the
system, including an example property file.
(https://canvas.lms.unimelb.edu.au/courses/18**98/files/20444343?wrap=1) 
(https://canvas.lms.unimelb.edu.au/courses/18**98/files/20444343/download?download_frd=1) This
provides the basis for you to implement the additions described above.
Please carefully study the provided code and ensure that you are confident you understand how it is
set up and functions before continuing. Note that you do not need to understand all aspects, just those
relevant to the changes you need to make.  If you have any questions, please make use of the
discussion board.
Note: The simulation will run and generate mail items at random times and with random weights,
based on a seed. You can configure this in the property file (test.properties by default). Any integer
value will be accepted, e.g. 30006.
 
Configuration and Project Deliverables
(1) Extended Automail: As discussed above, and for the users of Automail to have confidence that
changes have been made in a controlled manner, you are required to preserve the Automail
simulation’s existing behaviour. Your extended design and implementation must account for the
following:
Preserve the existing behaviour of the system for configurations where the additional capabilities
are turned off in the configuration file (properties), i.e. mail.parcels=0 and MODE=cycling.  Note that
“preserve” implies identical output. We will use a file comparison tool to check this.
Add the handling and delivering behaviour for parcels (including robot capacity limitation).
Add the new FLOORS mode of delivery.Configurable building size and number of robots (robot.number for cycling mode or
building.floors+2 for flooring mode).
It's recommended that you understand the high-level design of current system so that you can
effectively identify and update relevant parts. You don't need to refactor the whole system, just those
parts necessary or helpful to making the required changes.
(2) Report: In addition to the extended Automail, DS also wants you to provide a report to document
your design changes and justification of your design. You should also comment on how easy your
changes make it to add further mail items (beyond letters and parcels), or further delivery models
(beyond cycling and flooring) in the future.  Your report should include:
a design class diagram which shows all of the changed design elements in your submission (at
least - it can show more than just the changes but doesn't need to show all unchanged elements).
a sequence diagram which illustrates the behaviour of a floor-assigned robot in FLOORING mode,
for appropriate scenario of your choosing.
More detail of the report is available on the LMS submission page.
Note: Your implementation must not violate the principle of the simulation by using information that
would not be available in the system being simulated. For example, it would not be appropriate to use
information from the simulation package (e.g., mail items which have not yet been delivered to the mail
room). We also reserve the right to award or deduct marks for clever or very poor code quality on a
case-by-case basis outside of the prescribed marking scheme.
 
Testing Your Solution
We will be testing your application programmatically, so we need to be able to build and run your
program without using an integrated development environment. The entry point must remain as
“Main.main()”. You must not change the names of properties in the provided property file or require the
presence of additional properties.
Note: It is your team’s responsibility to ensure that the team has thoroughly tested their software
before submission.
Here are sample outputs for each of the two provided property files:
test.properties (https://canvas.lms.unimelb.edu.au/courses/18**98/files/20494343?wrap=1) 
(https://canvas.lms.unimelb.edu.au/courses/18**98/files/20494343/download?download_frd=1)
testShort.Properties (https://canvas.lms.unimelb.edu.au/courses/18**98/files/20494**?wrap=1) 
(https://canvas.lms.unimelb.edu.au/courses/18**98/files/20494**/download?download_frd=1)
 
Submission
Detailed submission instructions will be posted on the LMS. You must include your team number in all
your pdf submissions, and as a comment in all changed or new source code files provided as part of
your submission.

請(qǐng)加QQ:99515681  郵箱:99515681@qq.com   WX:codinghelp




 

掃一掃在手機(jī)打開當(dāng)前頁
  • 上一篇:代做QBUS6600、代寫Python編程語言
  • 下一篇:代寫FIT5057 Project Management
  • 無相關(guān)信息
    合肥生活資訊

    合肥圖文信息
    流體仿真外包多少錢_專業(yè)CFD分析代做_友商科技CAE仿真
    流體仿真外包多少錢_專業(yè)CFD分析代做_友商科
    CAE仿真分析代做公司 CFD流體仿真服務(wù) 管路流場(chǎng)仿真外包
    CAE仿真分析代做公司 CFD流體仿真服務(wù) 管路
    流體CFD仿真分析_代做咨詢服務(wù)_Fluent 仿真技術(shù)服務(wù)
    流體CFD仿真分析_代做咨詢服務(wù)_Fluent 仿真
    結(jié)構(gòu)仿真分析服務(wù)_CAE代做咨詢外包_剛強(qiáng)度疲勞振動(dòng)
    結(jié)構(gòu)仿真分析服務(wù)_CAE代做咨詢外包_剛強(qiáng)度疲
    流體cfd仿真分析服務(wù) 7類仿真分析代做服務(wù)40個(gè)行業(yè)
    流體cfd仿真分析服務(wù) 7類仿真分析代做服務(wù)4
    超全面的拼多多電商運(yùn)營技巧,多多開團(tuán)助手,多多出評(píng)軟件徽y1698861
    超全面的拼多多電商運(yùn)營技巧,多多開團(tuán)助手
    CAE有限元仿真分析團(tuán)隊(duì),2026仿真代做咨詢服務(wù)平臺(tái)
    CAE有限元仿真分析團(tuán)隊(duì),2026仿真代做咨詢服
    釘釘簽到打卡位置修改神器,2026怎么修改定位在范圍內(nèi)
    釘釘簽到打卡位置修改神器,2026怎么修改定
  • 短信驗(yàn)證碼 豆包網(wǎng)頁版入口 破天一劍 目錄網(wǎng) 排行網(wǎng)

    關(guān)于我們 | 打賞支持 | 廣告服務(wù) | 聯(lián)系我們 | 網(wǎng)站地圖 | 免責(zé)聲明 | 幫助中心 | 友情鏈接 |

    Copyright © 2025 hfw.cc Inc. All Rights Reserved. 合肥網(wǎng) 版權(quán)所有
    ICP備06013414號(hào)-3 公安備 42010502001045

    国产人妻人伦精品_欧美一区二区三区图_亚洲欧洲久久_日韩美女av在线免费观看
    68精品久久久久久欧美| 久久综合色一本| 久久网站免费视频| 国产精品乱子乱xxxx| 日韩欧美一区三区| 91高跟黑色丝袜呻吟在线观看| 久久97精品久久久久久久不卡| 欧美 日韩精品| 久久久久久久久久久99| 欧美一级黄色网| 久久免费视频3| 日韩av大全| 国产成人精品电影久久久| 日韩中文不卡| 九色91在线视频| 青青草视频在线视频| 久久精品99久久久香蕉| 欧美一区二区视频在线播放| 国产freexxxx性播放麻豆| 日本福利视频导航| 日韩一区二区福利| 欧美日韩国产三区| 国产精品污www一区二区三区| 免费中文日韩| 国产精品久久7| 国产日产欧美精品| 伊人久久大香线蕉综合75| 97精品国产91久久久久久| 亚洲**2019国产| 久久国产欧美精品| 欧美做暖暖视频| 国产精品久久久亚洲| 国产欧美日韩视频一区二区三区| 国产精品久久激情| 国产午夜精品一区| 一区二区不卡在线观看| 91精品久久久久久久久久久久久久 | 久久久精品亚洲| 欧美久久综合性欧美| 日韩中文字幕国产| 黄色a级片免费| 欧美日韩电影在线观看| 91精品国产综合久久男男| 涩涩日韩在线| 国产精品免费一区二区三区四区 | 久久99久久99精品蜜柚传媒| 欧美视频小说| 国产av不卡一区二区| 91精品国产99久久久久久红楼| 日日摸日日碰夜夜爽av| 国产精品欧美风情| 99热一区二区三区| 欧美在线视频观看免费网站| 国产精品黄色av| 阿v天堂2017| 日韩国产欧美亚洲| 欧美成人精品三级在线观看| 国产伦精品一区二区三区高清版| 午夜精品一区二区三区在线观看 | 日韩中文字幕视频| 国产美女在线精品免费观看| 痴汉一区二区三区| 国产精品日韩精品| 91久久精品国产91性色| 欧美在线视频一区二区| 久久99亚洲精品| 国产高清在线不卡| 国产日本欧美一区二区三区在线| 无码aⅴ精品一区二区三区浪潮 | 国产精品女主播视频| 91久久久久久久久久| 国内精品国产三级国产在线专| 亚洲资源视频| 国产精品乱码久久久久| 91精品国产综合久久久久久蜜臀| 韩国一区二区av| 日本一区不卡| 久久国产精品影片| www.日本久久久久com.| www.欧美黄色| 麻豆久久久av免费| 欧洲精品一区二区三区久久| 亚洲三区在线| 国产精品网站视频| 久久精品视频16| 91美女片黄在线观| 国产日韩二区| 欧美视频小说| 日本久久久久久久| 亚洲国产精品久久久久婷蜜芽| 久久综合久久八八| 久久色精品视频| 久久久久久久午夜| 久久综合中文色婷婷| 99三级在线| 国产精品亚洲不卡a| 国产一区二区在线免费| 欧美精品成人网| 日韩av成人在线| 亚洲精品中文字幕乱码三区不卡 | 国产欧美日韩综合一区在线观看| 欧美与黑人午夜性猛交久久久 | 99久久综合狠狠综合久久止 | 日本免费一区二区三区视频观看| 亚洲午夜精品久久久中文影院av| 国产精品三级在线| 国产av天堂无码一区二区三区| 97精品伊人久久久大香线蕉| 国产天堂在线播放| 狠狠色综合网站久久久久久久| 日本在线视频www| 亚洲**2019国产| 亚洲欧洲久久| 亚洲一区制服诱惑| 亚洲一区二区在线观| 中文字幕一区二区三区乱码| 久久6精品影院| 欧美精品制服第一页| 国产精品电影一区| 国产精品电影在线观看| 国产精品久久不能| 国产精品成熟老女人| 国产精品免费一区二区三区观看| 日韩中文字幕不卡视频| 久久国产精品亚洲va麻豆| 8050国产精品久久久久久| 99爱精品视频| 97久久精品国产| 91|九色|视频| 久久天堂国产精品| 久久国产精品一区二区三区| 久久久久久久色| 国产精品视频精品| 欧美麻豆久久久久久中文| 欧美wwwxxxx| 亚洲自偷自拍熟女另类| 亚洲精品成人a8198a| 午夜精品一区二区在线观看| 亚洲精品成人三区| 日本视频一区在线观看| 日本一区二区三区四区五区六区| 日韩av成人在线| 欧美日韩精品一区| 国产日本欧美视频| 99国内精品久久久久久久软件| 7777免费精品视频| 国产成人在线视频| 久久久www成人免费精品| 久久亚洲精品成人| 亚洲熟妇av日韩熟妇在线| 天天在线免费视频| 欧美综合激情| 国产中文字幕二区| 91精品国产综合久久香蕉最新版| …久久精品99久久香蕉国产| 国产精品99一区| 久久久久久久午夜| 国产精品福利小视频| 亚洲综合国产精品| 日韩无套无码精品| 国产原创欧美精品| 国产精品333| 色婷婷久久一区二区| 国产99久久久欧美黑人| 少妇久久久久久被弄到高潮 | 久久影视中文粉嫩av| 日韩在线观看网址| 国产aaa一级片| 日本三级久久久| 欧美精品自拍视频| 高清无码视频直接看| 国产va免费精品高清在线观看| 久久久精品在线| 亚洲图片在线观看| 欧美极品一区| 91九色在线观看| 国产精品久久在线观看| 亚洲蜜桃在线| 男人添女人下部视频免费| 白嫩少妇丰满一区二区| 久久精品成人动漫| 亚洲精品一区二区三区av | 精品国产成人av在线免| 天堂√在线观看一区二区| 黄频视频在线观看| 国产成人一区二区三区别| 欧美成人免费在线观看| 日本一区二区高清视频| 国产欧美在线视频| 国产成人免费av电影| 亚洲欧洲精品一区二区三区波多野1战4 | 逼特逼视频在线| 久久久精品国产网站| 亚洲一二三区精品| 国产在线一区二| 久久久久久久久网站| 亚洲一区二区三区在线观看视频| 黄色网在线视频| 国产成人精品视| 亚洲一区二区在线免费观看|