Class ImplicitCoupledSolverNL

    • Method Detail

      • timeStep

        public void timeStep​(int m)
                      throws SolverException
        Description copied from class: ImplicitScheme
        Calculates the solution at the boundaries using the boundary conditions specific to the problem statement and runs the tridiagonal matrix algorithm to evaluate solution at the intermediate grid points.
        Overrides:
        timeStep in class ImplicitScheme
        Parameters:
        m - the time step
        Throws:
        SolverException - if the calculation failed
      • getNonlinearPrecision

        public final NumericProperty getNonlinearPrecision()
      • setNonlinearPrecision

        public final void setNonlinearPrecision​(NumericProperty nonlinearPrecision)
      • 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.

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