DOC PREVIEW
UT Dallas CS 6385 - Project-3 REPORT

This preview shows page 1-2-3-4-5-6 out of 19 pages.

Save
View full document
View full document
Premium Document
Do you want full access? Go Premium and unlock all 19 pages.
Access to all documents
Download any document
Ad free experience
View full document
Premium Document
Do you want full access? Go Premium and unlock all 19 pages.
Access to all documents
Download any document
Ad free experience
View full document
Premium Document
Do you want full access? Go Premium and unlock all 19 pages.
Access to all documents
Download any document
Ad free experience
View full document
Premium Document
Do you want full access? Go Premium and unlock all 19 pages.
Access to all documents
Download any document
Ad free experience
View full document
Premium Document
Do you want full access? Go Premium and unlock all 19 pages.
Access to all documents
Download any document
Ad free experience
View full document
Premium Document
Do you want full access? Go Premium and unlock all 19 pages.
Access to all documents
Download any document
Ad free experience
Premium Document
Do you want full access? Go Premium and unlock all 19 pages.
Access to all documents
Download any document
Ad free experience

Unformatted text preview:

ALGORITHMIC ASPECTS OFTELECOMMUNICATION NETWORKSTE 6385Project 3 Computation of Network Reliability for GeneralNetwork ConfigurationsBy,Gurudutt NarasimhaNet Id: gxn120830SYNOPSIS:The goal of this project is to study experimentally how the network reliability depends on the individual link reliabilities for the given specific situation below:A complete graph on n = 5 nodes.So, number of edges, m=10. All links have identical value of Reliability which is given by variable p.OBJECTIVE:Using the given number of nodes=5 and edges=10  Create and implement an algorithm to compute the network reliability using the method of exhaustive enumeration To run the algorithm for different values of p (reliability of each link) and determine the Network Reliability of the network. To construct a graph to show how the Network Reliability of the network depends on the value of p. To construct a graph to show how the Network Reliability depends on the number of links whose state is flipped compared to original configuration.GIVEN:Number of nodes in the network = 5, number of edges m=10INPUT: Number of nodes N is given as input. Input for p variable is given in the range [0,1] in steps of 0.02 Input for k is in the range [1,32] in steps of 1OUTPUT:The program will result in Network Relaibility output. Run the program on various values of p(0 to 1) in steps of 0.02 with N fixed (N=5) and m=10. Find the Network Reliability for every case. It is required to show the relationship between Network Reliability and p, reliability of each link with the help of a graph.  It is required to show the relationship between number of states whose states are flipped and p, reliability of each link with the help of a graph.OVERVIEW:The important goal of this project is to implement the exhaustive enumeration algorithm tocompute the general network configuration reliability. We need to explain how the algorithmworks and provide pseudo code for the description of the algorithm, with sufficient comments tomake them readable and understandable.We have to write a computer program that implements this method. We have to run the programfor the range of p values [0,1] in steps of 0.02.The input for the algorithms is described as follows. Represent the input graph by an nxn matrix in which each row and each column corresponds to a node. Node 1 will be the source, and node n will be the destination. Each entry of the matrix provides the reliability of an edge in the graph (each edge represents a component of the system) That is, the matrix entry pij is a number with 0· pij · 1. If it is 0, it means there is no edge between nodes i and j. If it is positive, it means there is an edge between nodes i; j and its reliability is pij, that is, it operates with probability pij, independently of the others. It is assumed that the graph is undirected, that is, pij = pji. Let us restrict ourselves to graphs in which there are no multiple (parallel) edges between the same nodes, and there are no self-loops. The reliability of the entire configuration is defined as the probability of having at least one operational path between the source (node 1) and the destination (node n).ALGORITHMIC DESCRIPTION AND IMPLEMENTATION: The method of network reliability for a basic network configuration that is to be implemented in this project is Exhaustive EnumerationExhaustive enumeration When using the exhaustive enumeration, we generate all possible states of a system and assign “up” and “down” system conditions to each state. This usually yields a long expression. Though the obtained expression might be simplified, this method is only practical for small systems, due to the exponential growth of the number of states. Exhaustive enumeration method is the simplest of the combinatorial optimization techniques. The principle of this method is to evaluateall combinations of the discrete variables. For N components there are 2n possible states, makingexhaustive enumeration a non-scalable solution.PSEUDO CODE :- Choose an appropriate N : Number of nodes in the network by choosing a random number within a given range say 5-10.- Choose a random value of k for k edge-connectivity in the connected network graph.- Construct a reliability matrix which determines the reliability of each edge in the graph by generating a random number between 0 and 1.- Apply the three methods exhaustive enumeration, minimal path and minimal cut one by one on the graph generated.- Exhaustive enumeration method: Depending on the number of nodes in the network we can generate the possible states in the system. For example, if there are 5 nodes in the system then the possible system states will be : [11111, 11110, 11101, 11100, 11011, 11010, 11001, 11000, 10111, 10110, 10101, 10100, 10011, 10010, 10001, 10000, 01111, 01110, 01101, 01100, 01011, 01010, 01001, 01000, 00111, 00110, 00101, 00100, 00011, 00010, 00001, 00000] where 0 indicates that node is in fail state and 1 indicates that the node is active. - For each of the system state find out whether the system state is UP or DOWN. This can be determined in the following way: if considering the system state 11010, nodes 0,1 and 3 are active and nodes 2,4 are in failed state then is there a path between source node 0 and destination node 4. If there exists a path then the system state is UP else it is DOWN.- Consider only the UP states now, take all the nodes which are in active state and sum up the reliabilities of the edges connecting them, then take all the nodes which are in failed state and sum up (1.0 - reliabilities of the edges connecting them). This will yield the totalreliability of the network by exhaustive enumeration method. JGRAPHT: JGraphT is a free Java graph library that provides mathematical graph-theory objects and algorithms. JGraphT supports various types of graphs including: - Directed and undirected graphs. - Graphs with weighted / un-weighted / labeled or any user-defined edges. - Various edge multiplicity options, including: simple-graphs, multi-graphs, pseudo-graphs.- Un-modifiable graphs - allow modules to provide "read-only" access to internal graphs.- Listenable graphs - allow external listeners to track modification events.- All compositions of above graphs.JGRAPH AND JGRAPHT: JGraphT and JGraph are two different libraries which are intended for different purposes. JGraphT: is focused on data structures and algorithms. JGraph: is focused on rendering and


