Mercurial > repos > public > sbplib
view +scheme/Burgers1d.m @ 1195:a4c00628a39d feature/rv
Add higher order approximations to BDFDerivative
author | Vidar Stiernström <vidar.stiernstrom@it.uu.se> |
---|---|
date | Wed, 07 Aug 2019 13:27:36 +0200 |
parents | 635386c073b9 |
children | f6c571d8f22f |
line wrap: on
line source
classdef Burgers1d < scheme.Scheme properties m % Number of points in each direction, possibly a vector h % Grid spacing grid % Grid order % Order accuracy for the approximation H % Discrete norm D D1 Hi e_l e_r end methods function obj = Burgers1d(g, order, pde_form, fluxSplitting, opSet) default_arg('opSet',@sbp.D2Standard); default_arg('fluxSplitting',@(v)max(abs(v))); assertType(g, 'grid.Cartesian'); m = g.size(); xl = g.getBoundary('l'); xr = g.getBoundary('r'); xlim = {xl, xr}; ops = opSet(m, xlim, order); if (isequal(opSet, @sbp.D1Upwind)) obj.D1 = (ops.Dp + ops.Dm)/2; DissOp = (ops.Dm - ops.Dp)/2; switch pde_form case 'skew-symmetric' obj.D = @(v) -(1/3*obj.D1*(v.*v) + (1/3*spdiag(v)*obj.D1 + fluxSplitting(v)*DissOp)*v); case 'conservative' obj.D = @(v) -(1/2*obj.D1*(v.*v) + fluxSplitting(v)*DissOp*v); end else obj.D1 = ops.D1; switch pde_form case 'skew-symmetric' obj.D = @(v) -(1/3*obj.D1*(v.*v) + 1/3*spdiag(v)*obj.D1*v); case 'conservative' obj.D = @(v) -1/2*obj.D1*(v.*v); end end obj.grid = g; obj.H = ops.H; obj.Hi = ops.HI; obj.e_l = ops.e_l; obj.e_r = ops.e_r; obj.m = m; obj.h = ops.h; obj.order = order; end % Closure functions return the operators applied to the own doamin to close the boundary % Penalty functions return the operators to force the solution. In the case of an interface it returns the operator applied to the other domain. % boundary is a string specifying the boundary e.g. 'l','r' or 'e','w','n','s'. % type is a string specifying the type of boundary condition if there are several. function [closure, penalty] = boundary_condition(obj, boundary, type) default_arg('type','dirichlet'); [e, index, s] = obj.get_boundary_ops(boundary); switch type % Stable dirchlet-like boundary conditions (u+-abs(u))*u/3 % with +- at left/right boundaries case {'D', 'd', 'dirichlet', 'Dirichlet'} % tau = s*e; % closure = @(v) obj.Hi*tau*(((v(index)-s*abs(v(index)))/3)*v(index)); % penalty = -obj.Hi*tau; magnitude = 2/3; tau = @(v) s*magnitude*obj.Hi*e*(v(index)-s*abs(v(index)))/2; closure = @(v) tau(v)*v(index); penalty = @(v) -tau(v); otherwise error('No such boundary condition: type = %s',type); end end % Returns the boundary ops, boundary index and sign for the boundary specified by the string boundary. % The right boundary is considered the positive boundary function [e, index, s] = get_boundary_ops(obj,boundary) switch boundary case {'l','L','left','Left'} e = obj.e_l; index = 1; s = -1; case {'r','R','right','Right'} e = obj.e_r; index = length(e); s = 1; otherwise error('No such boundary: boundary = %s',boundary); end end function [closure, penalty] = interface(obj,boundary,neighbour_scheme,neighbour_boundary) error('An interface function does not exist yet'); end function N = size(obj) N = obj.grid.m; end end end