Mercurial > repos > public > sbplib
view +rv/+time/RungekuttaInteriorRv.m @ 1152:010bb2677230 feature/rv
Clean up in +rv/+time. Make the time stepping more efficient by not storing unnessecary properties in the RK-RV time steppers
author | Vidar Stiernström <vidar.stiernstrom@it.uu.se> |
---|---|
date | Tue, 05 Mar 2019 10:53:34 +0100 |
parents | 2ef20d00b386 |
children |
line wrap: on
line source
classdef RungekuttaInteriorRv < time.Timestepper properties F % RHS of the ODE k % Time step t % Time point v % Solution vector n % Time level coeffs % The coefficents used for the RK time integration RV % Residual Viscosity DvDt % Function for computing the time deriative used for the RV evaluation end methods function obj = RungekuttaInteriorRv(F, k, t0, v0, RV, DvDt, order) obj.F = F; obj.k = k; obj.t = t0; obj.v = v0; obj.n = 0; % Extract the coefficients for the specified order % used for the RK updates from the Butcher tableua. [s,a,b,c] = time.rk.butcherTableau(order); obj.coeffs = struct('s',s,'a',a,'b',b,'c',c); obj.RV = RV; obj.DvDt = DvDt; end function [v, t] = getV(obj) v = obj.v; t = obj.t; end function state = getState(obj) dvdt = obj.DvDt(obj.v); [viscosity, Df, firstOrderViscosity, residualViscosity] = obj.RV.evaluate(obj.v, dvdt); state = struct('v', obj.v, 'dvdt', dvdt, 'Df', Df, 'viscosity', viscosity, 'residualViscosity', residualViscosity, 'firstOrderViscosity', firstOrderViscosity, 't', obj.t); end % Advances the solution vector one time step using the Runge-Kutta method given by % obj.coeffs, updating the Residual Viscosity in each Runge-Kutta stage function obj = step(obj) obj.v = rv.time.rungekuttaRV(obj.v, obj.t, obj.k, obj.F, obj.RV, obj.DvDt, obj.coeffs); obj.t = obj.t + obj.k; obj.n = obj.n + 1; end end end