|
||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES All Classes | |||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectjas.engine.SimTime
public class SimTime
A time unit converter. The simulation time is put in a long
variable.
Agent based model do not consider time as a real time, but as a
sequential loop of events. For these kind of models the time is expressed as
a number of ticks of the internal clock.
Discrete event simulations often represent real systems and use a real time
representation. These model could use a clock iternal representation expressed
using a time unit. To be extermely precise you can use the Milliseconds time
unit, but when simulating mountains erosion Months time unit can be a good
choice.
Also in this last case you can express the time in milliseconds and when
an event using some months must be scheduled you can simply use the months()
method to convert automatically the time.
Example: the time unit is TIME_MILLIS. I want to schedule an event by 2 months
and 3 hours.
The code is scheduleEvent(months(2) + hours(3), ...);
The SimTime will convert these times into an absolute long time.
Title: JAS
Description: Java Agent-based Simulation library
Copyright (C) 2002 Michele Sonnessa
This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or (at your option) any later version. This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public License along with this library; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
Field Summary | |
---|---|
static int |
TIME_DAYS
Represent Days time unit. |
static int |
TIME_HOURS
Represent Hours time unit. |
static int |
TIME_MILLIS
Represent Milliseconds time unit. |
static int |
TIME_MINUTES
Represent Minmutes time unit. |
static int |
TIME_MONTHS
Represent Months time unit. |
static int |
TIME_SECONDS
Represent Seconds time unit. |
static int |
TIME_TICKS
Represent untimed time unit. |
static int |
TIME_YEARS
Represent Years time unit. |
Constructor Summary | |
---|---|
SimTime(int time_unit)
Initialize SimTime to a time unit. |
Method Summary | |
---|---|
int |
days()
Return current days. |
long |
days(int value)
Convert days in absolute time. |
long |
elapsedTimeFrom(long fromTime)
Return the absolute elapsed time from the given time. |
long |
getAbsoluteTime()
Return absolute current time. |
int |
getTimeUnit()
Return the current time unit. |
java.lang.String |
getTimeUnitDescriptor()
Return the string representing current time unit. |
java.lang.String |
getTimeUnitDescriptor(int i)
Return the string representing the given time unit. |
java.lang.String[] |
getTimeUnits()
Return an array of String representing the time unit. |
java.lang.String |
getTimeUnitShortDescriptor(int i)
Return the simbol representing the given time unit. |
int |
getUnitLength(int time_unit)
Return how many units of the given time unit compose the greater time unit. |
int |
hours()
Return current hours. |
long |
hours(int value)
Convert hours in absolute time. |
void |
increaseTime(long elapsedTime)
Increase current time by a period of time. |
int |
millis()
Return current milliseconds. |
long |
millis(int value)
Convert millis in absolute time. |
int |
mins()
Return current minutes. |
long |
mins(int value)
Convert minutes in absolute time. |
int |
months()
Return current months. |
long |
months(int value)
Convert months in absolute time. |
static long |
realTime(int year,
int month,
int date,
int hour,
int minute)
Compute the absolute time of a given date and time. |
static long |
realTime(int year,
int month,
int date,
int hour,
int minute,
int second)
Compute the absolute time of a given date and time. |
int |
secs()
Return current seconds |
long |
secs(int value)
Convert seconds in absolute time. |
void |
setTimeUnit(int time_unit)
Set the current time unit. |
void |
setUnitLength(int time_unit,
int newLength)
This method lets to change the default time unit lenght. |
java.lang.String |
toShortString()
Return a short time-formatted string representing the current time. |
java.lang.String |
toString()
Return a time-formatted string representing the current time. |
java.lang.String |
toString(long absoluteTime)
Return a time formatted string representing the given time. |
void |
update(long newTime)
Update the current time. |
long |
years()
Return current years. |
long |
years(int value)
Convert years in absolute time. |
Methods inherited from class java.lang.Object |
---|
equals, getClass, hashCode, notify, notifyAll, wait, wait, wait |
Field Detail |
---|
public static final int TIME_DAYS
public static final int TIME_HOURS
public static final int TIME_MILLIS
public static final int TIME_MINUTES
public static final int TIME_MONTHS
public static final int TIME_SECONDS
public static final int TIME_TICKS
public static final int TIME_YEARS
Constructor Detail |
---|
public SimTime(int time_unit)
time_unit
- One of the constants representing time units.Method Detail |
---|
public int days()
public long days(int value)
value
- A number of days.
public long elapsedTimeFrom(long fromTime)
fromTime
- The absolute beginning time of the interval.
public long getAbsoluteTime()
public int getTimeUnit()
public java.lang.String getTimeUnitDescriptor()
public java.lang.String getTimeUnitDescriptor(int i)
i
- A time unit.
public java.lang.String[] getTimeUnits()
public java.lang.String getTimeUnitShortDescriptor(int i)
i
- A time unit.
public int getUnitLength(int time_unit)
time_unit
- A time unit.
public int hours()
public long hours(int value)
value
- A number of hours.
public void increaseTime(long elapsedTime)
elapsedTime
- The absolute time interval to add to the current time.public int millis()
public long millis(int value)
value
- A number of milliseconds.
public int mins()
public long mins(int value)
value
- A number of minutes.
public int months()
public long months(int value)
value
- A number of months.
public static long realTime(int year, int month, int date, int hour, int minute)
year
- An year nuber.month
- A month number from 1 to 12.date
- A day number.hour
- An hour (0-23).minute
- A minute (0-59).
public static long realTime(int year, int month, int date, int hour, int minute, int second)
year
- An year nuber.month
- A month number from 1 to 12.date
- A day number.hour
- An hour (0-23).minute
- A minute (0-59).second
- A second (0-59).
public int secs()
public long secs(int value)
value
- A number of seconds.
public void setTimeUnit(int time_unit)
time_unit
- The new time unit.public void setUnitLength(int time_unit, int newLength)
time_unit
- The time unit to update.newLength
- New time unit length.public java.lang.String toShortString()
public java.lang.String toString()
toString
in class java.lang.Object
public java.lang.String toString(long absoluteTime)
absoluteTime
- An absolute time.
public void update(long newTime)
newTime
- The new absolute time.public long years()
public long years(int value)
value
- A number of years.
|
||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES All Classes | |||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |