0% found this document useful (0 votes)
116 views1 page

Formula Syntax for Connectivity Metrics

This document contains formulas for calculating various accessibility metrics from performance management (PM) counter data for an EUtranCell (E-UTRAN cell). It provides the formula names and expressions using PM counter variables. The formulas are evaluated using Perl syntax and can reference other formulas in the document.

Uploaded by

joramiandrisoa
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
116 views1 page

Formula Syntax for Connectivity Metrics

This document contains formulas for calculating various accessibility metrics from performance management (PM) counter data for an EUtranCell (E-UTRAN cell). It provides the formula names and expressions using PM counter variables. The formulas are evaluated using Perl syntax and can reference other formulas in the document.

Uploaded by

joramiandrisoa
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd

#The formulas below are taken from the CPI DOCUMENT: 37/1553-HSC10550/1 and

47/1553-HSC10550/1.
#Also the document http://cdmweb.ericsson.se/WEBLINK/ViewDocs?DocumentName=EAB
%2FFJL-10%3A0850&Latest=true
#0) More information on formula syntax:
http://utran01.epa.ericsson.se/itkwiki/ViewWritersGuide/AppendixII
#1) Any text starting with a '#' is treated as a comment and discarded
#2) Each formula is split into the formula result variable name (part before the
'=' sign) and the formula expression (the part after the '=' sign).
#3) Any reference in the formula expression to a counter name of other formula name
is replaced by a perl variable reference
#4) The special names sum_<countername>, sum_time_<countername> and
sum_mo_<countername> are replaced by a perl reference to variable containing
counter aggregates
#5) Each formula expression is then evaluated using perl 'eval'. This means that
the syntax of the expressions is the same as that of perl - you can use any perl
operators & functions.
#6) The order in which the formulas are defined does not have any importance, a
formula can refer to other formulas defined further down in the file
#7) The formula names should not start with "pm"

# 2.1 Accessibility (EUtranCellFDD/TDD)


Acc_RrcConnSetupSuccRate = 100 * pmRrcConnEstabSucc / (pmRrcConnEstabAtt -
pmRrcConnEstabAttReatt)
Acc_S1SigEstabSuccRate = 100 * pmS1SigConnEstabSucc / pmS1SigConnEstabAtt
Acc_InitialErabSetupSuccRate = 100 * pmErabEstabSuccInit / pmErabEstabAttInit
Acc_InitialERabEstabSuccRate = Acc_RrcConnSetupSuccRate * Acc_S1SigEstabSuccRate *
Acc_InitialErabSetupSuccRate / 10000
Acc_AddedERabEstabSuccRate = 100 * pmErabEstabSuccAdded / pmErabEstabAttAdded
Acc_AddedERabEstabFailRateDueToMultipleLicense = 100 * pmErabEstabFailAddedLic /
pmErabEstabAttAdded
Acc_RrcConnSetupFailureRateDueToLackOfConnectedUsersLicense = 100 *
pmRrcConnEstabFailLic / pmRrcConnEstabAtt
Acc_RrcConnSetupRatioForMOData = 100 * pmRrcConnEstabAttMod/ pmRrcConnEstabAtt
Acc_RrcConnSetupRatioForMOSignalling = 100 * pmRrcConnEstabAttMos/
pmRrcConnEstabAtt
Acc_RrcConnSetupRatioForEmergency = 100 * pmRrcConnEstabAttEm/ pmRrcConnEstabAtt
Acc_RrcConnSetupRatioForMobileTerminating = 100 * pmRrcConnEstabAttMta/
pmRrcConnEstabAtt
Acc_RrcConnSetupRatioForHighPrioAccess = 100 * pmRrcConnEstabAttHpa/
pmRrcConnEstabAtt
Acc_InitialERabEstabFailureRateDueToMultipleLicense = 100 *
pmErabEstabFailInitLic / pmErabEstabAttInit
Acc_InitialUEContextEstabSuccRate = 100 * pmUeCtxtEstabSucc/ pmUeCtxtEstabAtt
Acc_PagingDiscardRate = 100 * pmPagDiscarded / pmPagReceived
Acc_RandomAccessDecodingRate = 100 * pmRaSuccCbra / pmRaAttCbra
Acc_RandomAccessMSG2Congestion = 100 * pmRaFailCbraMsg2Disc / pmRaAttCbra

You might also like