版權(quán)說明:本文檔由用戶提供并上傳,收益歸屬內(nèi)容提供方,若內(nèi)容存在侵權(quán),請進行舉報或認領(lǐng)
文檔簡介
1、單服務(wù)臺系統(tǒng)MATLA仿真一、 引言 排隊是日常生活中經(jīng)常遇到的現(xiàn)象。 通常 , 當(dāng)人、物體或是信息的到達速率大于完成服務(wù)的 速率時 , 即出現(xiàn)排隊現(xiàn)象。 排隊越長 , 意味著浪費的時間越多 , 系統(tǒng)的效率也越低。 在日常 生活中 , 經(jīng)常遇到排隊現(xiàn)象 , 如開車上班、 在超市等待結(jié)賬、 工廠中等待加工的工件以及待 修的機器等??傊?, 排隊現(xiàn)象是隨處可見的。排隊理論是運作管理中最重要的領(lǐng)域之一 , 它是計劃、工作設(shè)計、存貨控制及其他一些問題的基礎(chǔ)。 Matlab 是 MathWorks 公司開發(fā)的 科學(xué)計算軟件 , 它以其強大的計算和繪圖功能、 大量穩(wěn)定可靠的算法庫、 簡潔高效的編程語 言以
2、及龐大的用戶群成為數(shù)學(xué)計算工具方面的標(biāo)準(zhǔn) , 幾乎所有的工程計算領(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í)過
3、C語言的人習(xí)慣于使用FOR循 環(huán)來實現(xiàn)數(shù)值的累加,但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.流程圖如下:四、 程序?qū)崿F(xiàn)單服務(wù)臺服務(wù),服務(wù)參數(shù) M/M/1,入=卩=,排隊規(guī)則為FIFO,以分
4、為單位,仿真時間 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_num); %各顧客的到達時刻等于時間間隔的累積和 events(1,:) = cum
5、sum(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 if number = N+1events(5,i) = 0; %如果系統(tǒng)
6、為空,則第 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);%其等待時間等于隊列中前一個顧客的離開時刻減去其到%達時刻events(3,i)=events(4,member(len_mem)-e
7、vents(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 =Columns 1 through 7Columns 8 through14Columns15 through 21Columns22 through 28Columns29 throu
8、gh 35000000000000000000000Columns36through42000000000000000000000Columns43through48000000000000000000events =Columns1through70000 0 000000 00000 0Columns8 through14000000000000000000000Columns15through21000000000000000000000Columns22through28000000000000000000000Columns29 through350000000000000000 0
9、 0 000Columns36 through 42000000000000000000000Columns 43 through 48000000000000000000number =1number =0events =Columns1through70000 0 000000 00000 0Columns8 through14000000000000000000000Columns15through21000000000000000000000Columns22through28000000000000000000000Columns29 through35000000000000000
10、000000Columns36through42000000000000000000000Columns43through48000000000000000000events =Columns1through70 00000000000000Columns 8 through 14000000000000000000000Columns15through21000000000000000000000Columns22through28000000000000000000000Columns29 through35000000000000000000000Columns43through4800
11、0000000000000000number =1number =1number =0events =Columns1through700 00 000000 0000 0Columns8 through14000000000000000000000Columns15through21000000000000000000000Columns22through28000000000000000000000Columns29 through3500000000000000Columns36through42000000000000000000000Columns43through480000000
12、00000000000events =Columns1through70 00000000000000Columns 8 through 140000 0 0 00000 0 00000 0 0Columns15through21000000000000000000000Columns22through28000000000000000000000Columns29 through35000000000000000000000Columns43through48000000000000000000number =1number =1number =0events =Columns1throug
13、h700 00 000000 0000 0Columns8 through140000 0 0 00000 0 00000 0 0Columns15through21000000000000000000000Columns22through28000000000000000000000Columns29 through3500000000000000Columns36through42000000000000000000000Columns43through48000000000000000000events =Columns1through700 00 000000 0000 0Column
14、s8 through14000 0 0 00000 0 0000 0 0Columns15through 21000000000000000000000Columns 22 through 28000000000000000000000Columns29 through350 0 0 0 0 0 0000000000000000000000Columns43through48000000000000000000number =1number =0events =Columns1through70 00000000000000Columns 8 through 140 0 0 0 0 0 00
15、0 0 0 00 0 0 0 0Columns 15 through 21000000000000000000000Columns 22 through 28000000000000000000000Columns29 through35000000000000000000000Columns 36 through 42000000000000000000000Columns43through48000000000000000000events =Columns1through700 00 000000 0000 0Columns8 through140 0 0 0 0000 0 0 00 0
16、 0 0Columns 15 through 21000000000000000000000Columns22through28000000000000000000000Columns29 through35000000000000000000000Columns36through42000000000000000000000Columns43through48000000000000000000number =1number =0events =Columns1through70 00000000000000Columns 8 through 140 0 0 0 0 0 00 0 0 00
17、0 0 0Columns 15 through 21000000000000000000000Columns22through28000000000000000000000Columns29 through350 0 0 0 0 0 00 0 0 0 0 0 00 0 0 0 0 0 0Columns 36 through 42000000000000000000000Columns43through48000000000000000000events =Columns1through700 00 000000 0000 0Columns8 through140 0 0 0 0000 0 0
18、00 0 0 0Columns 15 through 210 0 0 0 0 0 00 0 0 00 00 0 0 0 0 0Columns 22 through 28000000000000000000000Columns29 through35000000000000000000000Columns36through42000000000000000 0 0 0 0 0 0Columns 43 through 48000000000000000000number =0events =Columns1through700 00 000000 0000 0Columns8 through140
19、 0 0 0 0000 0 0 00 0 0 0Columns 15 through 210000 0 0 00000 0 00000 0 0Columns22 through28000000000000000000000Columns29 through35000000000000000000000Columns36through42000000000000000000000Columns 43 through 48000000000000000000events =Columns1through70000000 0 0 00 0 0 0Columns 8 through 140 0 000 0 00 0 0 00 0 0 0Columns 15 through 210 0 0 0 0 0 00 0 0 0 00 0 0 0 0Columns 22 through 28000000000000000000000Columns 29 through 35000000000000000000000Columns 36 through 42000000000000000000000Columns 43 through 48000000000000000000numbe
溫馨提示
- 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. 本站不保證下載資源的準(zhǔn)確性、安全性和完整性, 同時也不承擔(dān)用戶因使用這些下載資源對自己和他人造成任何形式的傷害或損失。
最新文檔
- 手工泥巴制作課程設(shè)計
- 室外景觀設(shè)計師的植物配置與環(huán)境打造
- 保健品行業(yè)話務(wù)員工作總結(jié)
- 2025年中考物理一輪復(fù)習(xí)之物態(tài)變化
- 超市行業(yè)客服工作總結(jié)周到服務(wù)增添購物樂趣
- 化妝護膚行業(yè)銷售工作總結(jié)
- 餐飲服務(wù)員工作總結(jié)熱情招待細心服務(wù)顧客
- 【八年級下冊地理湘教版】專項02 港、澳、臺的經(jīng)濟發(fā)展
- 2024年熱鬧的元宵節(jié)教案
- 2024年石家莊理工職業(yè)學(xué)院單招職業(yè)技能測試題庫標(biāo)準(zhǔn)卷
- 美容院2024年度規(guī)劃
- 裝飾裝修巡查記錄表
- 2024高考物理一輪復(fù)習(xí):觀察電容器的充、放電現(xiàn)象(練習(xí))(學(xué)生版+解析)
- 公司安全生產(chǎn)事故隱患內(nèi)部報告獎勵工作制度
- 2024年度內(nèi)蒙古自治區(qū)國家電網(wǎng)招聘之電工類綜合練習(xí)試卷A卷附答案
- 艾滋病預(yù)防知識講座
- 零售服務(wù)質(zhì)量提升
- 《4 平平安安回家來》 說課稿-2024-2025學(xué)年道德與法治一年級上冊統(tǒng)編版
- 2024中考英語真題分類匯編-代詞
- 第九版內(nèi)科學(xué)配套課件-8-骨髓增生異常綜合征(MDS)
- 新聞宣傳報道先進單位(集體)申報材料
評論
0/150
提交評論