gama.flowviz
Class CartesianGrid

java.lang.Object
  |
  +--gama.flowviz.CartesianGrid

public class CartesianGrid
extends java.lang.Object
implements java.lang.Runnable, Monitorable

This class contains the data in a cartesian grid. Creation date: (16.01.2002 11:10:27)


Field Summary
(package private)  float[][][] data
           
(package private)  FileLoader fileLoader
           
private  boolean finished
           
(package private)  int height
           
private  int progress
           
private  javax.swing.ProgressMonitor progressMonitor
           
(package private)  int width
           
 
Constructor Summary
CartesianGrid(int _width, int _height, FileLoader _loader)
          CartesianGrid constructor comment.
 
Method Summary
 float[][][] getData()
           
 int getDimX()
           
 int getDimY()
           
 float getLargestP()
           
 float getLargestV()
          Insert the method's description here.
 float getLargestVort()
          Insert the method's description here.
 float getLargestX()
          Insert the method's description here.
 float getLargestY()
          Insert the method's description here.
 int getProgress()
          Insert the method's description here.
 float getSmallestP()
          Insert the method's description here.
 float getSmallestV()
          Insert the method's description here.
 float getSmallestVort()
          Insert the method's description here.
 float getSmallestX()
          Insert the method's description here.
 float getSmallestY()
          Insert the method's description here.
 void registerProgressMonitor(javax.swing.ProgressMonitor _monitor)
          Insert the method's description here.
 void resample()
           
 void run()
          When an object implementing interface Runnable is used to create a thread, starting the thread causes the object's run method to be called in that separately executing thread.
 
Methods inherited from class java.lang.Object
, clone, equals, finalize, getClass, hashCode, notify, notifyAll, registerNatives, toString, wait, wait, wait
 

Field Detail

width

int width

height

int height

fileLoader

FileLoader fileLoader

data

float[][][] data

progress

private int progress

finished

private boolean finished

progressMonitor

private javax.swing.ProgressMonitor progressMonitor
Constructor Detail

CartesianGrid

public CartesianGrid(int _width,
                     int _height,
                     FileLoader _loader)
CartesianGrid constructor comment.
Method Detail

getData

public float[][][] getData()

getDimX

public int getDimX()

getDimY

public int getDimY()

getLargestP

public float getLargestP()

getLargestV

public float getLargestV()
Insert the method's description here. Creation date: (15.01.2002 22:37:59)
Returns:
float

getLargestVort

public float getLargestVort()
Insert the method's description here. Creation date: (16.01.2002 03:01:29)
Returns:
float

getLargestX

public float getLargestX()
Insert the method's description here. Creation date: (14.01.2002 10:54:31)
Returns:
float

getLargestY

public float getLargestY()
Insert the method's description here. Creation date: (14.01.2002 10:55:02)
Returns:
float

getProgress

public int getProgress()
Insert the method's description here. Creation date: (19.01.2002 17:21:14)
Returns:
int

getSmallestP

public float getSmallestP()
Insert the method's description here. Creation date: (17.01.2002 10:42:35)
Returns:
float

getSmallestV

public float getSmallestV()
Insert the method's description here. Creation date: (15.01.2002 22:37:59)
Returns:
float

getSmallestVort

public float getSmallestVort()
Insert the method's description here. Creation date: (18.01.2002 00:31:11)
Returns:
float

getSmallestX

public float getSmallestX()
Insert the method's description here. Creation date: (14.01.2002 10:54:44)
Returns:
float

getSmallestY

public float getSmallestY()
Insert the method's description here. Creation date: (14.01.2002 10:54:51)
Returns:
float

registerProgressMonitor

public void registerProgressMonitor(javax.swing.ProgressMonitor _monitor)
Insert the method's description here. Creation date: (21.01.2002 16:26:40)
Specified by:
registerProgressMonitor in interface Monitorable
Parameters:
_monitor - javax.swing.ProgressMonitor

resample

public void resample()

run

public void run()
When an object implementing interface Runnable is used to create a thread, starting the thread causes the object's run method to be called in that separately executing thread.

The general contract of the method run is that it may take any action whatsoever.

Specified by:
run in interface java.lang.Runnable
See Also:
Thread.run()