|
||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES All Classes | |||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectjava.util.AbstractCollection
jas.space.Grid
jas.space.DblGrid
jas.space.DblDiffuseGrid
public class DblDiffuseGrid
Discrete 2nd order approximation of 2d diffusion with evaporation. Essentialy a java implementation of Diffuse2d in the Swarm simulation toolkit. Toroidal in shape and works with number values. This space simulates concurency through the use of a read and write matrix. Any writes to the space, write to the write matrix, and any reads to the read matrix. The diffuse() method then diffuses the write matrix and copies the new values into the read matrix.
For an example of a DblDiffuseTorusGrid space see the heatBugs example. See
diffuse
for a brief explanation of the diffusion
algorithm. Note that this space doesn't seem to work correctly when
run with hotspot 1.01
Field Summary | |
---|---|
static int |
EVENT_DIFFUSE
|
static long |
MAX
|
static int |
MOORE
|
static int |
VON_NEUMANN
|
Constructor Summary | |
---|---|
DblDiffuseGrid(int xSize,
int ySize)
Constructs a DblDiffuseTorusGrid space with the specificed dimensions |
|
DblDiffuseGrid(int xSize,
int ySize,
double diffusionConstant,
double evaporationRate)
Constructs a DblDiffuseTorusGrid space with the specified diffusion constant, evaporation rate, and dimensions |
Method Summary | |
---|---|
void |
diffuse()
Runs the diffusion with the current rates and values. |
double[] |
findMaximum(int x,
int y,
int range,
boolean includeOrigin,
int neighborhoodType)
Finds the maximum grid cell value within a specified range from the specified origin coordinate. |
double[] |
findMinimum(int x,
int y,
int range,
boolean includeOrigin,
int neighborhoodType)
Finds the minimum grid cell value within a specified range from the specified origin coordinate. |
double[] |
getMatrix()
Return the matrix of values representing the grid. |
double[] |
getMooreNeighbors(int x,
int y)
Gets the Moore neighbors of the specified coordinate. doubles are returned by row starting with the "NW corner" and ending with the "SE corner." |
double[] |
getMooreNeighbors(int x,
int y,
int xExtent,
int yExtent)
Gets the extended Moore neighbors of the specified coordinate. |
double[] |
getVonNeumannNeighbors(int x,
int y)
Gets the von Neumann neighbors of the specified coordinate. |
double[] |
getVonNeumannNeighbors(int x,
int y,
int xExtent,
int yExtent)
Gets the extended von Neumann neighbors of the specified coordinate. |
void |
performAction(int actionType)
The object implementing this interface is able to receive an event notify. |
void |
print(double[] mtr)
|
void |
setDiffusionConstant(double diffusionConstant)
Sets the diffusion constant for this DblDiffuseTorusGrid space |
void |
setEvaporationRate(double rate)
Sets the evaporation rate for this DblDiffuseTorusGrid space |
void |
update()
Copies the writeLattice to the readLattice |
Methods inherited from class jas.space.DblGrid |
---|
add, clear, copyGridTo, copyGridTo, countObjectsAt, get, getDbl, max, mean, min, multiply, resetTo, set, setDbl, size, sum, swapPositions, variance |
Methods inherited from class jas.space.Grid |
---|
boundX, boundY, equals, getMooreNeighborsPositions, getVonNeumannNeighborsPositions, getXSize, getYSize, gridIterator, iterator, reflectX, reflectY, torusX, torusY, toString |
Methods inherited from class java.util.AbstractCollection |
---|
add, addAll, contains, containsAll, isEmpty, remove, removeAll, retainAll, toArray, toArray |
Methods inherited from class java.lang.Object |
---|
getClass, hashCode, notify, notifyAll, wait, wait, wait |
Methods inherited from interface java.util.Collection |
---|
hashCode |
Field Detail |
---|
public static final int EVENT_DIFFUSE
public static final long MAX
public static final int MOORE
public static final int VON_NEUMANN
Constructor Detail |
---|
public DblDiffuseGrid(int xSize, int ySize)
xSize
- size of the x dimensionySize
- size of the y dimensionpublic DblDiffuseGrid(int xSize, int ySize, double diffusionConstant, double evaporationRate)
diffusionConstant
- the diffusion constantevaporationRate
- the evaporation ratexSize
- size of the x dimensionySize
- size of the y dimensionMethod Detail |
---|
public void diffuse()
Values from the readMatrix are used to calculate diffusion. This value is then written to the writeMatrix. When this has been done for every cell in the grid, the writeMatrix is copied to the readMatrix.
public double[] findMaximum(int x, int y, int range, boolean includeOrigin, int neighborhoodType)
x
- the x origin coordinatey
- the y origin coordinaterange
- the range out from the coordinate to searchincludeOrigin
- include object at origin in searchneighborhoodType
- the type of neighborhood to search. Can be one
of Discrete2DSpace.VON_NEUMANN or Discrete2DSpace.MOORE.
public double[] findMinimum(int x, int y, int range, boolean includeOrigin, int neighborhoodType)
x
- the x origin coordinatey
- the y origin coordinaterange
- the range out from the coordinate to searchincludeOrigin
- include object at origin in searchneighborhoodType
- the type of neighborhood to search. Can be one
of Discrete2DSpace.VON_NEUMANN or Discrete2DSpace.MOORE.
public double[] getMatrix()
DblGrid
getMatrix
in class DblGrid
public double[] getMooreNeighbors(int x, int y)
x
- the x coordinate of the objecty
- the y coordinate of the object
public double[] getMooreNeighbors(int x, int y, int xExtent, int yExtent)
x
- the x coordinate of the objecty
- the y coordinate of the objectxExtent
- the extension of the neighborhood in the x directionyExtent
- the extension of the neighborhood in the y direction
public double[] getVonNeumannNeighbors(int x, int y)
x
- the x coordinate of the objecty
- the y coordinate of the object
public double[] getVonNeumannNeighbors(int x, int y, int xExtent, int yExtent)
x
- the x coordinate of the objecty
- the y coordinate of the objectxExtent
- the extension of the neighborhood in the x directionyExtent
- the extension of the neighborhood in the y direction
public void performAction(int actionType)
ISimEventListener
performAction
in interface ISimEventListener
actionType
- The switch id to select the right action to perform. It
might be an Sim.EVENT_* or a custom defined constant.public void print(double[] mtr)
public void setDiffusionConstant(double diffusionConstant)
public void setEvaporationRate(double rate)
public void update()
|
||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES All Classes | |||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |