Home » Topics » Telecom Design » Reverse Erlang
-
ChidchanokGuest
I’m doing my project on the topic of Teletraffic Model. I really want to how to calculate Erlang B Erlang C, Extended Erlang B in the recurcive way.
Anyone can help me?
MarcGuest
Hi,
For Erlang B :
E(N,Y) = [ (YexpN / N!) ] / [ (Sigma(j=0 to N) Yexpj / j!) ]
with N in Erlangs, Y=nb of circuits.
Recursive solution : E(N,Y) = [ (Y/N) * E(N-1,Y) ] / [ 1 + Y/N * E(N-1, Y) ]
Hope this can help.
Marc.
- The forum ‘Telecom Design’ is closed to new topics and replies.