view +sbp/InterpOps.m @ 1037:2d7ba44340d0 feature/burgers1d

Pass scheme specific parameters as cell array. This will enabale constructDiffOps to be more general. In addition, allow for schemes returning function handles as diffOps, which is currently how non-linear schemes such as Burgers1d are implemented.
author Vidar Stiernström <vidar.stiernstrom@it.uu.se>
date Fri, 18 Jan 2019 09:02:02 +0100
parents 4291731570bb
children
line wrap: on
line source

classdef (Abstract) InterpOps
    properties (Abstract)
        Iu2v % Interpolation operator(s) from "u" to "v"
        Iv2u % Interpolation operator(s) from "v" to "u"
    end

    methods (Abstract)
        % Returns a string representation of the type of operator.
        str = string(obj)
    end

end