Generic selectors
Exact matches only
Search in title
Search in content
Post Type Selectors

Reverse Erlang

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #32491
    Chidchanok
    Guest

    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?

    #32492
    Marc
    Guest

    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.

Viewing 2 posts - 1 through 2 (of 2 total)
  • The forum ‘Telecom Design’ is closed to new topics and replies.