当前位置:
首页
资源下载

搜索资源 - arrival time and service time
搜索资源列表
-
2下载:
这是一个基于M/M/S类型的排队论仿真程序。M/M/S表示到达时间为负指数分布,服务时间为负指数分布,服务设备数量为S个的排队系统。
(1)到达模式:严格意义上讲是一个接着一个到达,而且到达时间间隔服从参数为mean_arr的负指数分布;
(2)服务模式:服务台的数量为server_num,且每个服务台服务一个顾客的服务时间服从参数为mean_serv的负指数分布;
(3)排队规则:满足先进先服务,服务快的先离开的规则。
-This is a based on the M / M
-
-
0下载:
排队问题仿真模型的代码,顾客到达时间和服务时间服从均匀分布。-Simulation model of the queuing code, the customer arrival time and service time uniform distribution.
-
-
0下载:
多级反馈队列进程调度算法
1. 实验目的:
用高级语言编写和调试一个进程调度程序,以加深对进程的概念及进程调度算法的理解。
2. 实验内容:
编写一个模拟程序,完成单处理机系统中的进程调度,采用多级反馈队列的时间片轮转调度算法.
实验具体包括:首先确定进程控制块的内容,进程控制块的组成方式,确定相关参数(如进程数、到达时间、服务时间、时间片大小等) 然后完成进程创建原语、进程调度原语和进程撤销原语 最后编写主函数,上机实验并取得结果数据。
-The process of
-
-
5下载:
M/M/c排队模型的MATLAB仿真程序,顾客到达和服务时间服从指数分布,有c个窗口。包含排成一个队列;随机排成c个队列;自动选择c个队列中最短队列排队三种排队方式的仿真-M/M/c queuing model of the MATLAB simulation program, the customer arrival and service time is exponentially distributed, there is c windows
-
-
0下载:
程序开始运行时选择调度算法,创建进程时输入进程所需服务时间以及到达时间。
根据当前所设定调度算法,连续调度所有进程,并计算每个进程的周转时间和带权周转时间、所有进程的平均周转时间和平均带权周转时间。
调度时应适当输出调度过程中各进程状态队列的变化情况以及进程的已执行时间、还需服务时间(针对时间片轮转算法)。-Routine is executed choice when scheduling algorithm, create process input process required
-
-
1下载:
本程序是一个模拟实验,模拟操作系统中进程调度过程。要求实验者设计一个程序,该程序可模拟对10个以上的进程进行FCFS的方式进行调度。
1) 设计可用于该实验的进程控制块,进程控制块至少包括进程号、到达时间和要求服务时间;
2) 动态或静态创建多个(≥10)进程;
3) 实现FCFS调度算法;
4) 可动态修改进程到达时间;
5) 调度所创建的进程并显示调度结果。
-This procedure is a simulation experiment to simulate
-
-
0下载:
服务台的售票处,假设各顾客的到达时间间隔和服务时间均服从负指数分布,到达率λ=10人/分钟,服务率μ=6人/分钟,等待队长N=20人,仿真时间Total_time=10分钟。使用本程序仿真出的各顾客到达时刻与离开时刻曲线,等待时间与停留时间曲线.-Help desk ticket, assuming that each customer' s arrival time and service time obeys the negative exponential distribution,
-
-
0下载:
呼叫阻塞仿真
1 该系统与外界完全独立,无外界基站干扰,假设基站可提供的信道数为10。
2 呼叫的到达时间间隔和每次呼叫的服务时间服从负指数分布,参数分别为1/lamda_arrival和lamda_serve
-Call blocking and outside of the system simulation a fully independent, without outside interference the base station, assuming the base
-
-
3下载:
M/M/1单服务台派对系统,(用事件调度法实现离散事件系统仿真) 顾客到达模到达时间间隔和顾客服务时间均服从负指数分布,单服务台系统,按照单队排队,按FIFO方式服务。考察服务n个顾客后的顾客平均队长及平均排队等待时间-M/M/1 single desk party system (with the event scheduling system for discrete event simulation) model to reach customers arrival time and cu
-
-
0下载:
操作系统进程调度时间片算法 可输入时间片大小 每个进程名字 到达时间和服务时间
计算出各个进程的调度时间 完成时间和带权周转时间-Operating system process scheduling time slice algorithm can enter the name of each process time slice size of the arrival time and service time to calculate the activation time to c
-
-
0下载:
数据结构大型试验-银行模拟系统
(1)通过程序动态模拟银行顾客在一家有n>=2个窗口的银行的到达和离开情况。
(2)通过计算每位顾客的平均等待时间及每一窗口处于“繁忙”状态的百分比,来测试银行的服务效率。
(3)实现中,可以用时间代表银行活动的对象,用事件驱动来模拟这些活动,并以概率(随机数发生器)来描述预期的客户到达率和银行职员为一个顾客服务所需的时间。
(4)在实验中,可改变参数(如银行窗口数、客户到达率、服务时间等),测试银行的服务效率。要求在各种情况下,模拟测试都能
-
-
0下载:
先来先服务,抢占式进程。
模拟进程调度,能够处理以下的情形:
⑴ 能够选择不同的调度算法(要求中给出的调度算法);
⑵ 能够输入进程的基本信息,如进程名、到达时间和运行时间等;
⑶ 根据选择的调度算法显示进程调度队列;
⑷ 根据选择的调度算法计算平均周转时间和平均带权周转时间。-First-come, first-served preemptive process. Analog process scheduling, able to handle the
-
-
0下载:
Arrival and service time simulation and data modeling.
-
-
0下载:
file for generating inter-arrival and service time in a banking system
generation of uniformly distributed random numbers- file for generating inter-arrival and service time in a banking system
generation of uniformly distributed random numb
-
-
0下载:
file for generating inter-arrival and service time in a banking system
generation of uniformly distributed random numbers- file for generating inter-arrival and service time in a banking system
generation of uniformly distributed random numb
-
-
0下载:
file for generating inter-arrival and service time in a banking system
Program to generate random numbers and histogram- file for generating inter-arrival and service time in a banking system
Program to generate random numbers and histogram
-
-
0下载:
Arrival and service time simulation and data modeling.
-
-
0下载:
单服务排队系统仿真,模拟单柜台的银行排队系统,随机生成到达及服务时间-Single-service queuing system simulation, simulation of the single counter bank queuing system, randomly generated arrival and service time
-
-
0下载:
1、一个程序模拟银行叫号系统。
2、假设某银行有 5 个服务窗口,一个统一的叫号系统。在服务时段内,每个时间单位有随机数目的顾客。
3、每个服务窗口的职员处理完一个顾客的业务后,顾客即刻离开,职员呼叫下一个顾客,窗口显示下一个顾客的服务号。被叫号的
顾客随即得到服务。假定每个顾客需要的到来,每个新来的顾客得到一个顺序号,排入等待服务队列,等待叫号。服务时间也是
随机的。
4、在服务时段内显示如下实时信息和统计信息:
1) 每个窗口正在办理业务的顾客的顺序号
2) 目
-
-
1下载:
排队论中可以按指数分布的时间间隔产生一个队列,并进入服务时间服从指数分布的服务台,画图得出其到达时间与离开时间,还有每个顾客在系统中的逗留时间(Can produce a queue according to the time interval of exponential distribution in queuing theory, and enter the Business Hours exponentially distributed service station, drawing
-