mirror of
https://github.com/esiur/esiur-dotnet.git
synced 2025-09-13 20:43:19 +00:00
eBook
This commit is contained in:
107
Esiur.Analysis/Queueing/MeanValueAnalysis.cs
Normal file
107
Esiur.Analysis/Queueing/MeanValueAnalysis.cs
Normal file
@@ -0,0 +1,107 @@
|
||||
/*
|
||||
|
||||
Copyright (c) 2023 Ahmed Kh. Zamil
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
of this software and associated documentation files (the "Software"), to deal
|
||||
in the Software without restriction, including without limitation the rights
|
||||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
copies of the Software, and to permit persons to whom the Software is
|
||||
furnished to do so, subject to the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be included in all
|
||||
copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
||||
SOFTWARE.
|
||||
|
||||
*/
|
||||
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Diagnostics;
|
||||
using System.Text;
|
||||
|
||||
namespace Esiur.Analysis.Queueing
|
||||
{
|
||||
public class MeanValueAnalysis
|
||||
{
|
||||
|
||||
public Queue[] Nodes { get; set; }
|
||||
|
||||
public MeanValueAnalysis(Queue[] queues)
|
||||
{
|
||||
Nodes = queues;
|
||||
}
|
||||
|
||||
public double NormalizationConstant { get; set; }
|
||||
|
||||
public class MVAResult
|
||||
{
|
||||
public Queue Node { get; set; }
|
||||
|
||||
public double MeanNumberOfCustomers { get; set; }
|
||||
|
||||
public double MeanResponseTime { get; set; }
|
||||
|
||||
public double Throughput { get; set; }
|
||||
|
||||
public double NormalizationConstant { get; set; }
|
||||
}
|
||||
|
||||
public MVAResult[] Process(int customers)
|
||||
{
|
||||
|
||||
var R = new double[Nodes.Length];
|
||||
var L = new double[Nodes.Length];
|
||||
var X = 0.0;
|
||||
var G = 1.0;
|
||||
|
||||
// initialize
|
||||
|
||||
for (var k = 1; k <= customers; k++)
|
||||
{
|
||||
X = 0;
|
||||
|
||||
// Compute response time R
|
||||
for (var i = 0; i < Nodes.Length; i++)
|
||||
{
|
||||
if (k == 1 || Nodes[i].Servers == 0)
|
||||
R[i] = (1 / Nodes[i].ServiceRate);
|
||||
else if (Nodes[i].Servers == 1)
|
||||
R[i] = (1 / Nodes[i].ServiceRate) * (1 + L[i]);
|
||||
|
||||
// Compute throughput X
|
||||
X += R[i] * Nodes[i].VisitRatio;
|
||||
|
||||
}
|
||||
|
||||
X = k / X;
|
||||
|
||||
// Compute normalization factor G
|
||||
|
||||
G = G / X;
|
||||
|
||||
// Compute mean number of customers L
|
||||
for (var i = 0; i < Nodes.Length; i++)
|
||||
L[i] = X * Nodes[i].VisitRatio * R[i];
|
||||
|
||||
|
||||
//Debug.Print(String.Join(" ", R));
|
||||
|
||||
}
|
||||
|
||||
var rt = new MVAResult[Nodes.Length];
|
||||
for (var i = 0; i < Nodes.Length; i++)
|
||||
rt[i] = new MVAResult() { MeanNumberOfCustomers = L[i], MeanResponseTime = R[i], Node = Nodes[i], NormalizationConstant = G, Throughput = L[i] / R[i] };
|
||||
//Console.WriteLine(X);
|
||||
|
||||
return rt;
|
||||
}
|
||||
}
|
||||
}
|
118
Esiur.Analysis/Queueing/Queue.cs
Normal file
118
Esiur.Analysis/Queueing/Queue.cs
Normal file
@@ -0,0 +1,118 @@
|
||||
/*
|
||||
|
||||
Copyright (c) 2023 Ahmed Kh. Zamil
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
of this software and associated documentation files (the "Software"), to deal
|
||||
in the Software without restriction, including without limitation the rights
|
||||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
copies of the Software, and to permit persons to whom the Software is
|
||||
furnished to do so, subject to the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be included in all
|
||||
copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
||||
SOFTWARE.
|
||||
|
||||
*/
|
||||
|
||||
using Esiur.Analysis.Statistics;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
using System.Text.RegularExpressions;
|
||||
|
||||
namespace Esiur.Analysis.Queueing
|
||||
{
|
||||
public enum ProcessType
|
||||
{
|
||||
Markovian
|
||||
}
|
||||
|
||||
public enum Discipline
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
public class Queue
|
||||
{
|
||||
public ProcessType ArrivalProcess { get; set; }
|
||||
public ProcessType ServiceProcess { get; set; }
|
||||
|
||||
public double ArrivalRate { get; set; }
|
||||
public double VisitRatio { get; set; } // for Mean Value Analysis
|
||||
public double ServiceRate { get; set; }
|
||||
|
||||
public int Capacity { get; set; }
|
||||
public int Servers { get; set; }
|
||||
public int Population { get; set; }
|
||||
|
||||
public string Label { get; set; }
|
||||
|
||||
public double TrafficIntensity => Servers > 0 ? ArrivalRate / (Servers * ServiceRate) : ArrivalRate / ServiceRate;
|
||||
|
||||
public double Pie(int n)
|
||||
{
|
||||
var rho = TrafficIntensity;
|
||||
|
||||
// MM1
|
||||
if (Servers == 1 && Capacity == 0 && Population == 0)
|
||||
return Math.Pow(rho, n) * (1 - rho);
|
||||
|
||||
// M/M/1/K
|
||||
if (Servers == 1 && Capacity == 1 && Population == 0)
|
||||
{
|
||||
if (rho == 1)
|
||||
return Math.Pow(rho, n) * (1 / (Servers + Capacity + 1));
|
||||
else
|
||||
return Math.Pow(rho, n) * ((1 - rho) / (1 - Math.Pow(rho, Servers + Capacity + 1)));
|
||||
}
|
||||
|
||||
// M/M/Infinity
|
||||
if (Servers == 0 && Capacity == 0 && Population == 0)
|
||||
return (Math.Pow(rho, n) / n.Factorial()) * Math.Exp(-rho);
|
||||
|
||||
// M/M/C
|
||||
if (Servers > 0 && Capacity > 0 && Population ==0)
|
||||
{
|
||||
double pie0 = 1;
|
||||
for (var i = 1; i < Capacity - 1; i++)
|
||||
pie0 += Math.Pow(Servers * rho, i) / i.Factorial();
|
||||
pie0 += Math.Pow(Servers * rho, Servers) / (Servers.Factorial() * (1 - rho));
|
||||
|
||||
pie0 = 1 / pie0;
|
||||
|
||||
return (Math.Pow(Servers * rho, n) / n.Factorial()) * pie0;
|
||||
}
|
||||
|
||||
// M/M/C/K
|
||||
if (Servers > 0 && Capacity > 0 && Population > 0)
|
||||
{
|
||||
double pie0 = 1;
|
||||
|
||||
for (var i = 1; i < Capacity - 1; i++)
|
||||
pie0 += Math.Pow(Servers * rho, i) / i.Factorial();
|
||||
|
||||
|
||||
double cc = Math.Pow(Servers, Servers) / Servers.Factorial();
|
||||
|
||||
for(var i = Servers; i <= Servers + Capacity; i++)
|
||||
pie0 += cc * Math.Pow(rho, i);
|
||||
|
||||
pie0 = 1 / pie0;
|
||||
|
||||
return (Math.Pow(Servers * rho, n) / n.Factorial()) * pie0;
|
||||
|
||||
}
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user