Mercurial > repos > public > sbplib
annotate +parametrization/old/shape_linesegments.m @ 1031:2ef20d00b386 feature/advectionRV
For easier comparison, return both the first order and residual viscosity when evaluating the residual. Add the first order and residual viscosity to the state of the RungekuttaRV time steppers
author | Vidar Stiernström <vidar.stiernstrom@it.uu.se> |
---|---|
date | Thu, 17 Jan 2019 10:25:06 +0100 |
parents | 81e0ead29431 |
children |
rev | line source |
---|---|
0 | 1 % Converts a shape into a cell array of linesegments shorter than h. |
2 function l = shape_linesegments(s,h) | |
3 l = {}; | |
4 | |
5 for i = 1:length(s) | |
248
81e0ead29431
Fixed package names in +parametrization
Jonatan Werpers <jonatan@werpers.com>
parents:
151
diff
changeset
|
6 t = parametrization.curve_discretise(s{i},h); |
81e0ead29431
Fixed package names in +parametrization
Jonatan Werpers <jonatan@werpers.com>
parents:
151
diff
changeset
|
7 l = [l, parametrization.curve_linesegments(s{i},t)]; |
0 | 8 end |
9 end |