Mercurial > repos > public > sbplib
annotate +grid/Structured.m @ 577:e45c9b56d50d feature/grids
Add an Empty grid class
The need turned up for the flexural code when we may or may not have a grid for the open water and want to plot that solution.
In case there is no open water we need an empty grid to plot the empty gridfunction against to avoid errors.
author | Jonatan Werpers <jonatan@werpers.com> |
---|---|
date | Thu, 07 Sep 2017 09:16:12 +0200 |
parents | 513019e3d855 |
children |
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 |