comparison +multiblock/BoundaryGroup.m @ 820:501750fbbfdb

Merge with feature/grids
author Jonatan Werpers <jonatan@werpers.com>
date Fri, 07 Sep 2018 14:40:58 +0200
parents 6712655953d3
children
comparison
equal deleted inserted replaced
819:fdf0ef9150f4 820:501750fbbfdb
1 % BoundaryGroup defines a boundary grouping in a multiblock grid.
2 % It workds like a cell array and collects boundary identifiers
3 % Within the multiblock package a BoundaryGroup is a valid boundary identifier as well.
4 classdef BoundaryGroup < Cell
5 methods
6 function obj = BoundaryGroup(data)
7 obj = obj@Cell(data);
8 end
9
10 function display(obj, name)
11
12 disp(' ')
13 disp([name, ' ='])
14 disp(' ')
15
16 fprintf(' BoundaryGroup%s\n\n', toString(obj.data));
17 end
18 end
19 end