comparison +rv/+time/RungekuttaExteriorRvMg.m @ 1162:0ec06ca3fc36 feature/rv

Add missing semicolons
author Vidar Stiernström <vidar.stiernstrom@it.uu.se>
date Thu, 27 Jun 2019 11:03:40 +0200
parents 76e3bb7836cf
children 745ae0d134c9
comparison
equal deleted inserted replaced
1161:856bd6291d17 1162:0ec06ca3fc36
30 obj.rkScheme = @(v,t,dt,F) time.rk.rungekutta(v, t , dt, F, coeffs); 30 obj.rkScheme = @(v,t,dt,F) time.rk.rungekutta(v, t , dt, F, coeffs);
31 end 31 end
32 32
33 obj.RV = RV; 33 obj.RV = RV;
34 obj.DvDt = DvDt; 34 obj.DvDt = DvDt;
35 obj.v_unstable = 0*v0 35 obj.v_unstable = 0*v0;
36 obj.viscosity = 0*v0 36 obj.viscosity = 0*v0;
37 end 37 end
38 38
39 function [v, t] = getV(obj) 39 function [v, t] = getV(obj)
40 v = obj.v; 40 v = obj.v;
41 t = obj.t; 41 t = obj.t;