User Tools

Site Tools


public:i-700-abms-08-1:final_system

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
public:i-700-abms-08-1:final_system [2008/04/05 00:25] ivarpublic:i-700-abms-08-1:final_system [2024/04/29 13:33] (current) – external edit 127.0.0.1
Line 47: Line 47:
       * demands  -  How many product units can be sold.       * demands  -  How many product units can be sold.
  
-  * **functions**+  * **Functions**
       * post  -  Sends a message to the whiteboard.       * post  -  Sends a message to the whiteboard.
       * main  -  Parses the arguments sent to the Industry and calls the constructor.       * main  -  Parses the arguments sent to the Industry and calls the constructor.
Line 86: Line 86:
  
 The industries listen to all messages from the market of the form: carbon.quota.response, but they are only interested in the messages that have the sentTo with their name in it. The industries also listen to the message simulation.time from the timer. The industries listen to all messages from the market of the form: carbon.quota.response, but they are only interested in the messages that have the sentTo with their name in it. The industries also listen to the message simulation.time from the timer.
 +
  
  
Line 105: Line 106:
       * **offers** = Is a vector that stores all the offers that come to the market       * **offers** = Is a vector that stores all the offers that come to the market
       * **DIM** = Is used to set the dimention when initializing an array in the market class       * **DIM** = Is used to set the dimention when initializing an array in the market class
-      * **removeListBid** = Stores the information of which bid is scheduled to be removed from the bids vector. 
-      * **removeListOffer** = Stores the information of which offer is scheduled to be removed from the offers vector. 
       * **bought** = Is a boolean used for checking if something was bought or not.       * **bought** = Is a boolean used for checking if something was bought or not.
       * **sold** = Is a boolean used for checking if something was sold or not.       * **sold** = Is a boolean used for checking if something was sold or not.
Line 114: Line 113:
  
    * **Functions:**    * **Functions:**
-      * **auctionImprove()** +      * **auctionMatch()** = Simply does the matching for bids and offers. If the price is ok then link them. At the end calls auctionImprove 
-      * **auctionMatch()** +      * **auctionImprove()** = This is meant to improve the current matches. If a bid has a better choice, repoints it to the nicer one. 
-      * **checkExpiration()** +      * **checkExpiration()** = Drops the offers and the bids with expired date 
-      * **checkOut()** +      * **checkOut()** = At the end of the day checkout the current matches for every offer and calculate the remaining amount of units per offer (if something left) and then notify the sellers/buyers 
-      * **destroy()** +      * **destroy()** = Used by the OpenAIR plug 
-      * **getIndex(String)** +      * **getIndex(String)** = Returns the index in the offers vector of the element that has the given string 
-      * **isConnected()**+      * **isConnected()** = Used by the OpenAIR plug
       * **post(type, content)** = This function sends the messages to the white-board using type as the type of message and content is the content of the message       * **post(type, content)** = This function sends the messages to the white-board using type as the type of message and content is the content of the message
       * **printVectors()** = This function prints out the information of the status of the bids and offers in the vectors       * **printVectors()** = This function prints out the information of the status of the bids and offers in the vectors
       * **startListening()** = This function makes the market start waiting for messages       * **startListening()** = This function makes the market start waiting for messages
-      * **store(XMLElement,string)**+      * **store(XMLElement,string)** = Function used for parsing/storing the values of the messages received
  
 For every bid that the market receives it stores it in the bids vector. It then checks daily if the bids have a matching offer or are expiring. If the bid is expiring it marks it in the removeListBid and then checks for the last time if it has any offers for it. If it has an offer for it it sends both the seller and the buyer a **carbon.quota.response** message saying that they have bought or sold some units and for the asking price of the offer.\\ For every bid that the market receives it stores it in the bids vector. It then checks daily if the bids have a matching offer or are expiring. If the bid is expiring it marks it in the removeListBid and then checks for the last time if it has any offers for it. If it has an offer for it it sends both the seller and the buyer a **carbon.quota.response** message saying that they have bought or sold some units and for the asking price of the offer.\\
