comparison +scheme/Utux.m @ 1036:8a9393084b30 feature/burgers1d

Change argument order to the "correct" order, i.e providing diffOp specific parameters before the opSet.
author Vidar Stiernström <vidar.stiernstrom@it.uu.se>
date Fri, 18 Jan 2019 08:58:26 +0100
parents d6ab5ceba496
children 433c89bf19e0
comparison
equal deleted inserted replaced
1035:2b9bdb22baec 1036:8a9393084b30
17 e_r 17 e_r
18 end 18 end
19 19
20 20
21 methods 21 methods
22 function obj = Utux(g, order, opSet, a, fluxSplitting) 22 function obj = Utux(g, order, a, fluxSplitting, opSet)
23 default_arg('opSet',@sbp.D2Standard); 23 default_arg('opSet',@sbp.D2Standard);
24 default_arg('a',1); 24 default_arg('a',1);
25 default_arg('fluxSplitting',[]); 25 default_arg('fluxSplitting',[]);
26 26
27 assertType(g, 'grid.Cartesian'); 27 assertType(g, 'grid.Cartesian');