comparison +scheme/Beam2d.m @ 125:d52e5cdb6eff

Fixed some class name, file name errors.
author Jonatan Werpers <jonatan@werpers.com>
date Wed, 27 Jan 2016 17:37:23 +0100
parents 48b6fb693025
children cb2b12246b7e
comparison
equal deleted inserted replaced
124:7e7f90e4954e 125:d52e5cdb6eff
1 classdef SchmBeam2d < noname.Scheme 1 classdef Beam2d < noname.Scheme
2 properties 2 properties
3 m % Number of points in each direction, possibly a vector 3 m % Number of points in each direction, possibly a vector
4 N % Number of points total 4 N % Number of points total
5 h % Grid spacing 5 h % Grid spacing
6 u,v % Grid 6 u,v % Grid
24 gamm_x, gamm_y 24 gamm_x, gamm_y
25 delt_x, delt_y 25 delt_x, delt_y
26 end 26 end
27 27
28 methods 28 methods
29 function obj = SchmBeam2d(m,lim,order,alpha,opsGen) 29 function obj = Beam2d(m,lim,order,alpha,opsGen)
30 default_arg('opsGen',@sbp.Higher); 30 default_arg('opsGen',@sbp.Higher);
31 default_arg('a',1); 31 default_arg('a',1);
32 32
33 if length(m) == 1 33 if length(m) == 1
34 m = [m m]; 34 m = [m m];