Modified the amount of noise added to psi.
This commit is contained in:
parent
4818ca83c9
commit
d3db12c84e
@ -6,12 +6,12 @@
|
||||
|
||||
OptionsStruct = struct;
|
||||
|
||||
OptionsStruct.NumberOfAtoms = 1.24E5;
|
||||
OptionsStruct.NumberOfAtoms = 1E5;
|
||||
OptionsStruct.DipolarPolarAngle = 0;
|
||||
OptionsStruct.DipolarAzimuthAngle = 0;
|
||||
OptionsStruct.ScatteringLength = 86;
|
||||
|
||||
OptionsStruct.TrapFrequencies = [44.97, 10.4, 126.3];
|
||||
OptionsStruct.TrapFrequencies = [10, 10, 72.4];
|
||||
OptionsStruct.TrapDepth = 5;
|
||||
OptionsStruct.BoxSize = 15;
|
||||
OptionsStruct.TrapPotentialType = 'Harmonic';
|
||||
|
@ -47,7 +47,7 @@ function [Params, Transf, psi, V, VDk] = run(this)
|
||||
r = normrnd(0,1,size(psi));
|
||||
theta = rand(size(psi));
|
||||
noise = r.*exp(2*pi*1i*theta);
|
||||
psi = psi + 4*noise;
|
||||
psi = psi + 0.25*noise;
|
||||
|
||||
% --- Run ---
|
||||
[psi] = this.propagateWavefunction(psi, Params, VParams, Transf, VDk, V, t_idx, Observ);
|
||||
|
@ -8,7 +8,7 @@
|
||||
#SBATCH --gres=gpu:1
|
||||
#SBATCH --mem=4G
|
||||
# Estimated wallclock time for job
|
||||
#SBATCH --time=02:00:00
|
||||
#SBATCH --time=04:00:00
|
||||
#SBATCH --job-name=simulation
|
||||
#SBATCH --error=simulation.err
|
||||
#SBATCH --output=simulation.out
|
||||
|
Loading…
Reference in New Issue
Block a user