addCongestionLink
modifies its input by adding four columns:
congestionFrequencyDirectThis is the congestion frequency on the direct direction of the link at the specified time resolution.
congestionFrequencyDirect = round(sum((`CONG. PROB +` != 0)/.N), 2)
congestionFrequencyIndirect This is the congestion frequency on the indirect direction of the link at the specified time resolution.
congestionFrequencyIndirect = round(sum((`CONG. PROB -` != 0)/.N), 2)
congestionHoursDirectThis is the number of congestion hours on the direct direction of the link at the specified time resolution.
congestionHoursDirect = sum(`CONG. PROB +` != 0)
congestionHoursIndirect This is the number of congestion hours on the direct direction of the link at the specified time resolution.
congestionHoursIndirect = sum(`CONG. PROB -` != 0)