Changed max limit of the number of atoms/trajectories to be computed from 20000 to 50000.
This commit is contained in:
parent
6a679bc26e
commit
e29c923723
@ -108,7 +108,7 @@ classdef MOTCaptureProcess < handle & matlab.mixin.Copyable
|
|||||||
ret = this.SimulationTime;
|
ret = this.SimulationTime;
|
||||||
end
|
end
|
||||||
function set.NumberOfAtoms(this, val)
|
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;
|
this.NumberOfAtoms = val;
|
||||||
end
|
end
|
||||||
function ret = get.NumberOfAtoms(this)
|
function ret = get.NumberOfAtoms(this)
|
||||||
|
Loading…
Reference in New Issue
Block a user