Class StretchedGrid

    • Constructor Detail

      • StretchedGrid

        public StretchedGrid​(double dimension)
        Constructs a uniform grid where the dimension is set to the argument. The stretching factor and grid density are set to a default value.
        Parameters:
        dimension - the dimension of the grid
      • StretchedGrid

        public StretchedGrid​(NumericProperty gridDensity,
                             double dimension)
        Constructs a non-uniform grid where the dimension and the grid density are specified by the arguments. The stretching factor and grid density are set to a default value.
        Parameters:
        gridDensity - the grid density, which is a property of the DOM_GRID_DENSITY type
        dimension - the dimension of the grid
    • Method Detail

      • generate

        public void generate​(int n)
      • generateUniform

        public void generateUniform​(boolean scaled)
      • generateUniformBase

        public void generateUniformBase​(int n,
                                        boolean scaled)
      • getDensity

        public int getDensity()
      • setStretchingFactor

        public void setStretchingFactor​(NumericProperty p)
      • getDimension

        public double getDimension()
      • getNode

        public double getNode​(int i)
      • getNodes

        public double[] getNodes()
      • step

        public double step​(int i,
                           double sign)
      • stepLeft

        public double stepLeft​(int i)
      • stepRight

        public double stepRight​(int i)
      • tanh

        public double tanh​(double x,
                           double stretchingFactor)
      • set

        public void set​(NumericPropertyKeyword type,
                        NumericProperty property)
        Description copied from class: Accessible

        An abstract method, which must be overriden to gain access over setting the values of all relevant (selected by the programmer) NumericProperties in subclasses of Accessible. Typically this involves a switch statement that goes through the different options for the type and invokes different set(...) methods to update the matching NumericProperty with property.

        Specified by:
        set in class Accessible
        Parameters:
        type - the type, which must be equal by definition to property.getType().
        property - the property, which contains new information.
      • listedKeywords

        public Set<NumericPropertyKeyword> listedKeywords()
        Description copied from class: PropertyHolder

        By default, this will search the children of this PropertyHolder to collect the types of their listed numeric parameters recursively.

        Overrides:
        listedKeywords in class PropertyHolder
        Returns:
        a set of NumericPropertyKeyword instances, which have been explicitly marked as a listed parameter for this PropertyHolder.