Mercurial > repos > public > sbplib
view +multiblock/evalOn.m @ 1037:2d7ba44340d0 feature/burgers1d
Pass scheme specific parameters as cell array. This will enabale constructDiffOps to be more general. In addition, allow for schemes returning function handles as diffOps, which is currently how non-linear schemes such as Burgers1d are implemented.
author | Vidar Stiernström <vidar.stiernstrom@it.uu.se> |
---|---|
date | Fri, 18 Jan 2019 09:02:02 +0100 |
parents | 442ec6c77c3f |
children | 92dc0a3b5d5d |
line wrap: on
line source
% Evaluate different function handle for each block in a multiblock.Grid % Function handles may optionaly take a time argument % f -- cell array of function handles % f{i} = f_i(t,x,y,...) % t -- optional time point. If not specified, it is assumed that the functions take only spatial arguments. function gf = evalOn(g, f, t) assertType(g, 'multiblock.Grid'); assertType(f, 'cell'); default_arg('t', []); grids = g.grids; nBlocks = length(grids); gf = cell(nBlocks, 1); if isempty(t) for i = 1:nBlocks gf{i} = grid.evalOn(grids{i}, f{i}); end else for i = 1:nBlocks gf{i} = grid.evalOn(grids{i}, @(varargin)f{i}(t,varargin{:})); end end gf = blockmatrix.toMatrix(gf); end