Mercurial > repos > public > sbplib
view +multiblock/setAllInterfaceTypes.m @ 1199:dfb1b84b63f4 feature/joingrids
Add multiblock.joinGrids, which joins several multiblock grids into one.
author | Martin Almquist <malmquist@stanford.edu> |
---|---|
date | Sat, 17 Aug 2019 16:20:07 -0700 |
parents | dd95470d4baf |
children |
line wrap: on
line source
% Create interface configuration with a single type for all interfaces % g -- multiblock grid % type -- type for all interfaces function intfTypes = setAllInterfaceTypes(g, type) intfTypes = cell(g.nBlocks(), g.nBlocks()); for i = 1:g.nBlocks() for j = 1:g.nBlocks() if ~isempty(g.connections{i,j}) intfTypes{i,j} = type; end end end end