view +noname/calcSol.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 127e562bd6d3
children
line wrap: on
line source

% Calculates the solution of a discr at a given time using aligned timesteps.
% Returns the solution as a grid function as defined in +grid
function gf = calculateSolution(discr, T, tsOpt)
    k_max = discr.getTimestep(tsOpt);
    [k,N] = alignedTimestep(k_max,T);
    tsOpt.k = k;
    ts = discr.getTimestepper(tsOpt);

    gf = ts.stepN(N-ts.n);
end