From: <bro...@us...> - 2008-08-19 00:39:57
|
Revision: 203 http://gridsim.svn.sourceforge.net/gridsim/?rev=203&view=rev Author: brobergj Date: 2008-08-19 00:40:05 +0000 (Tue, 19 Aug 2008) Log Message: ----------- Adding missing examples. Modified Paths: -------------- branches/gridsim4.0-branch2/examples/FlowNetEx02/FlowNetEx02.java branches/gridsim4.0-branch2/examples/FlowNetEx02/User_0.csv branches/gridsim4.0-branch2/examples/FlowNetEx02/User_1.csv branches/gridsim4.0-branch2/examples/FlowNetEx02/router1_report.csv branches/gridsim4.0-branch2/examples/FlowNetEx02/router2_report.csv Added Paths: ----------- branches/gridsim4.0-branch2/examples/FlowNetEx01/FlowNetEx01/ branches/gridsim4.0-branch2/examples/FlowNetEx01/buildNrun branches/gridsim4.0-branch2/examples/FlowNetEx01/test1.csv branches/gridsim4.0-branch2/examples/FlowNetEx01/test2.csv branches/gridsim4.0-branch2/examples/FlowNetEx03/ branches/gridsim4.0-branch2/examples/FlowNetEx03/DataGridSim.java branches/gridsim4.0-branch2/examples/FlowNetEx03/FilesReader.java branches/gridsim4.0-branch2/examples/FlowNetEx03/ParameterReader.java branches/gridsim4.0-branch2/examples/FlowNetEx03/README.txt branches/gridsim4.0-branch2/examples/FlowNetEx03/ResourceReader.java branches/gridsim4.0-branch2/examples/FlowNetEx03/SimUser.java branches/gridsim4.0-branch2/examples/FlowNetEx03/UserReader.java branches/gridsim4.0-branch2/examples/FlowNetEx03/files.txt branches/gridsim4.0-branch2/examples/FlowNetEx03/network.txt branches/gridsim4.0-branch2/examples/FlowNetEx03/output.txt branches/gridsim4.0-branch2/examples/FlowNetEx03/parameters.txt branches/gridsim4.0-branch2/examples/FlowNetEx03/resources.txt branches/gridsim4.0-branch2/examples/FlowNetEx03/users.txt Added: branches/gridsim4.0-branch2/examples/FlowNetEx01/buildNrun =================================================================== --- branches/gridsim4.0-branch2/examples/FlowNetEx01/buildNrun (rev 0) +++ branches/gridsim4.0-branch2/examples/FlowNetEx01/buildNrun 2008-08-19 00:40:05 UTC (rev 203) @@ -0,0 +1,6 @@ +echo "Cleaning" +rm -rf FlowNetEx01/ +echo "Building" +javac -classpath /Users/brobergj/workspace/gridsim4.0-branch2/jars/new_gridsim.jar:/Users/brobergj/workspace/gridsim4.0-branch2/jars/simjava2.jar:. -d ./ *.java +echo "Timed Run" +time java -classpath /Users/brobergj/workspace/gridsim4.0-branch2/jars/new_gridsim.jar:/Users/brobergj/workspace/gridsim4.0-branch2/jars/simjava2.jar:./. FlowNetEx01/FlowNetEx01 Property changes on: branches/gridsim4.0-branch2/examples/FlowNetEx01/buildNrun ___________________________________________________________________ Added: svn:executable + * Added: branches/gridsim4.0-branch2/examples/FlowNetEx01/test1.csv =================================================================== --- branches/gridsim4.0-branch2/examples/FlowNetEx01/test1.csv (rev 0) +++ branches/gridsim4.0-branch2/examples/FlowNetEx01/test1.csv 2008-08-19 00:40:05 UTC (rev 203) @@ -0,0 +1,8 @@ +0.0 Creates test1 +15997.508293660483 test1.body(): receive Message_0, at time = 15997.508293660483 +15997.508293660483 test1.body(): Sending back Message_0, at time = 15997.508293660483 +16004.815793863934 test1.body(): receive Message_1, at time = 16004.815793863934 +16004.815793863934 test1.body(): Sending back Message_1, at time = 16004.815793863934 +16006.797457885745 test1.body(): receive Message_2, at time = 16006.797457885745 +16006.797457885745 test1.body(): Sending back Message_2, at time = 16006.797457885745 +17007.797457885747 test1.body(): exiting ... Added: branches/gridsim4.0-branch2/examples/FlowNetEx01/test2.csv =================================================================== --- branches/gridsim4.0-branch2/examples/FlowNetEx01/test2.csv (rev 0) +++ branches/gridsim4.0-branch2/examples/FlowNetEx01/test2.csv 2008-08-19 00:40:05 UTC (rev 203) @@ -0,0 +1,8 @@ +0.0 Creates test2 +15939.24998779297 test2.body(): receive Message_0, at time = 15939.24998779297 +15939.24998779297 test2.body(): Sending back Message_0, at time = 15939.24998779297 +15987.874992879233 test2.body(): receive Message_1, at time = 15987.874992879233 +15987.874992879233 test2.body(): Sending back Message_1, at time = 15987.874992879233 +16002.370796712241 test2.body(): receive Message_2, at time = 16002.370796712241 +16002.370796712241 test2.body(): Sending back Message_2, at time = 16002.370796712241 +17003.37079671224 test2.body(): exiting ... Modified: branches/gridsim4.0-branch2/examples/FlowNetEx02/FlowNetEx02.java =================================================================== --- branches/gridsim4.0-branch2/examples/FlowNetEx02/FlowNetEx02.java 2008-08-19 00:35:48 UTC (rev 202) +++ branches/gridsim4.0-branch2/examples/FlowNetEx02/FlowNetEx02.java 2008-08-19 00:40:05 UTC (rev 203) @@ -62,7 +62,7 @@ // more resources can be created by // setting totalResource to an appropriate value - int totalResource = 1; + int totalResource = 10; ArrayList resList = new ArrayList(totalResource); for (i = 0; i < totalResource; i++) { @@ -77,7 +77,7 @@ // Third step: Creates one or more grid user entities // number of Gridlets that will be sent to the resource - int totalGridlet = 5; + int totalGridlet = 40; // create users ArrayList userList = new ArrayList(num_user); Modified: branches/gridsim4.0-branch2/examples/FlowNetEx02/User_0.csv =================================================================== --- branches/gridsim4.0-branch2/examples/FlowNetEx02/User_0.csv 2008-08-19 00:35:48 UTC (rev 202) +++ branches/gridsim4.0-branch2/examples/FlowNetEx02/User_0.csv 2008-08-19 00:40:05 UTC (rev 203) @@ -1,32 +1,120 @@ -0.0, Creating a grid user entity with name = User_0, and id = 10 -0.0, User_0:Creating 5 Gridlets -3.0, User_0Sending Gridlet #0 to Res_0 -3.0, User_0Sending Gridlet #1 to Res_0 -205.59299946949602, ack = true for Gridlet #1 -205.59299946949602, User_0Sending Gridlet #2 to Res_0 -205.59299946949602, User_0Sending Gridlet #3 to Res_0 -786.6569994694959, ack = true for Gridlet #3 -786.6569994694959, User_0Sending Gridlet #4 to Res_0 -791.6569994694959, User_0: Receiving Gridlet #0 at time = 791.6569994694959 -791.6569994694959, User_0: Receiving Gridlet #1 at time = 791.6569994694959 -791.6569994694959, User_0: Receiving Gridlet #2 at time = 791.6569994694959 -875.8505994694959, User_0: Receiving Gridlet #3 at time = 875.8505994694959 -2487.722599469497, User_0: Receiving Gridlet #4 at time = 2487.722599469497 -6280.660000000001, +0.0 Creating a grid user entity with name = User_0, and id = 55 +0.0 User_0:Creating 40 Gridlets +3.0 User_0Sending Gridlet #0 to Res_4 +3.0 User_0Sending Gridlet #1 to Res_4 +83.12200000000001 ack = true for Gridlet #1 +83.12200000000001 User_0Sending Gridlet #2 to Res_4 +83.12200000000001 User_0Sending Gridlet #3 to Res_4 +235.552599469496 ack = true for Gridlet #3 +235.552599469496 User_0Sending Gridlet #4 to Res_4 +235.552599469496 User_0Sending Gridlet #5 to Res_4 +396.399198938992 ack = true for Gridlet #5 +396.399198938992 User_0Sending Gridlet #6 to Res_4 +396.399198938992 User_0Sending Gridlet #7 to Res_4 +556.749798408488 ack = true for Gridlet #7 +556.749798408488 User_0Sending Gridlet #8 to Res_4 +556.749798408488 User_0Sending Gridlet #9 to Res_4 +715.972397877984 ack = true for Gridlet #9 +715.972397877984 User_0Sending Gridlet #10 to Res_4 +715.972397877984 User_0Sending Gridlet #11 to Res_4 +876.52299734748 ack = true for Gridlet #11 +876.52299734748 User_0Sending Gridlet #12 to Res_4 +876.52299734748 User_0Sending Gridlet #13 to Res_4 +1036.4415968169758 ack = true for Gridlet #13 +1036.4415968169758 User_0Sending Gridlet #14 to Res_4 +1036.4415968169758 User_0Sending Gridlet #15 to Res_4 +1196.984196286472 ack = true for Gridlet #15 +1196.984196286472 User_0Sending Gridlet #16 to Res_4 +1196.984196286472 User_0Sending Gridlet #17 to Res_4 +1357.1187957559682 ack = true for Gridlet #17 +1357.1187957559682 User_0Sending Gridlet #18 to Res_4 +1357.1187957559682 User_0Sending Gridlet #19 to Res_4 +1517.1013952254643 ack = true for Gridlet #19 +1517.1013952254643 User_0Sending Gridlet #20 to Res_4 +1517.1013952254643 User_0Sending Gridlet #21 to Res_4 +1677.2359946949603 ack = true for Gridlet #21 +1677.2359946949603 User_0Sending Gridlet #22 to Res_4 +1677.2359946949603 User_0Sending Gridlet #23 to Res_4 +1836.9065941644562 ack = true for Gridlet #23 +1836.9065941644562 User_0Sending Gridlet #24 to Res_4 +1836.9065941644562 User_0Sending Gridlet #25 to Res_4 +1997.0891936339524 ack = true for Gridlet #25 +1997.0891936339524 User_0Sending Gridlet #26 to Res_4 +1997.0891936339524 User_0Sending Gridlet #27 to Res_4 +2157.079793103449 ack = true for Gridlet #27 +2157.079793103449 User_0Sending Gridlet #28 to Res_4 +2157.079793103449 User_0Sending Gridlet #29 to Res_4 +2316.566392572945 ack = true for Gridlet #29 +2316.566392572945 User_0Sending Gridlet #30 to Res_4 +2316.566392572945 User_0Sending Gridlet #31 to Res_4 +2477.004992042441 ack = true for Gridlet #31 +2477.004992042441 User_0Sending Gridlet #32 to Res_4 +2477.004992042441 User_0Sending Gridlet #33 to Res_4 +2636.8915915119364 ack = true for Gridlet #33 +2636.8915915119364 User_0Sending Gridlet #34 to Res_4 +2636.8915915119364 User_0Sending Gridlet #35 to Res_4 +2797.146190981432 ack = true for Gridlet #35 +2797.146190981432 User_0Sending Gridlet #36 to Res_4 +2797.146190981432 User_0Sending Gridlet #37 to Res_4 +2969.3047904509276 ack = true for Gridlet #37 +2969.3047904509276 User_0Sending Gridlet #38 to Res_4 +2969.3047904509276 User_0Sending Gridlet #39 to Res_4 +3129.303389920424 ack = true for Gridlet #39 +3134.303389920424 User_0: Receiving Gridlet #0 at time = 3134.303389920424 +3134.303389920424 User_0: Receiving Gridlet #1 at time = 3134.303389920424 +3134.303389920424 User_0: Receiving Gridlet #3 at time = 3134.303389920424 +3134.303389920424 User_0: Receiving Gridlet #2 at time = 3134.303389920424 +3134.303389920424 User_0: Receiving Gridlet #4 at time = 3134.303389920424 +3134.303389920424 User_0: Receiving Gridlet #5 at time = 3134.303389920424 +3134.303389920424 User_0: Receiving Gridlet #7 at time = 3134.303389920424 +3134.303389920424 User_0: Receiving Gridlet #6 at time = 3134.303389920424 +3134.303389920424 User_0: Receiving Gridlet #9 at time = 3134.303389920424 +3134.303389920424 User_0: Receiving Gridlet #8 at time = 3134.303389920424 +3134.303389920424 User_0: Receiving Gridlet #10 at time = 3134.303389920424 +3134.303389920424 User_0: Receiving Gridlet #11 at time = 3134.303389920424 +3134.303389920424 User_0: Receiving Gridlet #12 at time = 3134.303389920424 +3134.303389920424 User_0: Receiving Gridlet #13 at time = 3134.303389920424 +3134.303389920424 User_0: Receiving Gridlet #14 at time = 3134.303389920424 +3134.303389920424 User_0: Receiving Gridlet #15 at time = 3134.303389920424 +3134.303389920424 User_0: Receiving Gridlet #16 at time = 3134.303389920424 +3134.303389920424 User_0: Receiving Gridlet #17 at time = 3134.303389920424 +3134.303389920424 User_0: Receiving Gridlet #18 at time = 3134.303389920424 +3134.303389920424 User_0: Receiving Gridlet #19 at time = 3134.303389920424 +3134.303389920424 User_0: Receiving Gridlet #20 at time = 3134.303389920424 +3134.303389920424 User_0: Receiving Gridlet #21 at time = 3134.303389920424 +3134.303389920424 User_0: Receiving Gridlet #22 at time = 3134.303389920424 +3134.303389920424 User_0: Receiving Gridlet #23 at time = 3134.303389920424 +3134.303389920424 User_0: Receiving Gridlet #24 at time = 3134.303389920424 +3134.303389920424 User_0: Receiving Gridlet #25 at time = 3134.303389920424 +3134.303389920424 User_0: Receiving Gridlet #26 at time = 3134.303389920424 +3134.303389920424 User_0: Receiving Gridlet #27 at time = 3134.303389920424 +3134.303389920424 User_0: Receiving Gridlet #29 at time = 3134.303389920424 +3134.303389920424 User_0: Receiving Gridlet #28 at time = 3134.303389920424 +3134.303389920424 User_0: Receiving Gridlet #31 at time = 3134.303389920424 +3134.303389920424 User_0: Receiving Gridlet #30 at time = 3134.303389920424 +3134.303389920424 User_0: Receiving Gridlet #32 at time = 3134.303389920424 +3134.303389920424 User_0: Receiving Gridlet #33 at time = 3134.303389920424 +3134.303389920424 User_0: Receiving Gridlet #34 at time = 3134.303389920424 +3134.303389920424 User_0: Receiving Gridlet #35 at time = 3134.303389920424 +3136.263389920424 User_0: Receiving Gridlet #36 at time = 3136.263389920424 +3136.263389920424 User_0: Receiving Gridlet #37 at time = 3136.263389920424 +3223.3739893899196 User_0: Receiving Gridlet #38 at time = 3223.3739893899196 +3223.3739893899196 User_0: Receiving Gridlet #39 at time = 3223.3739893899196 +3223.433989389921 -------- User_0 ---------------- -6280.660000000001, Ping information for User_0 +3223.433989389921 Ping information for User_0 Entity Name Entry Time Exit Time Bandwidth ---------------------------------------------------------- -User_0 2487.7226 3995.000 1000.000 -router1 3995.010 3997.410 10000.000 -router2 3997.420 6272.220 1000.000 -Res_0 6272.230 6276.230 1000.000 -router2 6276.240 6276.640 10000.000 -router1 6276.650 6280.650 1000.000 -User_0 6280.660 N/A N/A +User_0 3223.374 3223.374 1000.000 +router1 3223.384 3223.384 10000.000 +router2 3223.394 3223.394 1000.000 +Res_4 3223.404 3223.404 1000.000 +router2 3223.414 3223.414 10000.000 +router1 3223.424 3223.424 1000.000 +User_0 3223.434 N/A N/A -Round Trip Time : 2285.660 seconds +Round Trip Time : 0.060 seconds Number of Hops : 3 Bottleneck Bandwidth : 1000.0 bits/s -6280.660000000001, -------- User_0 ---------------- +3223.433989389921 -------- User_0 ---------------- Modified: branches/gridsim4.0-branch2/examples/FlowNetEx02/User_1.csv =================================================================== --- branches/gridsim4.0-branch2/examples/FlowNetEx02/User_1.csv 2008-08-19 00:35:48 UTC (rev 202) +++ branches/gridsim4.0-branch2/examples/FlowNetEx02/User_1.csv 2008-08-19 00:40:05 UTC (rev 203) @@ -1,32 +1,120 @@ -0.0, Creating a grid user entity with name = User_1, and id = 14 -0.0, User_1:Creating 5 Gridlets -3.0, User_1Sending Gridlet #0 to Res_0 -3.0, User_1Sending Gridlet #1 to Res_0 -219.01999999999998, ack = true for Gridlet #1 -219.01999999999998, User_1Sending Gridlet #2 to Res_0 -219.01999999999998, User_1Sending Gridlet #3 to Res_0 -835.722599469496, ack = true for Gridlet #3 -835.722599469496, User_1Sending Gridlet #4 to Res_0 -840.722599469496, User_1: Receiving Gridlet #0 at time = 840.722599469496 -840.722599469496, User_1: Receiving Gridlet #1 at time = 840.722599469496 -840.722599469496, User_1: Receiving Gridlet #2 at time = 840.722599469496 -883.786599469496, User_1: Receiving Gridlet #3 at time = 883.786599469496 -2543.0200000000004, User_1: Receiving Gridlet #4 at time = 2543.0200000000004 -6680.660000000001, +0.0 Creating a grid user entity with name = User_1, and id = 59 +0.0 User_1:Creating 40 Gridlets +3.0 User_1Sending Gridlet #0 to Res_7 +3.0 User_1Sending Gridlet #1 to Res_7 +87.12200000000001 ack = true for Gridlet #1 +87.12200000000001 User_1Sending Gridlet #2 to Res_7 +87.12200000000001 User_1Sending Gridlet #3 to Res_7 +239.552599469496 ack = true for Gridlet #3 +239.552599469496 User_1Sending Gridlet #4 to Res_7 +239.552599469496 User_1Sending Gridlet #5 to Res_7 +400.399198938992 ack = true for Gridlet #5 +400.399198938992 User_1Sending Gridlet #6 to Res_7 +400.399198938992 User_1Sending Gridlet #7 to Res_7 +560.749798408488 ack = true for Gridlet #7 +560.749798408488 User_1Sending Gridlet #8 to Res_7 +560.749798408488 User_1Sending Gridlet #9 to Res_7 +719.972397877984 ack = true for Gridlet #9 +719.972397877984 User_1Sending Gridlet #10 to Res_7 +719.972397877984 User_1Sending Gridlet #11 to Res_7 +880.52299734748 ack = true for Gridlet #11 +880.52299734748 User_1Sending Gridlet #12 to Res_7 +880.52299734748 User_1Sending Gridlet #13 to Res_7 +1040.4415968169758 ack = true for Gridlet #13 +1040.4415968169758 User_1Sending Gridlet #14 to Res_7 +1040.4415968169758 User_1Sending Gridlet #15 to Res_7 +1200.984196286472 ack = true for Gridlet #15 +1200.984196286472 User_1Sending Gridlet #16 to Res_7 +1200.984196286472 User_1Sending Gridlet #17 to Res_7 +1361.1187957559682 ack = true for Gridlet #17 +1361.1187957559682 User_1Sending Gridlet #18 to Res_7 +1361.1187957559682 User_1Sending Gridlet #19 to Res_7 +1521.1013952254643 ack = true for Gridlet #19 +1521.1013952254643 User_1Sending Gridlet #20 to Res_7 +1521.1013952254643 User_1Sending Gridlet #21 to Res_7 +1681.2359946949603 ack = true for Gridlet #21 +1681.2359946949603 User_1Sending Gridlet #22 to Res_7 +1681.2359946949603 User_1Sending Gridlet #23 to Res_7 +1840.9065941644562 ack = true for Gridlet #23 +1840.9065941644562 User_1Sending Gridlet #24 to Res_7 +1840.9065941644562 User_1Sending Gridlet #25 to Res_7 +2001.0891936339524 ack = true for Gridlet #25 +2001.0891936339524 User_1Sending Gridlet #26 to Res_7 +2001.0891936339524 User_1Sending Gridlet #27 to Res_7 +2161.079793103449 ack = true for Gridlet #27 +2161.079793103449 User_1Sending Gridlet #28 to Res_7 +2161.079793103449 User_1Sending Gridlet #29 to Res_7 +2320.566392572945 ack = true for Gridlet #29 +2320.566392572945 User_1Sending Gridlet #30 to Res_7 +2320.566392572945 User_1Sending Gridlet #31 to Res_7 +2481.004992042441 ack = true for Gridlet #31 +2481.004992042441 User_1Sending Gridlet #32 to Res_7 +2481.004992042441 User_1Sending Gridlet #33 to Res_7 +2640.8915915119364 ack = true for Gridlet #33 +2640.8915915119364 User_1Sending Gridlet #34 to Res_7 +2640.8915915119364 User_1Sending Gridlet #35 to Res_7 +2801.146190981432 ack = true for Gridlet #35 +2801.146190981432 User_1Sending Gridlet #36 to Res_7 +2801.146190981432 User_1Sending Gridlet #37 to Res_7 +2973.3047904509276 ack = true for Gridlet #37 +2973.3047904509276 User_1Sending Gridlet #38 to Res_7 +2973.3047904509276 User_1Sending Gridlet #39 to Res_7 +3133.303389920424 ack = true for Gridlet #39 +3138.303389920424 User_1: Receiving Gridlet #0 at time = 3138.303389920424 +3138.303389920424 User_1: Receiving Gridlet #1 at time = 3138.303389920424 +3138.303389920424 User_1: Receiving Gridlet #3 at time = 3138.303389920424 +3138.303389920424 User_1: Receiving Gridlet #2 at time = 3138.303389920424 +3138.303389920424 User_1: Receiving Gridlet #4 at time = 3138.303389920424 +3138.303389920424 User_1: Receiving Gridlet #5 at time = 3138.303389920424 +3138.303389920424 User_1: Receiving Gridlet #7 at time = 3138.303389920424 +3138.303389920424 User_1: Receiving Gridlet #6 at time = 3138.303389920424 +3138.303389920424 User_1: Receiving Gridlet #8 at time = 3138.303389920424 +3138.303389920424 User_1: Receiving Gridlet #9 at time = 3138.303389920424 +3138.303389920424 User_1: Receiving Gridlet #11 at time = 3138.303389920424 +3138.303389920424 User_1: Receiving Gridlet #10 at time = 3138.303389920424 +3138.303389920424 User_1: Receiving Gridlet #12 at time = 3138.303389920424 +3138.303389920424 User_1: Receiving Gridlet #13 at time = 3138.303389920424 +3138.303389920424 User_1: Receiving Gridlet #14 at time = 3138.303389920424 +3138.303389920424 User_1: Receiving Gridlet #15 at time = 3138.303389920424 +3138.303389920424 User_1: Receiving Gridlet #16 at time = 3138.303389920424 +3138.303389920424 User_1: Receiving Gridlet #17 at time = 3138.303389920424 +3138.303389920424 User_1: Receiving Gridlet #18 at time = 3138.303389920424 +3138.303389920424 User_1: Receiving Gridlet #19 at time = 3138.303389920424 +3138.303389920424 User_1: Receiving Gridlet #20 at time = 3138.303389920424 +3138.303389920424 User_1: Receiving Gridlet #21 at time = 3138.303389920424 +3138.303389920424 User_1: Receiving Gridlet #22 at time = 3138.303389920424 +3138.303389920424 User_1: Receiving Gridlet #23 at time = 3138.303389920424 +3138.303389920424 User_1: Receiving Gridlet #24 at time = 3138.303389920424 +3138.303389920424 User_1: Receiving Gridlet #25 at time = 3138.303389920424 +3138.303389920424 User_1: Receiving Gridlet #26 at time = 3138.303389920424 +3138.303389920424 User_1: Receiving Gridlet #27 at time = 3138.303389920424 +3138.303389920424 User_1: Receiving Gridlet #29 at time = 3138.303389920424 +3138.303389920424 User_1: Receiving Gridlet #28 at time = 3138.303389920424 +3138.303389920424 User_1: Receiving Gridlet #30 at time = 3138.303389920424 +3138.303389920424 User_1: Receiving Gridlet #31 at time = 3138.303389920424 +3138.303389920424 User_1: Receiving Gridlet #32 at time = 3138.303389920424 +3138.303389920424 User_1: Receiving Gridlet #33 at time = 3138.303389920424 +3138.303389920424 User_1: Receiving Gridlet #34 at time = 3138.303389920424 +3138.303389920424 User_1: Receiving Gridlet #35 at time = 3138.303389920424 +3140.263389920424 User_1: Receiving Gridlet #36 at time = 3140.263389920424 +3140.263389920424 User_1: Receiving Gridlet #37 at time = 3140.263389920424 +3227.3739893899196 User_1: Receiving Gridlet #38 at time = 3227.3739893899196 +3227.3739893899196 User_1: Receiving Gridlet #39 at time = 3227.3739893899196 +3227.433989389921 -------- User_1 ---------------- -6680.660000000001, Ping information for User_1 +3227.433989389921 Ping information for User_1 Entity Name Entry Time Exit Time Bandwidth ---------------------------------------------------------- -User_1 2543.020 4283.000 1000.000 -router1 4283.010 4283.410 10000.000 -router2 4283.420 6672.220 1000.000 -Res_0 6672.230 6676.230 1000.000 -router2 6676.240 6676.640 10000.000 -router1 6676.650 6680.650 1000.000 -User_1 6680.660 N/A N/A +User_1 3227.374 3227.374 1000.000 +router1 3227.384 3227.384 10000.000 +router2 3227.394 3227.394 1000.000 +Res_7 3227.404 3227.404 1000.000 +router2 3227.414 3227.414 10000.000 +router1 3227.424 3227.424 1000.000 +User_1 3227.434 N/A N/A -Round Trip Time : 2397.660 seconds +Round Trip Time : 0.060 seconds Number of Hops : 3 Bottleneck Bandwidth : 1000.0 bits/s -6680.660000000001, -------- User_1 ---------------- +3227.433989389921 -------- User_1 ---------------- Modified: branches/gridsim4.0-branch2/examples/FlowNetEx02/router1_report.csv =================================================================== --- branches/gridsim4.0-branch2/examples/FlowNetEx02/router1_report.csv 2008-08-19 00:35:48 UTC (rev 202) +++ branches/gridsim4.0-branch2/examples/FlowNetEx02/router1_report.csv 2008-08-19 00:40:05 UTC (rev 203) @@ -1,5792 +1,943 @@ -0.0, attach this ROUTER, to entity, User_0, with packet scheduler, NetUserSched_0 -0.0, attach this ROUTER, to entity, User_1, with packet scheduler, NetUserSched_1 -0.0, attach this ROUTER, with router, router2, with link, r1_r2_link, with packet scheduler, r1_Sched -0.0, register this entity to GridInformationService entity. -0.0, advertise to router, router2 -5.0, receive router ad from, router2 -15.01, -15.01, receive incoming, Packet #1, out of, 4, with id, 0, from, Output_User_0, to, Res_0, tag, 21, delay, 1.2 -15.01, break this packet into, 1 -15.01, enqueing, Packet #1, out of, 4, with id, 0, from, Output_User_0, to, Res_0, tag, 21 -15.01, -15.01, receive incoming, Packet #1, out of, 4, with id, 0, from, Output_User_1, to, Res_0, tag, 21, delay, 0.0 -15.01, break this packet into, 1 -15.01, enqueing, Packet #1, out of, 4, with id, 0, from, Output_User_1, to, Res_0, tag, 21 -16.21, dequeuing, Packet #1, out of, 4, with id, 0, from, Output_User_0, to, Res_0, tag, 21 -17.41, dequeuing, Packet #1, out of, 4, with id, 0, from, Output_User_1, to, Res_0, tag, 21 -27.01, -27.01, receive incoming, Packet #2, out of, 4, with id, 1, from, Output_User_0, to, Res_0, tag, 21, delay, 1.2 -27.01, break this packet into, 1 -27.01, enqueing, Packet #2, out of, 4, with id, 1, from, Output_User_0, to, Res_0, tag, 21 -27.01, -27.01, receive incoming, Packet #2, out of, 4, with id, 1, from, Output_User_1, to, Res_0, tag, 21, delay, 0.0 -27.01, break this packet into, 1 -27.01, enqueing, Packet #2, out of, 4, with id, 1, from, Output_User_1, to, Res_0, tag, 21 -28.21, dequeuing, Packet #2, out of, 4, with id, 1, from, Output_User_0, to, Res_0, tag, 21 -29.41, dequeuing, Packet #2, out of, 4, with id, 1, from, Output_User_1, to, Res_0, tag, 21 -39.01, -39.01, receive incoming, Packet #3, out of, 4, with id, 2, from, Output_User_0, to, Res_0, tag, 21, delay, 1.2 -39.01, break this packet into, 1 -39.01, enqueing, Packet #3, out of, 4, with id, 2, from, Output_User_0, to, Res_0, tag, 21 -39.01, -39.01, receive incoming, Packet #3, out of, 4, with id, 2, from, Output_User_1, to, Res_0, tag, 21, delay, 0.0 -39.01, break this packet into, 1 -39.01, enqueing, Packet #3, out of, 4, with id, 2, from, Output_User_1, to, Res_0, tag, 21 -40.21, dequeuing, Packet #3, out of, 4, with id, 2, from, Output_User_0, to, Res_0, tag, 21 -41.410000000000004, dequeuing, Packet #3, out of, 4, with id, 2, from, Output_User_1, to, Res_0, tag, 21 -51.01, -51.01, receive incoming, Packet #4, out of, 4, with id, 3, from, Output_User_0, to, Res_0, tag, 21, delay, 0.4 -51.01, break this packet into, 1 -51.01, enqueing, Packet #4, out of, 4, with id, 3, from, Output_User_0, to, Res_0, tag, 21 -51.01, -51.01, receive incoming, Packet #4, out of, 4, with id, 3, from, Output_User_1, to, Res_0, tag, 21, delay, 0.0 -51.01, break this packet into, 1 -51.01, enqueing, Packet #4, out of, 4, with id, 3, from, Output_User_1, to, Res_0, tag, 21 -51.41, dequeuing, Packet #4, out of, 4, with id, 3, from, Output_User_0, to, Res_0, tag, 21 -51.809999999999995, dequeuing, Packet #4, out of, 4, with id, 3, from, Output_User_1, to, Res_0, tag, 21 -55.01, -55.01, receive incoming, Packet #1, out of, 4, with id, 4, from, Output_User_1, to, Res_0, tag, 22, delay, 1.2 -55.01, break this packet into, 1 -55.01, enqueing, Packet #1, out of, 4, with id, 4, from, Output_User_1, to, Res_0, tag, 22 -55.01, -55.01, receive incoming, Packet #1, out of, 4, with id, 4, from, Output_User_0, to, Res_0, tag, 22, delay, 0.0 -55.01, break this packet into, 1 -55.01, enqueing, Packet #1, out of, 4, with id, 4, from, Output_User_0, to, Res_0, tag, 22 -56.21, dequeuing, Packet #1, out of, 4, with id, 4, from, Output_User_1, to, Res_0, tag, 22 -57.410000000000004, dequeuing, Packet #1, out of, 4, with id, 4, from, Output_User_0, to, Res_0, tag, 22 -67.01, -67.01, receive incoming, Packet #2, out of, 4, with id, 5, from, Output_User_0, to, Res_0, tag, 22, delay, 1.2 -67.01, break this packet into, 1 -67.01, enqueing, Packet #2, out of, 4, with id, 5, from, Output_User_0, to, Res_0, tag, 22 -67.01, -67.01, receive incoming, Packet #2, out of, 4, with id, 5, from, Output_User_1, to, Res_0, tag, 22, delay, 0.0 -67.01, break this packet into, 1 -67.01, enqueing, Packet #2, out of, 4, with id, 5, from, Output_User_1, to, Res_0, tag, 22 -68.21000000000001, dequeuing, Packet #2, out of, 4, with id, 5, from, Output_User_0, to, Res_0, tag, 22 -69.41000000000001, dequeuing, Packet #2, out of, 4, with id, 5, from, Output_User_1, to, Res_0, tag, 22 -79.01, -79.01, receive incoming, Packet #3, out of, 4, with id, 6, from, Output_User_1, to, Res_0, tag, 22, delay, 1.2 -79.01, break this packet into, 1 -79.01, enqueing, Packet #3, out of, 4, with id, 6, from, Output_User_1, to, Res_0, tag, 22 -79.01, -79.01, receive incoming, Packet #3, out of, 4, with id, 6, from, Output_User_0, to, Res_0, tag, 22, delay, 0.0 -79.01, break this packet into, 1 -79.01, enqueing, Packet #3, out of, 4, with id, 6, from, Output_User_0, to, Res_0, tag, 22 -80.21000000000001, dequeuing, Packet #3, out of, 4, with id, 6, from, Output_User_1, to, Res_0, tag, 22 -81.41000000000001, dequeuing, Packet #3, out of, 4, with id, 6, from, Output_User_0, to, Res_0, tag, 22 -91.01, -91.01, receive incoming, Packet #4, out of, 4, with id, 7, from, Output_User_0, to, Res_0, tag, 22, delay, 0.4 -91.01, break this packet into, 1 -91.01, enqueing, Packet #4, out of, 4, with id, 7, from, Output_User_0, to, Res_0, tag, 22 -91.01, -91.01, receive incoming, Packet #4, out of, 4, with id, 7, from, Output_User_1, to, Res_0, tag, 22, delay, 0.0 -91.01, break this packet into, 1 -91.01, enqueing, Packet #4, out of, 4, with id, 7, from, Output_User_1, to, Res_0, tag, 22 -91.41000000000001, dequeuing, Packet #4, out of, 4, with id, 7, from, Output_User_0, to, Res_0, tag, 22 -91.81000000000002, dequeuing, Packet #4, out of, 4, with id, 7, from, Output_User_1, to, Res_0, tag, 22 -95.01, -95.01, receive incoming, Packet #1, out of, 2, with id, 8, from, Output_User_0, to, Res_0, tag, GridSimTags.JUNK_PKT, delay, 1.2 -95.01, break this packet into, 1 -95.01, enqueing, Packet #1, out of, 2, with id, 8, from, Output_User_0, to, Res_0, tag, GridSimTags.JUNK_PKT -95.01, -95.01, receive incoming, Packet #1, out of, 2, with id, 8, from, Output_User_1, to, Res_0, tag, GridSimTags.JUNK_PKT, delay, 0.0 -95.01, break this packet into, 1 -95.01, enqueing, Packet #1, out of, 2, with id, 8, from, Output_User_1, to, Res_0, tag, GridSimTags.JUNK_PKT -96.21000000000001, dequeuing, Packet #1, out of, 2, with id, 8, from, Output_User_0, to, Res_0, tag, GridSimTags.JUNK_PKT -97.41000000000001, dequeuing, Packet #1, out of, 2, with id, 8, from, Output_User_1, to, Res_0, tag, GridSimTags.JUNK_PKT -107.01, -107.01, receive incoming, Packet #1, out of, 2, with id, 9, from, Output_User_0, to, Res_0, tag, GridSimTags.JUNK_PKT, delay, 1.2 -107.01, break this packet into, 1 -107.01, enqueing, Packet #1, out of, 2, with id, 9, from, Output_User_0, to, Res_0, tag, GridSimTags.JUNK_PKT -107.01, -107.01, receive incoming, Packet #1, out of, 2, with id, 9, from, Output_User_1, to, Res_0, tag, GridSimTags.JUNK_PKT, delay, 0.0 -107.01, break this packet into, 1 -107.01, enqueing, Packet #1, out of, 2, with id, 9, from, Output_User_1, to, Res_0, tag, GridSimTags.JUNK_PKT -108.21000000000001, dequeuing, Packet #1, out of, 2, with id, 9, from, Output_User_0, to, Res_0, tag, GridSimTags.JUNK_PKT -109.41000000000001, dequeuing, Packet #1, out of, 2, with id, 9, from, Output_User_1, to, Res_0, tag, GridSimTags.JUNK_PKT -119.01, -119.01, receive incoming, Packet #1, out of, 2, with id, 10, from, Output_User_0, to, Res_0, tag, GridSimTags.JUNK_PKT, delay, 1.2 -119.01, break this packet into, 1 -119.01, enqueing, Packet #1, out of, 2, with id, 10, from, Output_User_0, to, Res_0, tag, GridSimTags.JUNK_PKT -119.01, -119.01, receive incoming, Packet #1, out of, 2, with id, 10, from, Output_User_1, to, Res_0, tag, GridSimTags.JUNK_PKT, delay, 0.0 -119.01, break this packet into, 1 -119.01, enqueing, Packet #1, out of, 2, with id, 10, from, Output_User_1, to, Res_0, tag, GridSimTags.JUNK_PKT -120.21000000000001, dequeuing, Packet #1, out of, 2, with id, 10, from, Output_User_0, to, Res_0, tag, GridSimTags.JUNK_PKT -121.41000000000001, dequeuing, Packet #1, out of, 2, with id, 10, from, Output_User_1, to, Res_0, tag, GridSimTags.JUNK_PKT -126.71259946949604, -126.71259946949604, receive incoming, Packet #1, out of, 4, with id, 0, from, Output_Res_0, to, User_0, tag, 20, delay, 12.0 -126.71259946949604, break this packet into, 1 -126.71259946949604, enqueing, Packet #1, out of, 4, with id, 0, from, Output_Res_0, to, User_0, tag, 20 -131.01, -131.01, receive incoming, Packet #1, out of, 2, with id, 11, from, Output_User_0, to, User_1, tag, GridSimTags.JUNK_PKT, delay, 12.0 -131.01, break this packet into, 1 -131.01, enqueing, Packet #1, out of, 2, with id, 11, from, Output_User_0, to, User_1, tag, GridSimTags.JUNK_PKT -131.01, -131.01, receive incoming, Packet #1, out of, 2, with id, 11, from, Output_User_1, to, Res_0, tag, GridSimTags.JUNK_PKT, delay, 1.2 -131.01, break this packet into, 1 -131.01, enqueing, Packet #1, out of, 2, with id, 11, from, Output_User_1, to, Res_0, tag, GridSimTags.JUNK_PKT -132.20999999999998, dequeuing, Packet #1, out of, 2, with id, 11, from, Output_User_1, to, Res_0, tag, GridSimTags.JUNK_PKT -138.712599469496, -138.712599469496, receive incoming, Packet #2, out of, 4, with id, 1, from, Output_Res_0, to, User_0, tag, 20, delay, 0.0 -138.712599469496, break this packet into, 1 -138.712599469496, enqueing, Packet #2, out of, 4, with id, 1, from, Output_Res_0, to, User_0, tag, 20 -138.71259946949604, dequeuing, Packet #1, out of, 4, with id, 0, from, Output_Res_0, to, User_0, tag, 20 -143.01, dequeuing, Packet #1, out of, 2, with id, 11, from, Output_User_0, to, User_1, tag, GridSimTags.JUNK_PKT -143.01, -143.01, receive incoming, Packet #1, out of, 2, with id, 12, from, Output_User_0, to, User_1, tag, GridSimTags.JUNK_PKT, delay, 12.0 -143.01, break this packet into, 1 -143.01, enqueing, Packet #1, out of, 2, with id, 12, from, Output_User_0, to, User_1, tag, GridSimTags.JUNK_PKT -143.01, -143.01, receive incoming, Packet #1, out of, 2, with id, 12, from, Output_User_1, to, Res_0, tag, GridSimTags.JUNK_PKT, delay, 1.2 -143.01, break this packet into, 1 -143.01, enqueing, Packet #1, out of, 2, with id, 12, from, Output_User_1, to, Res_0, tag, GridSimTags.JUNK_PKT -144.20999999999998, dequeuing, Packet #1, out of, 2, with id, 12, from, Output_User_1, to, Res_0, tag, GridSimTags.JUNK_PKT -150.712599469496, -150.712599469496, receive incoming, Packet #3, out of, 4, with id, 2, from, Output_Res_0, to, User_0, tag, 20, delay, 0.0 -150.712599469496, break this packet into, 1 -150.712599469496, enqueing, Packet #3, out of, 4, with id, 2, from, Output_Res_0, to, User_0, tag, 20 -150.71259946949604, dequeuing, Packet #2, out of, 4, with id, 1, from, Output_Res_0, to, User_0, tag, 20 -155.01, dequeuing, Packet #1, out of, 2, with id, 12, from, Output_User_0, to, User_1, tag, GridSimTags.JUNK_PKT -155.01, -155.01, receive incoming, Packet #1, out of, 2, with id, 13, from, Output_User_0, to, User_1, tag, GridSimTags.JUNK_PKT, delay, 12.0 -155.01, break this packet into, 1 -155.01, enqueing, Packet #1, out of, 2, with id, 13, from, Output_User_0, to, User_1, tag, GridSimTags.JUNK_PKT -155.01, -155.01, receive incoming, Packet #1, out of, 2, with id, 13, from, Output_User_1, to, Res_0, tag, GridSimTags.JUNK_PKT, delay, 1.2 -155.01, break this packet into, 1 -155.01, enqueing, Packet #1, out of, 2, with id, 13, from, Output_User_1, to, Res_0, tag, GridSimTags.JUNK_PKT -156.20999999999998, dequeuing, Packet #1, out of, 2, with id, 13, from, Output_User_1, to, Res_0, tag, GridSimTags.JUNK_PKT -161.91259946949603, -161.91259946949603, receive incoming, Packet #4, out of, 4, with id, 3, from, Output_Res_0, to, User_0, tag, 20, delay, 0.0 -161.91259946949603, break this packet into, 1 -161.91259946949603, enqueing, Packet #4, out of, 4, with id, 3, from, Output_Res_0, to, User_0, tag, 20 -162.71259946949604, dequeuing, Packet #3, out of, 4, with id, 2, from, Output_Res_0, to, User_0, tag, 20 -166.712599469496, -166.712599469496, receive incoming, Packet #1, out of, 4, with id, 4, from, Output_Res_0, to, User_1, tag, 20, delay, 0.0 -166.712599469496, break this packet into, 1 -166.712599469496, enqueing, Packet #1, out of, 4, with id, 4, from, Output_Res_0, to, User_1, tag, 20 -167.01, dequeuing, Packet #1, out of, 2, with id, 13, from, Output_User_0, to, User_1, tag, GridSimTags.JUNK_PKT -167.01, -167.01, receive incoming, Packet #1, out of, 2, with id, 14, from, Output_User_1, to, Res_0, tag, GridSimTags.JUNK_PKT, delay, 1.2 -167.01, break this packet into, 1 -167.01, enqueing, Packet #1, out of, 2, with id, 14, from, Output_User_1, to, Res_0, tag, GridSimTags.JUNK_PKT -167.01, -167.01, receive incoming, Packet #1, out of, 2, with id, 14, from, Output_User_0, to, Res_0, tag, GridSimTags.JUNK_PKT, delay, 0.0 -167.01, break this packet into, 1 -167.01, enqueing, Packet #1, out of, 2, with id, 14, from, Output_User_0, to, Res_0, tag, GridSimTags.JUNK_PKT -168.20999999999998, dequeuing, Packet #1, out of, 2, with id, 14, from, Output_User_1, to, Res_0, tag, GridSimTags.JUNK_PKT -169.40999999999997, dequeuing, Packet #1, out of, 2, with id, 14, from, Output_User_0, to, Res_0, tag, GridSimTags.JUNK_PKT -174.71259946949604, dequeuing, Packet #4, out of, 4, with id, 3, from, Output_Res_0, to, User_0, tag, 20 -178.712599469496, -178.712599469496, receive incoming, Packet #2, out of, 4, with id, 5, from, Output_Res_0, to, User_1, tag, 20, delay, 0.0 -178.712599469496, break this packet into, 1 -178.712599469496, enqueing, Packet #2, out of, 4, with id, 5, from, Output_Res_0, to, User_1, tag, 20 -179.01, dequeuing, Packet #1, out of, 4, with id, 4, from, Output_Res_0, to, User_1, tag, 20 -179.01, -179.01, receive incoming, Packet #1, out of, 2, with id, 15, from, Output_User_0, to, Res_0, tag, GridSimTags.JUNK_PKT, delay, 1.2 -179.01, break this packet into, 1 -179.01, enqueing, Packet #1, out of, 2, with id, 15, from, Output_User_0, to, Res_0, tag, GridSimTags.JUNK_PKT -179.01, -179.01, receive incoming, Packet #1, out of, 2, with id, 15, from, Output_User_1, to, Res_0, tag, GridSimTags.JUNK_PKT, delay, 0.0 -179.01, break this packet into, 1 -179.01, enqueing, Packet #1, out of, 2, with id, 15, from, Output_User_1, to, Res_0, tag, GridSimTags.JUNK_PKT -180.20999999999998, dequeuing, Packet #1, out of, 2, with id, 15, from, Output_User_0, to, Res_0, tag, GridSimTags.JUNK_PKT -181.40999999999997, dequeuing, Packet #1, out of, 2, with id, 15, from, Output_User_1, to, Res_0, tag, GridSimTags.JUNK_PKT -190.712599469496, -190.712599469496, receive incoming, Packet #3, out of, 4, with id, 6, from, Output_Res_0, to, User_1, tag, 20, delay, 0.0 -190.712599469496, break this packet into, 1 -190.712599469496, enqueing, Packet #3, out of, 4, with id, 6, from, Output_Res_0, to, User_1, tag, 20 -191.01, dequeuing, Packet #2, out of, 4, with id, 5, from, Output_Res_0, to, User_1, tag, 20 -191.01, -191.01, receive incoming, Packet #1, out of, 2, with id, 16, from, Output_User_0, to, Res_0, tag, GridSimTags.JUNK_PKT, delay, 1.2 -191.01, break this packet into, 1 -191.01, enqueing, Packet #1, out of, 2, with id, 16, from, Output_User_0, to, Res_0, tag, GridSimTags.JUNK_PKT -191.01, -191.01, receive incoming, Packet #1, out of, 2, with id, 16, from, Output_User_1, to, Res_0, tag, GridSimTags.JUNK_PKT, delay, 0.0 -191.01, break this packet into, 1 -191.01, enqueing, Packet #1, out of, 2, with id, 16, from, Output_User_1, to, Res_0, tag, GridSimTags.JUNK_PKT -192.20999999999998, dequeuing, Packet #1, out of, 2, with id, 16, from, Output_User_0, to, Res_0, tag, GridSimTags.JUNK_PKT -193.40999999999997, dequeuing, Packet #1, out of, 2, with id, 16, from, Output_User_1, to, Res_0, tag, GridSimTags.JUNK_PKT -201.91259946949603, -201.91259946949603, receive incoming, Packet #4, out of, 4, with id, 7, from, Output_Res_0, to, User_1, tag, 20, delay, 0.0 -201.91259946949603, break this packet into, 1 -201.91259946949603, enqueing, Packet #4, out of, 4, with id, 7, from, Output_Res_0, to, User_1, tag, 20 -203.01, dequeuing, Packet #3, out of, 4, with id, 6, from, Output_Res_0, to, User_1, tag, 20 -203.01, -203.01, receive incoming, Packet #1, out of, 2, with id, 17, from, Output_User_0, to, Res_0, tag, GridSimTags.JUNK_PKT, delay, 1.2 -203.01, break this packet into, 1 -203.01, enqueing, Packet #1, out of, 2, with id, 17, from, Output_User_0, to, Res_0, tag, GridSimTags.JUNK_PKT -203.01, -203.01, receive incoming, Packet #1, out of, 2, with id, 17, from, Output_User_1, to, Res_0, tag, GridSimTags.JUNK_PKT, delay, 0.0 -203.01, break this packet into, 1 -203.01, enqueing, Packet #1, out of, 2, with id, 17, from, Output_User_1, to, Res_0, tag, GridSimTags.JUNK_PKT -204.20999999999998, dequeuing, Packet #1, out of, 2, with id, 17, from, Output_User_0, to, Res_0, tag, GridSimTags.JUNK_PKT -205.40999999999997, dequeuing, Packet #1, out of, 2, with id, 17, from, Output_User_1, to, Res_0, tag, GridSimTags.JUNK_PKT -205.51899946949604, -205.51899946949604, receive incoming, Packet #1, out of, 1, with id, 8, from, Output_Res_0, to, User_0, tag, 23, delay, 0.064 -205.51899946949604, break this packet into, 1 -205.51899946949604, enqueing, Packet #1, out of, 1, with id, 8, from, Output_Res_0, to, User_0, tag, 23 -205.58299946949603, dequeuing, Packet #1, out of, 1, with id, 8, from, Output_Res_0, to, User_0, tag, 23 -205.58299946949603, -205.58299946949603, receive incoming, Packet #1, out of, 1, with id, 9, from, Output_Res_0, to, User_1, tag, 23, delay, 0.0 -205.58299946949603, break this packet into, 1 -205.58299946949603, enqueing, Packet #1, out of, 1, with id, 9, from, Output_Res_0, to, User_1, tag, 23 -206.840599469496, -206.840599469496, receive incoming, Packet #1, out of, 4, with id, 10, from, Output_Res_0, to, User_0, tag, 20, delay, 12.0 -206.840599469496, break this packet into, 1 -206.840599469496, enqueing, Packet #1, out of, 4, with id, 10, from, Output_Res_0, to, User_0, tag, 20 -215.01, dequeuing, Packet #4, out of, 4, with id, 7, from, Output_Res_0, to, User_1, tag, 20 -215.01, -215.01, receive incoming, Packet #1, out of, 2, with id, 18, from, Output_User_0, to, User_1, tag, GridSimTags.JUNK_PKT, delay, 0.0 -215.01, break this packet into, 1 -215.01, enqueing, Packet #1, out of, 2, with id, 18, from, Output_User_0, to, User_1, tag, GridSimTags.JUNK_PKT -215.01, -215.01, receive incoming, Packet #1, out of, 2, with id, 18, from, Output_User_1, to, Res_0, tag, GridSimTags.JUNK_PKT, delay, 1.2 -215.01, break this packet into, 1 -215.01, enqueing, Packet #1, out of, 2, with id, 18, from, Output_User_1, to, Res_0, tag, GridSimTags.JUNK_PKT -216.20999999999998, dequeuing, Packet #1, out of, 2, with id, 18, from, Output_User_1, to, Res_0, tag, GridSimTags.JUNK_PKT -218.840599469496, dequeuing, Packet #1, out of, 4, with id, 10, from, Output_Res_0, to, User_0, tag, 20 -218.840599469496, -218.840599469496, receive incoming, Packet #2, out of, 4, with id, 11, from, Output_Res_0, to, User_0, tag, 20, delay, 12.0 -218.840599469496, break this packet into, 1 -218.840599469496, enqueing, Packet #2, out of, 4, with id, 11, from, Output_Res_0, to, User_0, tag, 20 -219.01, dequeuing, Packet #1, out of, 1, with id, 9, from, Output_Res_0, to, User_1, tag, 23 -219.07399999999998, dequeuing, Packet #1, out of, 2, with id, 18, from, Output_User_0, to, User_1, tag, GridSimTags.JUNK_PKT -227.01, -227.01, receive incoming, Packet #1, out of, 2, with id, 19, from, Output_User_1, to, Res_0, tag, GridSimTags.JUNK_PKT, delay, 1.2 -227.01, break this packet into, 1 -227.01, enqueing, Packet #1, out of, 2, with id, 19, from, Output_User_1, to, Res_0, tag, GridSimTags.JUNK_PKT -227.01, -227.01, receive incoming, Packet #1, out of, 2, with id, 19, from, Output_User_0, to, User_1, tag, GridSimTags.JUNK_PKT, delay, 12.0 -227.01, break this packet into, 1 -227.01, enqueing, Packet #1, out of, 2, with id, 19, from, Output_User_0, to, User_1, tag, GridSimTags.JUNK_PKT -228.20999999999998, dequeuing, Packet #1, out of, 2, with id, 19, from, Output_User_1, to, Res_0, tag, GridSimTags.JUNK_PKT -230.840599469496, dequeuing, Packet #2, out of, 4, with id, 11, from, Output_Res_0, to, User_0, tag, 20 -230.840599469496, -230.840599469496, receive incoming, Packet #3, out of, 4, with id, 12, from, Output_Res_0, to, User_0, tag, 20, delay, 12.0 -230.840599469496, break this packet into, 1 -230.840599469496, enqueing, Packet #3, out of, 4, with id, 12, from, Output_Res_0, to, User_0, tag, 20 -239.01, dequeuing, Packet #1, out of, 2, with id, 19, from, Output_User_0, to, User_1, tag, GridSimTags.JUNK_PKT -239.01, -239.01, receive incoming, Packet #1, out of, 2, with id, 20, from, Output_User_1, to, Res_0, tag, GridSimTags.JUNK_PKT, delay, 1.2 -239.01, break this packet into, 1 -239.01, enqueing, Packet #1, out of, 2, with id, 20, from, Output_User_1, to, Res_0, tag, GridSimTags.JUNK_PKT -239.01, -239.01, receive incoming, Packet #1, out of, 2, with id, 20, from, Output_User_0, to, User_1, tag, GridSimTags.JUNK_PKT, delay, 12.0 -239.01, break this packet into, 1 -239.01, enqueing, Packet #1, out of, 2, with id, 20, from, Output_User_0, to, User_1, tag, GridSimTags.JUNK_PKT -240.20999999999998, dequeuing, Packet #1, out of, 2, with id, 20, from, Output_User_1, to, Res_0, tag, GridSimTags.JUNK_PKT -242.04059946949602, -242.04059946949602, receive incoming, Packet #4, out of, 4, with id, 13, from, Output_Res_0, to, User_0, tag, 20, delay, 0.0 -242.04059946949602, break this packet into, 1 -242.04059946949602, enqueing, Packet #4, out of, 4, with id, 13, from, Output_Res_0, to, User_0, tag, 20 -242.840599469496, dequeuing, Packet #3, out of, 4, with id, 12, from, Output_Res_0, to, User_0, tag, 20 -246.840599469496, -246.840599469496, receive incoming, Packet #1, out of, 4, with id, 14, from, Output_Res_0, to, User_1, tag, 20, delay, 0.0 -246.840599469496, break this packet into, 1 -246.840599469496, enqueing, Packet #1, out of, 4, with id, 14, from, Output_Res_0, to, User_1, tag, 20 -251.01, dequeuing, Packet #1, out of, 2, with id, 20, from, Output_User_0, to, User_1, tag, GridSimTags.JUNK_PKT -251.01, -251.01, receive incoming, Packet #1, out of, 2, with id, 21, from, Output_User_1, to, Res_0, tag, GridSimTags.JUNK_PKT, delay, 1.2 -251.01, break this packet into, 1 -251.01, enqueing, Packet #1, out of, 2, with id, 21, from, Output_User_1, to, Res_0, tag, GridSimTags.JUNK_PKT -251.01, -251.01, receive incoming, Packet #1, out of, 2, with id, 21, from, Output_User_0, to, User_1, tag, GridSimTags.JUNK_PKT, delay, 0.0 -251.01, break this packet into, 1 -251.01, enqueing, Packet #1, out of, 2, with id, 21, from, Output_User_0, to, User_1, tag, GridSimTags.JUNK_PKT -252.20999999999998, dequeuing, Packet #1, out of, 2, with id, 21, from, Output_User_1, to, Res_0, tag, GridSimTags.JUNK_PKT -254.840599469496, dequeuing, Packet #4, out of, 4, with id, 13, from, Output_Res_0, to, User_0, tag, 20 -258.840599469496, -258.840599469496, receive incoming, Packet #2, out of, 4, with id, 15, from, Output_Res_0, to, User_1, tag, 20, delay, 0.0 -258.840599469496, break this packet into, 1 -258.840599469496, enqueing, Packet #2, out of, 4, with id, 15, from, Output_Res_0, to, User_1, tag, 20 -263.01, dequeuing, Packet #1, out of, 4, with id, 14, from, Output_Res_0, to, User_1, tag, 20 -263.01, -263.01, receive incoming, Packet #1, out of, 2, with id, 22, from, Output_User_0, to, User_1, tag, GridSimTags.JUNK_PKT, delay, 0.0 -263.01, break this packet into, 1 -263.01, enqueing, Packet #1, out of, 2, with id, 22, from, Output_User_0, to, User_1, tag, GridSimTags.JUNK_PKT -263.01, -263.01, receive incoming, Packet #1, out of, 2, with id, 22, from, Output_User_1, to, Res_0, tag, GridSimTags.JUNK_PKT, delay, 1.2 -263.01, break this packet into, 1 -263.01, enqueing, Packet #1, out of, 2, with id, 22, from, Output_User_1, to, Res_0, tag, GridSimTags.JUNK_PKT -264.21, dequeuing, Packet #1, out of, 2, with id, 22, from, Output_User_1, to, Res_0, tag, GridSimTags.JUNK_PKT -270.840599469496, -270.840599469496, receive incoming, Packet #3, out of, 4, with id, 16, from, Output_Res_0, to, User_1, tag, 20, delay, 0.0 -270.840599469496, break this packet into, 1 -270.840599469496, enqueing, Packet #3, out of, 4, with id, 16, from, Output_Res_0, to, User_1, tag, 20 -275.01, dequeuing, Packet #1, out of, 2, with id, 21, from, Output_User_0, to, User_1, tag, GridSimTags.JUNK_PKT -275.01, -275.01, receive incoming, Packet #1, out of, 2, with id, 23, from, Output_User_0, to, User_1, tag, GridSimTags.JUNK_PKT, delay, 0.0 -275.01, break this packet into, 1 -275.01, enqueing, Packet #1, out of, 2, with id, 23, from, Output_User_0, to, User_1, tag, GridSimTags.JUNK_PKT -275.01, -275.01, receive incoming, Packet #1, out of, 2, with id, 23, from, Output_User_1, to, Res_0, tag, GridSimTags.JUNK_PKT, delay, 1.2 -275.01, break this packet into, 1 -275.01, enqueing, Packet #1, out of, 2, with id, 23, from, Output_User_1, to, Res_0, tag, GridSimTags.JUNK_PKT -276.21, dequeuing, Packet #1, out of, 2, with id, 23, from, Output_User_1, to, Res_0, tag, GridSimTags.JUNK_PKT -282.040599469496, -282.040599469496, receive incoming, Packet #4, out of, 4, with id, 17, from, Output_Res_0, to, User_1, tag, 20, delay, 0.0 -282.040599469496, break this packet into, 1 -282.040599469496, enqueing, Packet #4, out of, 4, with id, 17, from, Output_Res_0, to, User_1, tag, 20 -287.01, dequeuing, Packet #2, out of, 4, with id, 15, from, Output_Res_0, to, User_1, tag, 20 -287.01, -287.01, receive incoming, Packet #1, out of, 2, with id, 24, from, Output_User_0, to, User_1, tag, GridSimTags.JUNK_PKT, delay, 0.0 -287.01, break this packet into, 1 -287.01, enqueing, Packet #1, out of, 2, with id, 24, from, Output_User_0, to, User_1, tag, GridSimTags.JUNK_PKT -287.01, -287.01, receive incoming, Packet #1, out of, 2, with id, 24, from, Output_User_1, to, Res_0, tag, GridSimTags.JUNK_PKT, delay, 1.2 -287.01, break this packet into, 1 -287.01, enqueing, Packet #1, out of, 2, with id, 24, from, Output_User_1, to, Res_0, tag, GridSimTags.JUNK_PKT -288.21, dequeuing, Packet #1, out of, 2, with id, 24, from, Output_User_1, to, Res_0, tag, GridSimTags.JUNK_PKT -299.01, dequeuing, Packet #1, out of, 2, with id, 22, from, Output_User_0, to, User_1, tag, GridSimTags.JUNK_PKT -299.01, -299.01, receive incoming, Packet #1, out of, 2, with id, 25, from, Output_User_0, to, User_1, tag, GridSimTags.JUNK_PKT, delay, 0.0 -299.01, break this packet into, 1 -299.01, enqueing, Packet #1, out of, 2, with id, 25, from, Output_User_0, to, User_1, tag, GridSimTags.JUNK_PKT -299.01, -299.01, receive incoming, Packet #1, out of, 2, with id, 25, from, Output_User_1, to, Res_0, tag, GridSimTags.JUNK_PKT, delay, 1.2 -299.01, break this packet into, 1 -299.01, enqueing, Packet #1, out of, 2, with id, 25, from, Output_User_1, to, Res_0, tag, GridSimTags.JUNK_PKT -300.21, dequeuing, Packet #1, out of, 2, with id, 25, from, Output_User_1, to, Res_0, tag, GridSimTags.JUNK_PKT -311.01, dequeuing, Packet #3, out of, 4, with id, 16, from, Output_Res_0, to, User_1, tag, 20 -311.01, -311.01, receive incoming, Packet #1, out of, 2, with id, 26, from, Output_User_1, to, Res_0, tag, GridSimTags.JUNK_PKT, delay, 1.2 -311.01, break this packet into, 1 -311.01, enqueing, Packet #1, out of, 2, with id, 26, from, Output_User_1, to, Res_0, tag, GridSimTags.JUNK_PKT -311.01, -311.01, receive incoming, Packet #1, out of, 2, with id, 26, from, Output_User_0, to, User_1, tag, GridSimTags.JUNK_PKT, delay, 0.0 -311.01, break this packet into, 1 -311.01, enqueing, Packet #1, out of, 2, with id, 26, from, Output_User_0, to, User_1, tag, GridSimTags.JUNK_PKT -312.21, dequeuing, Packet #1, out of, 2, with id, 26, from, Output_User_1, to, Res_0, tag, GridSimTags.JUNK_PKT -323.01, dequeuing, Packet #1, out of, 2, with id, 23, from, Output_User_0, to, User_1, tag, GridSimTags.JUNK_PKT -323.01, -323.01, receive incoming, Packet #1, out of, 2, with id, 27, from, Output_User_0, to, User_1, tag, GridSimTags.JUNK_PKT, delay, 0.0 -323.01, break this packet into, 1 -323.01, enqueing, Packet #1, out of, 2, with id, 27, from, Output_User_0, to, User_1, tag, GridSimTags.JUNK_PKT -323.01, -323.01, receive incoming, Packet #1, out of, 2, with id, 27, from, Output_User_1, to, Res_0, tag, GridSimTags.JUNK_PKT, delay, 1.2 -323.01, break this packet into, 1 -323.01, enqueing, Packet #1, out of, 2, with id, 27, from, Output_User_1, to, Res_0, tag, GridSimTags.JUNK_PKT -324.21, dequeuing, Packet #1, out of, 2, with id, 27, from, Output_User_1, to, Res_0, tag, GridSimTags.JUNK_PKT -335.01, dequeuing, Packet #4, out of, 4, with id, 17, from, Output_Res_0, to, User_1, tag, 20 -335.01, -335.01, receive incoming, Packet #1, out of, 2, with id, 28, from, Output_User_0, to, Res_0, tag, GridSimTags.JUNK_PKT, delay, 1.2 -335.01, break this packet into, 1 -335.01, enqueing, Packet #1, out of, 2, with id, 28, from, Output_User_0, to, Res_0, tag, GridSimTags.JUNK_PKT -335.01, -335.01, receive incoming, Packet #1, out of, 2, with id, 28, from, Output_User_1, to, Res_0, tag, GridSimTags.JUNK_PKT, delay, 0.0 -335.01, break this packet into, 1 -335.01, enqueing, Packet #1, out of, 2, with id, 28, from, Output_User_1, to, Res_0, tag, GridSimTags.JUNK_PKT -336.21, dequeuing, Packet #1, out of, 2, with id, 28, from, Output_User_0, to, Res_0, tag, GridSimTags.JUNK_PKT -337.40999999999997, dequeuing, Packet #1, out of, 2, with id, 28, from, Output_User_1, to, Res_0, tag, GridSimTags.JUNK_PKT -339.01, dequeuing, Packet #1, out of, 2, with id, 24, from, Output_User_0, to, User_1, tag, GridSimTags.JUNK_PKT -347.01, -347.01, receive incoming, Packet #1, out of, 2, with id, 29, from, Output_User_1, to, Res_0, tag, GridSimTags.JUNK_PKT, delay, 1.2 -347.01, break this packet into, 1 -347.01, enqueing, Packet #1, out of, 2, with id, 29, from, Output_User_1, to, Res_0, tag, GridSimTags.JUNK_PKT -347.01, -347.01, receive incoming, Packet #1, out of, 2, with id, 29, from, Output_User_0, to, Res_0, tag, GridSimTags.JUNK_PKT, delay, 0.0 -347.01, break this packet into, 1 -347.01, enqueing, Packet #1, out of, 2, with id, 29, from, Output_User_0, to, Res_0, tag, GridSimTags.JUNK_PKT -348.21, dequeuing, Packet #1, out of, 2, with id, 29, from, Output_User_1, to, Res_0, tag, GridSimTags.JUNK_PKT -349.40999999999997, dequeuing, Packet #1, out of, 2, with id, 29, from, Output_User_0, to, Res_0, tag, GridSimTags.JUNK_PKT -351.01, dequeuing, Packet #1, out of, 2, with id, 25, from, Output_User_0, to, User_1, tag, GridSimTags.JUNK_PKT -359.01, -359.01, receive incoming, Packet #1, out of, 2, with id, 30, from, Output_User_0, to, User_1, tag, GridSimTags.JUNK_PKT, delay, 0.0 -359.01, break this packet into, 1 -359.01, enqueing, Packet #1, out of, 2, with id, 30, from, Output_User_0, to, User_1, tag, GridSimTags.JUNK_PKT -359.01, -359.01, receive incoming, Packet #1, out of, 2, with id, 30, from, Output_User_1, to, Res_0, tag, GridSimTags.JUNK_PKT, delay, 1.2 -359.01, break this packet into, 1 -359.01, enqueing, Packet #1, out of, 2, with id, 30, from, Output_User_1, to, Res_0, tag, GridSimTags.JUNK_PKT -360.21, dequeuing, Packet #1, out of, 2, with id, 30, from, Output_User_1, to, Res_0, tag, GridSimTags.JUNK_PKT -363.01, dequeuing, Packet #1, out of, 2, with id, 26, from, Output_User_0, to, User_1, tag, GridSimTags.JUNK_PKT -371.01, -371.01, receive incoming, Packet #1, out of, 2, with id, 31, from, Output_User_0, to, User_1, tag, GridSimTags.JUNK_PKT, delay, 0.0 -371.01, break this packet into, 1 -371.01, enqueing, Packet #1, out of, 2, with id, 31, from, Output_User_0, to, User_1, tag, GridSimTags.JUNK_PKT -371.01, -371.01, receive incoming, Packet #1, out of, 2, with id, 31, from, Output_User_1, to, Res_0, tag, GridSimTags.JUNK_PKT, delay, 1.2 -371.01, break this packet into, 1 -371.01, enqueing, Packet #1, out of, 2, with id, 31, from, Output_User_1, to, Res_0, tag, GridSimTags.JUNK_PKT -372.21, dequeuing, Packet #1, out of, 2, with id, 31, from, Output_User_1, to, Res_0, tag, GridSimTags.JUNK_PKT -375.01, dequeuing, Packet #1, out of, 2, with id, 27, from, Output_User_0, to, User_1, tag, GridSimTags.JUNK_PKT -383.01, -383.01, receive incoming, Packet #1, out of, 2, with id, 32, from, Output_User_0, to, User_1, tag, GridSimTags.JUNK_PKT, delay, 0.0 -383.01, break this packet into, 1 -383.01, enqueing, Packet #1, out of, 2, with id, 32, from, Output_User_0, to, User_1, tag, GridSimTags.JUNK_PKT -383.01, -383.01, receive incoming, Packet #1, out of, 2, with id, 32, from, Output_User_1, to, Res_0, tag, GridSimTags.JUNK_PKT, delay, 1.2 -383.01, break this packet into, 1 -383.01, enqueing, Packet #1, out of, 2, with id, 32, from, Output_User_1, to, Res_0, tag, GridSimTags.JUNK_PKT -384.21, dequeuing, Packet #1, out of, 2, with id, 32, from, Output_User_1, to, Res_0, tag, GridSimTags.JUNK_PKT -387.01, dequeuing, Packet #1, out of, 2, with id, 30, from, Output_User_0, to, User_1, tag, GridSimTags.JUNK_PKT -395.01, -395.01, receive incoming, Packet #1, out of, 2, with id, 33, from, Output_User_0, to, User_1, tag, GridSimTags.JUNK_PKT, delay, 0.0 -395.01, break this packet into, 1 -395.01, enqueing, Packet #1, out of, 2, with id, 33, from, Output_User_0, to, User_1, tag, GridSimTags.JUNK_PKT -395.01, -395.01, receive incoming, Packet #1, out of, 2, with id, 33, from, Output_User_1, to, Res_0, tag, GridSimTags.JUNK_PKT, delay, 1.2 -395.01, break this packet into, 1 -395.01, enqueing, Packet #1, out of, 2, with id, 33, from, Output_User_1, to, Res_0, tag, GridSimTags.JUNK_PKT -396.21, dequeuing, Packet #1, out of, 2, with id, 33, from, Output_User_1, to, Res_0, tag, GridSimTags.JUNK_PKT -399.01, dequeuing, Packet #1, out of, 2, with id, 31, from, Output_User_0, to, User_1, tag, GridSimTags.JUNK_PKT -407.01, -407.01, receive incoming, Packet #1, out of, 4, with id, 34, from, Output_User_1, to, Res_0, tag, 21, delay, 1.2 -407.01, break this packet into, 1 -407.01, enqueing, Packet #1, out of, 4, with id, 34, from, Output_User_1, to, Res_0, tag, 21 -407.01, -407.01, receive incoming, Packet #1, out of, 4, with id, 34, from, Output_User_0, to, Res_0, tag, 21, delay, 0.0 -407.01, break this packet into, 1 -407.01, enqueing, Packet #1, out of, 4, with id, 34, from, Output_User_0, to, Res_0, tag, 21 -408.21, dequeuing, Packet #1, out of, 4, with id, 34, from, Output_User_1, to, Res_0, tag, 21 -409.40999999999997, dequeuing, Packet #1, out of, 4, with id, 34, from, Output_User_0, to, Res_0, tag, 21 -411.01, dequeuing, Packet #1, out of, 2, with id, 32, from, Output_User_0, to, User_1, tag, GridSimTags.JUNK_PKT -419.01, -419.01, receive incoming, Packet #2, out of, 4, with id, 35, from, Output_User_1, to, Res_0, tag, 21, delay, 1.2 -419.01, break this packet into, 1 -419.01, enqueing, Packet #2, out of, 4, with id, 35, from, Output_User_1, to, Res_0, tag, 21 -419.01, -419.01, receive incoming, Packet #2, out of, 4, with id, 35, from, Output_User_0, to, Res_0, tag, 21, delay, 0.0 -419.01, break this packet into, 1 -419.01, enqueing, Packet #2, out of, 4, with id, 35, from, Output_User_0, to, Res_0, tag, 21 -420.21, dequeuing, Packet #2, out of, 4, with id, 35, from, Output_User_1, to, Res_0, tag, 21 -421.40999999999997, dequeuing, Packet #2, out of, 4, with id, 35, from, Output_User_0, to, Res_0, tag, 21 -423.01, dequeuing, Packet #1, out of, 2, with id, 33, from, Output_User_0, to, User_1, tag, GridSimTags.JUNK_PKT -431.01, -431.01, receive incoming, Packet #3, out of, 4, with id, 36, from, Output_User_0, to, Res_0, tag, 21, delay, 1.2 -431.01, break this packet into, 1 -431.01, enqueing, Packet #3, out of, 4, with id, 36, from, Output_User_0, to, Res_0, tag, 21 -431.01, -431.01, receive incoming, Packet #3, out of, 4, with id, 36, from, Output_User_1, to, Res_0, tag, 21, delay, 0.0 -431.01, break this packet into, 1 -431.01, enqueing, Packet #3, out of, 4, with id, 36, from, Output_User_1, to, Res_0, tag, 21 -432.21, dequeuing, Packet #3, out of, 4, with id, 36, from, Output_User_0, to, Res_0, tag, 21 -433.40999999999997, dequeuing, Packet #3, out of, 4, with id, 36, from, Output_User_1, to, Res_0, tag, 21 -443.01, -443.01, receive incoming, Packet #4, out of, 4, with id, 37, from, Output_User_0, to, Res_0, tag, 21, delay, 0.4 -443.01, break this packet into, 1 -443.01, enqueing, Packet #4, out of, 4, with id, 37, from, Output_User_0, to, Res_0, tag, 21 -443.01, -443.01, receive incoming, Packet #4, out of, 4, with id, 37, from, Output_User_1, to, Res_0, tag, 21, delay, 0.0 -443.01, break this packet into, 1 -443.01, enqueing, Packet #4, out of, 4, with id, 37, from, Output_User_1, to, Res_0, tag, 21 -443.40999999999997, dequeuing, Packet #4, out of, 4, with id, 37, from, Output_User_0, to, Res_0, tag, 21 -443.80999999999995, dequeuing, Packet #4, out of, 4, with id, 37, from, Output_User_1, to, Res_0, tag, 21 -447.01, -447.01, receive incoming, Packet #1, out of, 4, with id, 38, from, Output_User_1, to, Res_0, tag, 22, delay, 1.2 -447.01, break this packet into, 1 -447.01, enqueing, Packet #1, out of, 4, with id, 38, from, Output_User_1, to, Res_0, tag, 22 -447.01, -447.01, receive incoming, Packet #1, out of, 4, with id, 38, from, Output_User_0, to, Res_0, tag, 22, delay, 0.0 -447.01, break this packet into, 1 -447.01, enqueing, Packet #1, ... [truncated message content] |