view +multiblock/setAllInterfaceOptions.m @ 926:60a3bc79835a feature/utux2D

Make multiblock.setAllInterfaceOptions set opts only for those entries where grid.connections indicates interface couplings.
author Martin Almquist <malmquist@stanford.edu>
date Mon, 03 Dec 2018 12:02:27 -0800
parents 93a5c59dd2fb
children
line wrap: on
line source

% g: multiblock grid
% opts: struct of options
% Returns g.nBlocks x g.nBlocks cell array with all interface opts set to opts.
function optsCell = setAllInterfaceOptions(g, opts)

	optsCell = cell(g.nBlocks(), g.nBlocks());
	for i = 1:g.nBlocks()
		for j = 1:g.nBlocks
			if ~isempty(g.connections{i,j})
				optsCell{i,j} = opts;
			end
		end
	end

end