annotate +grid/Structured.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 513019e3d855
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
159
ce10ebde3123 Added abstract class Structured.
Jonatan Werpers <jonatan@werpers.com>
parents:
diff changeset
1 classdef Structured < grid.Grid
ce10ebde3123 Added abstract class Structured.
Jonatan Werpers <jonatan@werpers.com>
parents:
diff changeset
2 methods (Abstract)
161
73bc43c7379e Added function for reshaping grid functions. Added size() method to structured grid.
Jonatan Werpers <jonatan@werpers.com>
parents: 159
diff changeset
3 % Returns the size of the grid in each dimension m = [mx my mz ...]
174
513019e3d855 Added a comment regardning structured grids.
Jonatan Werpers <jonatan@werpers.com>
parents: 173
diff changeset
4 m = size(obj); % Is this a good idea? Isn't immersed a structured grid?
173
f7bb2a94d291 Added functionallity for storing grid scaling on structured grids.
Jonatan Werpers <jonatan@werpers.com>
parents: 161
diff changeset
5 h = scaling(obj);
159
ce10ebde3123 Added abstract class Structured.
Jonatan Werpers <jonatan@werpers.com>
parents:
diff changeset
6 end
ce10ebde3123 Added abstract class Structured.
Jonatan Werpers <jonatan@werpers.com>
parents:
diff changeset
7 end