Uses of Class
jabble.Grid

Packages that use Grid
jabble The core classes for Jabble that make up the framework. 
 

Uses of Grid in jabble
 

Fields in jabble declared as Grid
protected  Grid Indicator.grid
          The grid on which the indicator is being calculated.
protected  Grid Evolver.grid
          The grid on which the evolver will need to compute, as extracted from the slices.
 

Methods in jabble that return Grid
abstract  Grid DataStructuresFactory.createGrid(Grid grid)
          Creates a new Grid object with the same dimension and sizes of the given Grid.
static Grid Grid.createGrid(int... sizes)
          Creates a Grid of the specified size.
abstract  Grid DataStructuresFactory.createGrid(int... sizes)
          Creates a Grid of the specified size.
 Grid Slice.getGrid()
          Returns the grid on which the slice is defined.
abstract  Grid Point.getGrid()
          Returns the Grid on which the Point is defined.
abstract  Grid Field.getGrid()
          Returns the Grid on which the Field is defined.
 Grid EquationSet.getGrid()
          Returns the grid on which the equation was defined.
 

Methods in jabble with parameters of type Grid
protected  double Problem.calculateDifferential(Grid grid, int xIndex)
          Calculates the space differential for the given coordinate.
protected abstract  double Problem.calculateTimeDifferential(Grid grid)
          Calculates the time differential.
static Field Field.createField(java.lang.String name, double[] data, Grid grid)
          Creates a new field with the given name, data and Grid.
abstract  Field DataStructuresFactory.createField(java.lang.String name, double[] data, Grid grid)
          Creates a new field with the given name, data and Grid.
static Field Field.createField(java.lang.String name, Grid grid)
          Creates a new field with a value of zero at each point of the Grid.
abstract  Field DataStructuresFactory.createField(java.lang.String name, Grid grid)
          Creates a new field with a value of zero at each point of the Grid.
abstract  Grid DataStructuresFactory.createGrid(Grid grid)
          Creates a new Grid object with the same dimension and sizes of the given Grid.
 

Constructors in jabble with parameters of type Grid
Slice(Grid grid, EquationSet equation)
          Creates a Slice for the given equation and the given Grid (not the one the equation set is defined on).