Line 133: Line 132:
  
 The market can receive three kinds of messages: Two types from the Industries: **carbon.quota.bids** and **carbon.quota.offer**. It receives one kind of message from the Timer: **simulation.time**. When the market receives this type of message it starts by updating the date variable and then checks what bids and offer are expiring. The market can receive three kinds of messages: Two types from the Industries: **carbon.quota.bids** and **carbon.quota.offer**. It receives one kind of message from the Timer: **simulation.time**. When the market receives this type of message it starts by updating the date variable and then checks what bids and offer are expiring.
 +
  
 ====== Timer ====== ====== Timer ======
Line 143: Line 143:
       * **aDay**     = is exactly 86400000 milliseconds. This is used with the date variable       * **aDay**     = is exactly 86400000 milliseconds. This is used with the date variable
       * **date**     = This variable stores the date of the simulation (what day it is in the simulation)       * **date**     = This variable stores the date of the simulation (what day it is in the simulation)
-      * **mode**     = This can be set either to auto or manual if it is in manual you will have to press enter to let a day pass. Default is "auto"+      * **mode**     Command line argument. This can be set either to auto or manual if it is in manual you will have to press enter to let a day pass. Default is "auto"
  
 ===== Timer message ===== ===== Timer message =====
Line 170: Line 170:
 This picture shows the messages how they go from the Industries to the white board and then to the market and wise versa. It also shows how the messages come from the Timer and go through the white-board to all of the modules\\ This picture shows the messages how they go from the Industries to the white board and then to the market and wise versa. It also shows how the messages come from the Timer and go through the white-board to all of the modules\\
 {{public:i-700-abms-08-1:finalfinal.png|}} {{public:i-700-abms-08-1:finalfinal.png|}}
 +
  
 ====== psySpec ====== ====== psySpec ======
-The newest [[psySpec]] file has three new modules: Timer, Tester and the GUIForKristinn. The Timer module has one parameter name="Timer" and only posts messages but triggers none. The Tester is just a copy of the Industry modules and it can be used for playing with the numbers and if you wanted someone to behave in a strange way then the Tester is good for that. GUIForKristinn module has no parameters and it triggers all of the message types since it is only going to be observing the simulation.+The newest [[http://cadia.ru.is/wiki/public:i-700-abms-08-1:spec|psySpec]] file has three new modules: Timer, Tester and the GUIForKristinn. The Timer module has one parameter name="Timer" and only posts messages but triggers none. The Tester is just a copy of the Industry modules and it can be used for playing with the numbers and if you wanted someone to behave in a strange way then the Tester is good for that. GUIForKristinn module has no parameters and it triggers all of the message types since it is only going to be observing the simulation. 
  
  
Line 189: Line 191:
 **simulation.time**\\ **simulation.time**\\
 This message is sent to the white-board and it contains the date of the simulation in milliseconds. This message makes everybody know when new day is starting. This message is sent to the white-board and it contains the date of the simulation in milliseconds. This message makes everybody know when new day is starting.
 +
 +
 +
 +
 +
 +
 +
 +
 +
 +
 +
 +
 +
 +====== Screenshots of running system ======
 +Below screehshots of the running system are taken to show the trend of the prices during the simulation.
 +
 +The next two images refer to the bids prices in two different moments.\\
 +{{public:i-700-abms-08-1:bids1.png|}}
 +{{public:i-700-abms-08-1:bids2.png|}}\\
 +The next two images show the trend of the offers prices.\\
 +{{public:i-700-abms-08-1:offers.png|}}
 +{{public:i-700-abms-08-1:offers2.png|}}\\
 +The next two screenshots are taken from market responses.\\
 +{{public:i-700-abms-08-1:market_response.png|}}
 +{{public:i-700-abms-08-1:market_response2.png|}}
 +
/var/www/cadia.ru.is/wiki/data/attic/public/i-700-abms-08-1/final_system.1207355104.txt.gz · Last modified: 2024/04/29 13:32 (external edit)

Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki