view +sbp/D2BlockNorm.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 e1d11b6a68d8
children
line wrap: on
line source

classdef D2BlockNorm < sbp.OpSet
    properties
        D1 % SBP operator approximating first derivative
        H % Norm matrix
        HI % H^-1
        Q % Skew-symmetric matrix
        e_l % Left boundary operator
        e_r % Right boundary operator
        D2 % SBP operator for second derivative
        M % Norm matrix, second derivative
        d1_l % Left boundary first derivative
        d1_r % Right boundary first derivative
        m % Number of grid points.
        h % Step size
        x % grid
        borrowing % Struct with borrowing limits for different norm matrices
    end



    methods
        function obj = D2BlockNorm(m,lim,order)

            x_l = lim{1};
            x_r = lim{2};
            L = x_r-x_l;
            obj.h = L/(m-1);
            obj.x = linspace(x_l,x_r,m)';

            if order == 4
                [obj.H, obj.HI, obj.D1, obj.D2, obj.e_l,...
                 obj.e_r, obj.M, obj.Q, obj.d1_l, obj.d1_r] = ...
                    sbp.implementations.d2_blocknorm_4(m,obj.h);
            elseif order == 6
                [obj.H, obj.HI, obj.D1, obj.D2, obj.e_l,...
                 obj.e_r, obj.M, obj.Q, obj.d1_l, obj.d1_r] = ...
                    sbp.implementations.d2_blocknorm_6(m,obj.h);
            elseif order == 8
                [obj.H, obj.HI, obj.D1, obj.D2, obj.e_l,...
                 obj.e_r, obj.M, obj.Q, obj.d1_l, obj.d1_r] = ...
                    sbp.implementations.d2_blocknorm_8(m,obj.h);
            elseif order == 10
                [obj.H, obj.HI, obj.D1, obj.D2, obj.e_l,...
                 obj.e_r, obj.M, obj.Q, obj.d1_l, obj.d1_r] = ...
                    sbp.implementations.d2_blocknorm_10(m,obj.h);
            else
                error('Invalid operator order %d.',order);
            end

            obj.m = m;

        end

        function str = string(obj)
            str = [class(obj) '_' num2str(obj.order)];
        end
    end



end