Uses of Class
jabble.EquationSetBuilder

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

Uses of EquationSetBuilder in jabble
 

Methods in jabble that return EquationSetBuilder
 EquationSetBuilder EquationSetBuilder.setBoundaryConditions(java.lang.String fieldName, int dirIndex, BoundaryCondition lowerBoundary, BoundaryCondition upperBoundary)
          Defines the boundary condition for a Field along one direction.
 EquationSetBuilder EquationSetBuilder.setConstant(java.lang.String constantName, double value)
          Adds a setConstant to the EquationSet along with its value.
 EquationSetBuilder EquationSetBuilder.setCoordinates(java.lang.String... coords)
          Defines the setCoordinates for the setEquation, and initializes the setDifferentials to dcoordinate (for example "x" -> "dx").
 EquationSetBuilder EquationSetBuilder.setDifferentials(java.lang.String... differentials)
          Defines the name of the setDifferentials, in case they do not follow the standard convention (that is, it's not "x" -> "dx").
 EquationSetBuilder EquationSetBuilder.setEquation(java.lang.String field, java.lang.String equation)
          Adds the setEquation used to evolve the field, and adds the setFields to the list of setFields used (in case is not already added).
 EquationSetBuilder EquationSetBuilder.setFields(java.lang.String... fieldNames)
          Adds a new field to the ones defined by the setEquation set.
 EquationSetBuilder EquationSetBuilder.setGridSize(int... sizes)
          Specifies the size of the grid in all directions.
 EquationSetBuilder EquationSetBuilder.setStationaryFields(java.lang.String... fields)
          Defines a set of stationary setFields, that is setFields that do not change in time.
 EquationSetBuilder EquationSetBuilder.setyBoundaryConditions(BoundaryCondition... boundaries)
          Defines the default boundary conditions for all setFields.