annotate +grid/Structured.m @ 774:66eb4a2bbb72 feature/grids

Remove default scaling of the system. The scaling doens't seem to help actual solutions. One example that fails in the flexural code. With large timesteps the solutions seems to blow up. One particular example is profilePresentation on the tdb_presentation_figures branch with k = 0.0005
author Jonatan Werpers <jonatan@werpers.com>
date Wed, 18 Jul 2018 15:42:52 -0700
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