Hi,
To calculate service level you would need to use the Erlang-C formula.
The best way is to make a seperate calculation for each interval but as you state you don't have the arrival pattern, your only option is to do it for the whole day/week/month.
You can still use the erlang-c forumla but you have to calculate the volume per hour.
If your volume is 1200 per day, it is 1200/8 = 150 per hour
If your volume is 6000 per week, it is 6000/5/8 = 150 per hour
and so on...
The downside ofcourse is that this assumes a flat arrival pattern which is never the case but with some tweaking you should be able to get close.
|