comparison +scheme/Wave.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 SchmWave < noname.Scheme 1 classdef Wave < 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 h % Grid spacing 4 h % Grid spacing
5 x % Grid 5 x % Grid
6 order % Order accuracy for the approximation 6 order % Order accuracy for the approximation
18 d1_r 18 d1_r
19 gamm 19 gamm
20 end 20 end
21 21
22 methods 22 methods
23 function obj = SchmWave(m,xlim,order,alpha) 23 function obj = Wave(m,xlim,order,alpha)
24 default_arg('a',1); 24 default_arg('a',1);
25 [x, h] = util.get_grid(xlim{:},m); 25 [x, h] = util.get_grid(xlim{:},m);
26 26
27 ops = sbp.Ordinary(m,h,order); 27 ops = sbp.Ordinary(m,h,order);
28 28