annotate +grid/Structured.m @ 1015:9b7fcd5e4480 feature/advectionRV

Debug ResidualViscosity - Pass exact time derivative to RungeKuttaExteriorRV and use that for evaluating the residual - Start bootstrapping from later time level with higher order bdf
author Vidar Stiernström <vidar.stiernstrom@it.uu.se>
date Thu, 06 Dec 2018 17:03:22 +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