版權(quán)說明:本文檔由用戶提供并上傳,收益歸屬內(nèi)容提供方,若內(nèi)容存在侵權(quán),請進行舉報或認領(lǐng)
文檔簡介
1、單服務(wù)臺系統(tǒng)MATLAB仿真學(xué)號:15 姓名:繆晨一、引言排隊是日常生活中經(jīng)常遇到的現(xiàn)象。 通常,當(dāng)人、物體或是信息的到 達速率大于完成服務(wù)的速率時,即出現(xiàn)排隊現(xiàn)象。排隊越長,意味著 浪費的時間越多,系統(tǒng)的效率也越低。在日常生活中,經(jīng)常遇到排隊 現(xiàn)象,如開車上班、在超市等待結(jié)賬、工廠中等待加工的工件以及待 修的機器等??傊抨牞F(xiàn)象是隨處可見的。排隊理論是運作管理中 最重要的領(lǐng)域之一,它是計劃、工作設(shè)計、存貨控制及其他一些問題 的基礎(chǔ)。Matlab是MathWorks公司開發(fā)的科學(xué)計算軟件,它以其強 大的計算和繪圖功能、大量穩(wěn)定可靠的算法庫、簡潔高效的編程語言 以及龐大的用戶群成為數(shù)學(xué)計算工具
2、方面的標(biāo)準,幾乎所有的工程計算領(lǐng)域,Matlab都有相應(yīng)的軟件工具箱。選用Matlab軟件正是基 于Matlab的諸多優(yōu)點。排隊模型三. 仿真算法原理(1)顧客信息初始化根據(jù)到達率入 和服務(wù)率來確定每個顧客的到達時間間隔和服 務(wù)時間間隔。服務(wù)間隔時間可以用負指數(shù)分布函數(shù) exprnd()來生成 由于泊松過程的時間間隔也服從負指數(shù)分布,故亦可由此函數(shù)生成 顧客到達時間間隔 。需要注意的是 exprnd() 的輸入?yún)?shù)不是到達率 入和服務(wù)率口而是平均到達時間間隔1/入和平均服務(wù)時間1/卩。根據(jù)到達時間間隔 , 確定每個顧客的到達時刻 . 學(xué)習(xí)過 C 語言 的人習(xí)慣于使用FOR循環(huán)來實現(xiàn)數(shù)值的累加,
3、但FOR循環(huán)會引起運 算復(fù)雜度的增加 而在MATLAB仿真環(huán)境中,提供了一個方便的函數(shù) cumsum() 來實現(xiàn)累加功能 讀者可以直接引用對當(dāng)前顧客進行初始化。 第 1 個到達系統(tǒng)的顧客不需要等待就 可以直接接受服務(wù) 其離開時刻等于到達時刻與服務(wù)時間之和。(2)進隊出隊仿真在當(dāng)前顧客到達時刻, 根據(jù)系統(tǒng)內(nèi)已有的顧客數(shù)來確定是否接納 該顧客。 若接納 則根據(jù)前一顧客的離開時刻來確定當(dāng)前顧客的等待 時間 、離開時間和標(biāo)志位 ;若拒絕, 則標(biāo)志位置為 0.流程圖如下:訃牛K容的離開時i=2N箍工樸按渝、第i牛嗾窖? ”/林*kfifKmAi+I1*1 MSfii節(jié)操客的VWHM.育開時訶、標(biāo)志位;四
4、、程序?qū)崿F(xiàn)單服務(wù)臺服務(wù),服務(wù)參數(shù) M/M/1,入二卩二,排隊規(guī)則為FIFO,以 分為單位,仿真時間240分鐘。仿真程序代碼如下%總仿真時間Total_time = 240;%到達率與服務(wù)率 lambda =;mu =;%平均到達時間與平均服務(wù)時間 arr_mean = 1/lambda;ser_mean = 1/mu;%可能到達的最大顧客數(shù)( round :四舍五入求整數(shù)) arr_num = round(Total_time*lambda*2);%顧客事件表初始化events = ;%按負指數(shù)分布產(chǎn)生各顧客達到時間間隔events(1,:) = exprnd(arr_mean,1,arr_n
5、um);%各顧客的到達時刻等于時間間隔的累積和events(1,:) = cumsum(events(1,:);%按負指數(shù)分布產(chǎn)生各顧客服務(wù)時間events(2,:) = exprnd(ser_mean,1,arr_num); %計算仿真顧客個數(shù),即到達時刻在仿真時間內(nèi)的顧客數(shù) len_sim = sum(events(1,:)Total_timebreak;%如果第 i 個顧客的到達時間未超過仿真時間,則計算在其 %到達時刻系統(tǒng)中已有的顧客個數(shù)else number = sum(events(4,member) events(1,i);%如果系統(tǒng)已滿,則系統(tǒng)拒絕第 i 個顧客,其標(biāo)志位置 0
6、 if number = N+1events(5,i) = 0;%如果系統(tǒng)為空,則第 i 個顧客直接接受服務(wù) else if number = 0%其等待時間為 0 events(3,i) = 0;%其離開時刻等于到達時刻與服務(wù)時間之和 events(4,i) = events(1,i)+events(2,i);%其標(biāo)志位置 1events(5,i) = 1;member = member,i;%如果系統(tǒng)有顧客正在接受服務(wù),且系統(tǒng)等待隊列未滿,則%第 i 個顧客進入系統(tǒng)else len_mem = length(member);%其等待時間等于隊列中前一個顧客的離開時刻減去其到%達時刻even
7、ts(3,i)=events(4,member(len_mem)-events(1,i);%其離開時刻等于隊列中前一個顧客的離開時刻加上其服 %務(wù)時間 events(4,i)=events(4,member(len_mem)+events(2,i);%標(biāo)識位表示其進入系統(tǒng)后,系統(tǒng)內(nèi)共有的顧客數(shù) events(5,i) = number+1;member = member,i;endendendend五、仿真結(jié)果events =number =1number =0events =Columns1 through 7000000 0000 000000 0000000000000015 throu
8、gh 21000000000000Columns8 through1400 000 000 0Columns00 000 000 0Columns22 through 280 0 00 0 000 000 000 00 0 00 0 00 0 000 000 000 0Columns 29 through 35Columns 36 through 420 0 00 00 0000Columns 43 through 48000000000000000000events =Columns1 through 70000000000 0000000000000015 through 21000000
9、000000Columns8 through1400 000 000 0Columns00 000 000 0Columns22 through 280 0 00 0 000 000 000 00 0 00 0 00 0 0Columns 36 through 4200 000 000 0Columns 29 through 3500000 000000 0Columns 43 through48000000 0 00 0 00 0 0number =1 number =events =Columns 1 through 70 00000 00 0 0 000 0 0 00Columns 8
10、through 1400000000000000000000 0Columns 15 through 210 0 00 0 000 000 000 00 0 00 0 00 0 0Columns 29 through 350 0 000 000 000 0Columns 22 through 280 0 00 0Columns 36 through 4200 000 000 00 0 00 0 00 0 0Columns 43 through 480000 0 00 0 00events =Columns 1 through 7000000 00 00 00 00 0Columns 8 thr
11、ough1400000000000000000000 0Columns 15 through 210 0 00 0 000 000 000 00 0 00 0 00 0 0Columns 29 through 3500 000 000 0Columns 22 through 2800 000 00 0 0Columns 36 through 4200 000 000 00 0 00 0 00 0 0Columns 43 through 480 0 00 0 0number =1number =1number =0events =Columns 1 through7000000 00 00000
12、000000000015 through 21000000000000Columns8 through1400 000 000 0Columns00 000 000 0Columns22 through 280 0 00 0 000 000 000 00 0 00 0 00 0 000 000 000 0Columns 29 through 35Columns 36 through 420 0 00 00 0000Columns 43 through 48000000000000000000events =Columns1 through 70000000000 0000 0Columns 8
13、 through 140 0 00 0 0 000 0 0 0Columns 15 through 210 00 00 00 00 00 00 0 00 0 00 0 0Columns 22 through 280 0 00 0 000 000 000 0Columns 29 through 3500 000 000 00 0 00 0 00 0 0Columns 36 through 4200000 000000 0Columns 43 through480 000 000 00 0 00 0 00 0 0number =1 number =number = events =Columns1
14、 through7000000 0000 0000 0Columns8 through14000000000000000000Columns15through2100 000 000 0Columns00 000 000 0Columns00000000000022 through 2800000000000029 through 350 0 00 0 000 000 000 0Columns 36 through 4200 000 000 00 0 00 0 00 0 0Columns 43 through 480 0 000 00000events =Columns 1 through 7
15、000000 00 00 00 00 0Columns 8 through1400 00000000 0 0000 0 0Columns 15 through 210 0 00 0 000 000 000 00 0 00 0 00 0 000 000 000 0Columns 22 through 28Columns 29 through 3500 000 000 00 0 00 0 00 0 00 0000000 0000000 0Columns 36 through42Columns 43 through 480 0 00number =1number =0events =Columns
16、1 through 70 0 00 00 0 0 00 0 0 0Columns 8 through 14000 00 0000 00 0Columns 15 through21000 0 000000000000 00 0 00 0 0Columns 22 through 280 0 0 0 0 00 0 0 0 0 00 0 0 0Columns 29 through 3500 000 000 00 0 00 0 00 0 0Columns 36 through 420 00 00 00 00 00 0Columns 43 through 480 0 00 0 00 0 000000000
17、0events =Columns1 through7000 0000 0000 0Columns8 through14000 0 00 0 00 0 00 00 0 0 00 0 0 0Columns 15 through 210000000000000 0 00 0 00 0 00 0 0Columns 22 through 2800 00 0 000 00Columns29through3500 000 000 0Columns00 000 000 0Columns00000000000036 through 4200000000000043 through 480000000000000
18、00000number =1number =0events =Columns1 through 70 0 0Columns8 through14000000 000 00000 0Columns15 through21000000000000000000000Columns 22 through 280 0 00 0 000 000 000 00 0 00 0 00 0 000 000 000 0Columns 29 through 35Columns 36 through 420 0 00 00 0000Columns 43 through 48000000000000000000events =Columns1 through 70000000000 0000 0Columns 8 through 140 0 00 0 0 00 0 0 0Columns 15 through 210 0 0 0 0 00 0 0 0 0Columns 22 through 28000000 0000000 0Columns 29 through3500 000 000 00 0
溫馨提示
- 1. 本站所有資源如無特殊說明,都需要本地電腦安裝OFFICE2007和PDF閱讀器。圖紙軟件為CAD,CAXA,PROE,UG,SolidWorks等.壓縮文件請下載最新的WinRAR軟件解壓。
- 2. 本站的文檔不包含任何第三方提供的附件圖紙等,如果需要附件,請聯(lián)系上傳者。文件的所有權(quán)益歸上傳用戶所有。
- 3. 本站RAR壓縮包中若帶圖紙,網(wǎng)頁內(nèi)容里面會有圖紙預(yù)覽,若沒有圖紙預(yù)覽就沒有圖紙。
- 4. 未經(jīng)權(quán)益所有人同意不得將文件中的內(nèi)容挪作商業(yè)或盈利用途。
- 5. 人人文庫網(wǎng)僅提供信息存儲空間,僅對用戶上傳內(nèi)容的表現(xiàn)方式做保護處理,對用戶上傳分享的文檔內(nèi)容本身不做任何修改或編輯,并不能對任何下載內(nèi)容負責(zé)。
- 6. 下載文件中如有侵權(quán)或不適當(dāng)內(nèi)容,請與我們聯(lián)系,我們立即糾正。
- 7. 本站不保證下載資源的準確性、安全性和完整性, 同時也不承擔(dān)用戶因使用這些下載資源對自己和他人造成任何形式的傷害或損失。
最新文檔
- 石河子大學(xué)《園藝植物育種學(xué)》2022-2023學(xué)年第一學(xué)期期末試卷
- 語文情景劇主持詞
- 石河子大學(xué)《農(nóng)村公共管理》2022-2023學(xué)年第一學(xué)期期末試卷
- 石河子大學(xué)《國際貿(mào)易實務(wù)》2022-2023學(xué)年第一學(xué)期期末試卷
- 沈陽理工大學(xué)《體驗型交互設(shè)計》2023-2024學(xué)年第一學(xué)期期末試卷
- 沈陽理工大學(xué)《模擬電子技術(shù)》2022-2023學(xué)年期末試卷
- 沈陽理工大學(xué)《機械原理》2022-2023學(xué)年第一學(xué)期期末試卷
- 關(guān)于山林看護合同
- 國外采購合同
- 合同把關(guān)管理要求
- 健康管理學(xué)教學(xué)大綱
- 公路施工安全技術(shù)交底資料(完整版)
- 《傳感器原理與應(yīng)用》教案
- 廣東省醫(yī)療、預(yù)防、保健機構(gòu)醫(yī)師聘用證明(樣表)
- 海水淡化處理技術(shù)
- GB/T 23447-2023衛(wèi)生潔具淋浴用花灑
- 我家鄉(xiāng)-湖北鐘祥教學(xué)課件
- 二手車用工合同范本
- 三級醫(yī)院急診科護理質(zhì)量評價標(biāo)準
- 2023年度安全工作目標(biāo)考核表
- 全五年級數(shù)學(xué)趣味競賽50題含答案
評論
0/150
提交評論