
/**
 * Author: Anthony Sulistio
 * Date: April 2003
 * Description: This file contains the output result when you run Example4.
 * $Id: output.txt,v 1.4 2003/12/14 06:36:51 anthony Exp $
 *
 * NOTE: // denotes a comment made to explain some of the values.
 */

Starting Example4
Initializing GridSim package

//-----------------------------------
// Created when the program (i.e. Example1.java) calls GridSim.init()
// Then GridSim.init() calls Sim_system.initialise(). Therefore, the below
// statement is created by the Sim_system class.

SimJava V1.2 - Ross McNab and Fred Howell

Starting to create one Grid resource with 3 Machines

Creates a Machine list
Creates a PE list for the 1st Machine
Creates 4 PEs with same MIPS Rating and put them into the PE list
Creates the 1st Machine that has 4 PEs and stores it into the Machine list

Creates a PE list for the 2nd Machine
Creates 4 PEs with same MIPS Rating and put them into the PE list
Creates the 2nd Machine that has 4 PEs and stores it into the Machine list

Creates a PE list for the 3rd Machine
Creates 2 PEs with same MIPS Rating and put them into the PE list
Creates the 3rd Machine that has 2 PEs and stores it into the Machine list

Creates the properties of a Grid resource and stores the Machine list
Finally, creates one Grid resource and stores the properties of a Grid resource

Creating a grid user entity with name = Example4, and id = 10
Creating 8 Gridlets

//-----------------------------------
// Created by GridSim.startGridSimulation()

Starting GridSim version 2.2

//------------------------------------
// Created when the program calls GridSim.startGridSimulation().
// Then GridSim.startGridSimulation()
// refers to Sim_system.run(). Therefore, the below three statements denote
// start of running a simulation.

Sim_system: Entering main loop
Sim_system: Starting entities
Sim_system: Waiting for entities to startup

Received ResourceCharacteristics from Resource_0, with id = 7
Sending Gridlet_0 to Resource_0 with id = 7
Receiving Gridlet 0
Sending Gridlet_1 to Resource_0 with id = 7
Receiving Gridlet 1
Sending Gridlet_2 to Resource_0 with id = 7
Receiving Gridlet 2
Sending Gridlet_3 to Resource_0 with id = 7
Receiving Gridlet 3
Sending Gridlet_4 to Resource_0 with id = 7
Receiving Gridlet 4
Sending Gridlet_5 to Resource_0 with id = 7
Receiving Gridlet 5
Sending Gridlet_6 to Resource_0 with id = 7
Receiving Gridlet 6
Sending Gridlet_7 to Resource_0 with id = 7
Receiving Gridlet 7

//-----------------------------------
// When there are no more events to process, then SimJava will exit the program
// Then GridSim will exit as well

Sim_system: No more future events
Exiting Sim_system.run()

========== OUTPUT ==========
Gridlet ID    STATUS    Resource ID    Cost
    0        SUCCESS        7        27.851458885941646
    1        SUCCESS        7        39.78779840848806
    2        SUCCESS        7        71.61803713527851
    3        SUCCESS        7        9.260185925286603
    4        SUCCESS        7        32.16080397034434
    5        SUCCESS        7        23.989166622345856
    6        SUCCESS        7        13.72182390549644
    7        SUCCESS        7        20.974565689486624

Finish Example4
