comparison +grid/Multiblock.m @ 155:cf748f33cd5b feature/grids

Removed some extra lines, added some notes and comments. Fixed classname.
author Jonatan Werpers <jonatan@werpers.com>
date Thu, 18 Feb 2016 17:17:41 +0100
parents 7aee9eba3bb8
children c700b26ad304
comparison
equal deleted inserted replaced
154:c7b2f645101f 155:cf748f33cd5b
1 classdef Grid < grid.Grid 1 classdef Multiblock < grid.Grid
2 % General multiblock grid 2 % General multiblock grid
3 methods (Abstract) 3 methods (Abstract)
4 % NBlocks returns the number of blocks in the grid. 4 % NBlocks returns the number of blocks in the grid.
5 o = NBlocks(obj); 5 o = NBlocks(obj);
6 6
9 9
10 % Grids returns a cell array of all the grids in the multiblock grid. 10 % Grids returns a cell array of all the grids in the multiblock grid.
11 gs = Grids(obj); 11 gs = Grids(obj);
12 end 12 end
13 end 13 end
14
15
16 % Should define boundaries and connections between grids.