Raised bound on time limit for solver.

This commit is contained in:
Karthik 2025-02-10 22:55:03 +01:00
parent e7a4d39906
commit 77a97b87b2

View File

@ -142,7 +142,7 @@ classdef DipolarGas < handle & matlab.mixin.Copyable
ret = this.TimeStepSize;
end
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;
end
function ret = get.TimeCutOff(this)