View Full Document

UT Dallas CS 6385 - Project-3 REPORT

Documents in this Course
assn1

assn1

2 pages

38rel2

38rel2

5 pages

Report

Report

3 pages

networks

networks

18 pages

lp2

lp2

44 pages

lp2 (2)

lp2 (2)

27 pages

lp1(1)

lp1(1)

21 pages

integer1

integer1

50 pages

FrankR2

FrankR2

3 pages

duality

duality

28 pages

CMST

CMST

44 pages

hw4

hw4

3 pages

for 1

for 1

11 pages

ENCh02

ENCh02

33 pages

pree

pree

2 pages

new  3

new 3

2 pages

new  2

new 2

2 pages

hw4a

hw4a

2 pages

T2_Sol

T2_Sol

4 pages

ISM3

ISM3

8 pages

hw4_sol

hw4_sol

6 pages

Elm04_06

Elm04_06

11 pages

atn proj2

atn proj2

20 pages

12CUT1

12CUT1

8 pages

09Ford

09Ford

23 pages

08FLOW

08FLOW

6 pages

03LP_su

03LP_su

6 pages

40REL40

40REL40

5 pages

39rel3

39rel3

5 pages

38arel2

38arel2

5 pages

37REL1

37REL1

3 pages

24TABU

24TABU

3 pages

22DYNPR

22DYNPR

3 pages

21B&C

21B&C

2 pages

20BBEX0

20BBEX0

3 pages

19BB

19BB

5 pages

14CAPBUD0

14CAPBUD0

11 pages

35BRXCH

35BRXCH

2 pages

34COMB

34COMB

4 pages

32CAPAS

32CAPAS

4 pages

31QUEUE

31QUEUE

3 pages

Load more
Download Project-3 REPORT
Our administrator received your request to download this document. We will send you the file to your email shortly.
Loading Unlocking...
Login

Join to view Project-3 REPORT and access 3M+ class-specific study document.

or
We will never post anything without your permission.
Don't have an account?
Sign Up

Join to view Project-3 REPORT 2 2 and access 3M+ class-specific study document.

or

By creating an account you agree to our Privacy Policy and Terms Of Use

Already a member?