Mercurial > repos > public > sbplib
view +multiblock/BoundaryGroup.m @ 578:1fe16b34f114 feature/grids
Add a type check for the grids cell array and a note regarding missplaced method
author | Jonatan Werpers <jonatan@werpers.com> |
---|---|
date | Thu, 07 Sep 2017 09:18:55 +0200 |
parents | 6712655953d3 |
children |
line wrap: on
line source
% BoundaryGroup defines a boundary grouping in a multiblock grid. % It workds like a cell array and collects boundary identifiers % Within the multiblock package a BoundaryGroup is a valid boundary identifier as well. classdef BoundaryGroup < Cell methods function obj = BoundaryGroup(data) obj = obj@Cell(data); end function display(obj, name) disp(' ') disp([name, ' =']) disp(' ') fprintf(' BoundaryGroup%s\n\n', toString(obj.data)); end end end