Mercurial > repos > public > sbplib
view +noname/calcSol.m @ 754:5264ce57b573 feature/d1_staggered
Bugfix diracDiscr to make it work for grids that are non-equidistant near boundaries.
author | Martin Almquist <malmquist@stanford.edu> |
---|---|
date | Fri, 15 Jun 2018 14:01:13 -0700 |
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