comparison +sbp/D1Upwind.m @ 832:5573913a0949 feature/burgers1d

Merged with default, and updated +scheme/Burgers1D accordingly
author Vidar Stiernström <vidar.stiernstrom@it.uu.se>
date Tue, 11 Sep 2018 15:58:35 +0200
parents e1d11b6a68d8
children 111fcbcff2e9
comparison
equal deleted inserted replaced
831:d0934d1143b7 832:5573913a0949
51 51
52 obj.m = m; 52 obj.m = m;
53 obj.borrowing = []; 53 obj.borrowing = [];
54 54
55 end 55 end
56
57 function str = string(obj)
58 str = [class(obj) '_' num2str(obj.order)];
59 end
56 end 60 end
57 61
58 62
59 end 63 end
60 64