Changed max limit of the number of atoms/trajectories to be computed from 20000 to 50000.

This commit is contained in:
Karthik 2021-08-19 12:41:11 +02:00
parent 6a679bc26e
commit e29c923723

View File

@ -108,7 +108,7 @@ classdef MOTCaptureProcess < handle & matlab.mixin.Copyable
ret = this.SimulationTime;
end
function set.NumberOfAtoms(this, val)
assert(val <= 20000, 'Not time efficient to compute for atom numbers larger than 20,000!');
assert(val <= 50000, '!!Not time efficient to compute for atom numbers larger than 50,000!!');
this.NumberOfAtoms = val;
end
function ret = get.NumberOfAtoms(this)