comparison +scheme/LaplaceCurvilinear.m @ 539:08b6281ba2a9 feature/grids

Add some todos
author Jonatan Werpers <jonatan@werpers.com>
date Tue, 08 Aug 2017 13:25:19 +0200
parents 56eb7c088bd4
children c5a7a13c03dc
comparison
equal deleted inserted replaced
538:95e41f7a6f1a 539:08b6281ba2a9
35 y_v 35 y_v
36 end 36 end
37 37
38 methods 38 methods
39 % Implements a*div(b*grad(u)) as a SBP scheme 39 % Implements a*div(b*grad(u)) as a SBP scheme
40 % TODO: Implement proper H, it should be the real physical quadrature, the logic quadrature may be but in a separate variable (H_logic?)
41
40 function obj = LaplaceCurvilinear(g ,order, a, b, opSet) 42 function obj = LaplaceCurvilinear(g ,order, a, b, opSet)
41 default_arg('opSet',@sbp.D2Variable); 43 default_arg('opSet',@sbp.D2Variable);
42 default_arg('a', 1); 44 default_arg('a', 1);
43 default_arg('b', 1); 45 default_arg('b', 1);
44 46