view +multiblock/setAllInterfaceTypes.m @ 1001:514a98f9f90d feature/getBoundaryOp

Add getBoundaryOperator and getBoundaryQuadrature as abstract methods in scheme.Scheme
author Jonatan Werpers <jonatan@werpers.com>
date Wed, 16 Jan 2019 16:35:01 +0100
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