comparison +multiblock/BoundaryGroup.m @ 886:8894e9c49e40 feature/timesteppers

Merge with default for latest changes
author Vidar Stiernström <vidar.stiernstrom@it.uu.se>
date Thu, 15 Nov 2018 16:36:21 -0800
parents 6712655953d3
children
comparison
equal deleted inserted replaced
816:b5e5b195da1e 886:8894e9c49e40
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