Mercurial > repos > public > sbplib
view +multiblock/BoundaryGroup.m @ 907:c0652621bd69 feature/utux2D
Add new class multiblock.InterfaceOptions whose instances are passed to multiblock.DiffOp.
author | Martin Almquist <malmquist@stanford.edu> |
---|---|
date | Fri, 23 Nov 2018 20:12:54 -0800 |
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