Raised bound on time limit for solver.
This commit is contained in:
parent
e7a4d39906
commit
77a97b87b2
@ -142,7 +142,7 @@ classdef DipolarGas < handle & matlab.mixin.Copyable
|
|||||||
ret = this.TimeStepSize;
|
ret = this.TimeStepSize;
|
||||||
end
|
end
|
||||||
function set.TimeCutOff(this, val)
|
function set.TimeCutOff(this, val)
|
||||||
assert(val <= 2E6, 'Not efficient to compute for time spans longer than 2E6 seconds!');
|
assert(val <= 5E6, 'Not efficient to compute for time spans longer than 2E6 seconds!');
|
||||||
this.TimeCutOff = val;
|
this.TimeCutOff = val;
|
||||||
end
|
end
|
||||||
function ret = get.TimeCutOff(this)
|
function ret = get.TimeCutOff(this)
|
||||||
|
Loading…
Reference in New Issue
Block a user