Latest execution scripts, minor modification to analysis script for finding optimal system sizes.
This commit is contained in:
parent
201e4a39c6
commit
4af0ce726a
@ -68,5 +68,5 @@ function MinEnergyDataArray = analyzeGSWavefunction_optimal_system_size(folder_p
|
|||||||
ylabel(cbar1,'$E_{var}$','FontSize',16,'Rotation',270)
|
ylabel(cbar1,'$E_{var}$','FontSize',16,'Rotation',270)
|
||||||
xlabel('$L_x$','fontsize',16,'interpreter','latex');
|
xlabel('$L_x$','fontsize',16,'interpreter','latex');
|
||||||
ylabel('$L_y$','fontsize',16,'interpreter','latex');
|
ylabel('$L_y$','fontsize',16,'interpreter','latex');
|
||||||
title('Minimum variational energy for different system sizes', 'FontSize', 16);
|
title('Minimum variational energy for different unit cell sizes', 'FontSize', 16);
|
||||||
end
|
end
|
||||||
|
@ -326,18 +326,23 @@ JobNumber = 1;
|
|||||||
[contrast, period_X, period_Y] = Scripts.analyzeGSWavefunction_in_plane_trap(SaveDirectory, JobNumber);
|
[contrast, period_X, period_Y] = Scripts.analyzeGSWavefunction_in_plane_trap(SaveDirectory, JobNumber);
|
||||||
|
|
||||||
%%
|
%%
|
||||||
SaveDirectory = './Results/Data_TiltingOfDipoles/TransitionAngle/OptimalSystemSize/Hz500/Degree0';
|
SaveDirectory = './Results/Data_TiltingOfDipoles/TransitionAngle/OptimalSystemSize/Hz500/Degree15';
|
||||||
% Define the desired range for Lx and Ly
|
% Define the desired range for Lx and Ly
|
||||||
Lx_Range = 2:0.4:6; % Extend Lx from 5 to 10
|
Lx_Range = 4:0.4:11; % Extend Lx from 5 to 10
|
||||||
Ly_Range = 2:0.4:6; % Extend Ly from 5 to 10
|
Ly_Range = 4:0.4:11; % Extend Ly from 5 to 10
|
||||||
MinEnergyDataArray = Scripts.analyzeGSWavefunction_optimal_system_size(SaveDirectory, Lx_Range, Ly_Range);
|
MinEnergyDataArray = Scripts.analyzeGSWavefunction_optimal_system_size(SaveDirectory, Lx_Range, Ly_Range);
|
||||||
%% - Analysis
|
%% - Analysis
|
||||||
SaveDirectory = './Results/Data_TiltingOfDipoles/HarmonicTrap/AspectRatio/AR2_8';
|
SaveDirectory = './Results/Data_TiltingOfDipoles/HarmonicTrap/AspectRatio/AR2_8';
|
||||||
JobNumber = 0;
|
JobNumber = 0; % 79
|
||||||
|
% JobNumber = 1; % 80
|
||||||
|
% JobNumber = 2; % 81
|
||||||
Plotter.visualizeGSWavefunction2D(SaveDirectory, JobNumber)
|
Plotter.visualizeGSWavefunction2D(SaveDirectory, JobNumber)
|
||||||
[contrast, period_X, period_Y] = Scripts.analyzeGSWavefunction_in_plane_trap(SaveDirectory, JobNumber);
|
[contrast, period_X, period_Y] = Scripts.analyzeGSWavefunction_in_plane_trap(SaveDirectory, JobNumber);
|
||||||
%% - Analysis
|
%% - Analysis
|
||||||
SaveDirectory = './Results/Data_TiltingOfDipoles/HarmonicTrap/AspectRatio/AR4_0';
|
SaveDirectory = './Results/Data_TiltingOfDipoles/HarmonicTrap/AspectRatio/AR3_7';
|
||||||
JobNumber = 0;
|
% JobNumber = 0; % 80
|
||||||
|
% JobNumber = 1; % 81
|
||||||
|
JobNumber = 2; % 82
|
||||||
|
% JobNumber = 3; % 83
|
||||||
Plotter.visualizeGSWavefunction2D(SaveDirectory, JobNumber)
|
Plotter.visualizeGSWavefunction2D(SaveDirectory, JobNumber)
|
||||||
[contrast, period_X, period_Y] = Scripts.analyzeGSWavefunction_in_plane_trap(SaveDirectory, JobNumber);
|
[contrast, period_X, period_Y] = Scripts.analyzeGSWavefunction_in_plane_trap(SaveDirectory, JobNumber);
|
@ -5,18 +5,27 @@ ppum = 1250;
|
|||||||
|
|
||||||
%% theta = 0
|
%% theta = 0
|
||||||
|
|
||||||
idx = 0;
|
Lx = 8:0.4:11;
|
||||||
|
Ly = 4:0.4:11;
|
||||||
|
cluster = parcluster;
|
||||||
|
|
||||||
% Loop over Lx and Ly values
|
% Create a combined index for all i, j pairs
|
||||||
for Lx = 2:0.4:6
|
[I, J] = ndgrid(1:numel(Lx), 1:numel(Ly));
|
||||||
for Ly = 2:0.4:6
|
totalIterations = numel(I);
|
||||||
|
|
||||||
|
% Parallel loop over all combinations of i, j
|
||||||
|
parfor (k = 1:totalIterations, cluster)
|
||||||
|
i = I(k);
|
||||||
|
j = J(k);
|
||||||
|
lx = Lx(i);
|
||||||
|
ly = Ly(j);
|
||||||
|
|
||||||
% Initialize OptionsStruct
|
% Initialize OptionsStruct
|
||||||
OptionsStruct = struct;
|
OptionsStruct = struct;
|
||||||
|
|
||||||
% Assign values to OptionsStruct
|
% Assign values to OptionsStruct
|
||||||
OptionsStruct.NumberOfAtoms = ppum * (Lx*Ly);
|
OptionsStruct.NumberOfAtoms = ppum * (lx*ly);
|
||||||
OptionsStruct.DipolarPolarAngle = 0;
|
OptionsStruct.DipolarPolarAngle = deg2rad(15);
|
||||||
OptionsStruct.DipolarAzimuthAngle = 0;
|
OptionsStruct.DipolarAzimuthAngle = 0;
|
||||||
OptionsStruct.ScatteringLength = 75.00;
|
OptionsStruct.ScatteringLength = 75.00;
|
||||||
|
|
||||||
@ -24,29 +33,28 @@ for Lx = 2:0.4:6
|
|||||||
OptionsStruct.TrapPotentialType = 'None';
|
OptionsStruct.TrapPotentialType = 'None';
|
||||||
|
|
||||||
OptionsStruct.NumberOfGridPoints = [128, 128];
|
OptionsStruct.NumberOfGridPoints = [128, 128];
|
||||||
OptionsStruct.Dimensions = [Lx, Ly];
|
OptionsStruct.Dimensions = [lx, ly];
|
||||||
OptionsStruct.TimeStepSize = 1E-4; % in s
|
OptionsStruct.TimeStepSize = 1E-3; % in s
|
||||||
OptionsStruct.MinimumTimeStepSize = 1E-5; % in s
|
OptionsStruct.MinimumTimeStepSize = 1E-5; % in s
|
||||||
OptionsStruct.TimeCutOff = 1E6; % in s
|
OptionsStruct.TimeCutOff = 2E6; % in s
|
||||||
OptionsStruct.EnergyTolerance = 5E-10;
|
OptionsStruct.EnergyTolerance = 5E-10;
|
||||||
OptionsStruct.ResidualTolerance = 1E-05;
|
OptionsStruct.ResidualTolerance = 1E-05;
|
||||||
OptionsStruct.NoiseScaleFactor = 0.05;
|
OptionsStruct.NoiseScaleFactor = 0.05;
|
||||||
OptionsStruct.IncludeDDICutOff = false;
|
OptionsStruct.IncludeDDICutOff = false;
|
||||||
|
|
||||||
OptionsStruct.MaxIterations = 10;
|
OptionsStruct.MaxIterations = 10;
|
||||||
OptionsStruct.VariationalWidth = 1.00;
|
OptionsStruct.VariationalWidth = 1.20;
|
||||||
OptionsStruct.WidthLowerBound = 0.01;
|
OptionsStruct.WidthLowerBound = 0.01;
|
||||||
OptionsStruct.WidthUpperBound = 12;
|
OptionsStruct.WidthUpperBound = 12;
|
||||||
OptionsStruct.WidthCutoff = 1e-2;
|
OptionsStruct.WidthCutoff = 1e-2;
|
||||||
|
|
||||||
OptionsStruct.PlotLive = false;
|
OptionsStruct.PlotLive = false;
|
||||||
OptionsStruct.JobNumber = idx;
|
OptionsStruct.JobNumber = (i - 1) * num_inner + j;
|
||||||
OptionsStruct.RunOnGPU = true;
|
OptionsStruct.RunOnGPU = true;
|
||||||
OptionsStruct.SaveData = true;
|
OptionsStruct.SaveData = true;
|
||||||
OptionsStruct.SaveDirectory = sprintf('./Results/Data_TiltingOfDipoles/TransitionAngle/OptimalSystemSize/Hz500/Degree%i', rad2deg(OptionsStruct.DipolarPolarAngle));
|
OptionsStruct.SaveDirectory = sprintf('./Results/Data_TiltingOfDipoles/TransitionAngle/OptimalSystemSize/Hz500/Degree%i', round(rad2deg(OptionsStruct.DipolarPolarAngle)));
|
||||||
|
|
||||||
options = Helper.convertstruct2cell(OptionsStruct);
|
options = Helper.convertstruct2cell(OptionsStruct);
|
||||||
clear OptionsStruct
|
|
||||||
|
|
||||||
solver = VariationalSolver2D.DipolarGas(options{:});
|
solver = VariationalSolver2D.DipolarGas(options{:});
|
||||||
pot = VariationalSolver2D.Potentials(options{:});
|
pot = VariationalSolver2D.Potentials(options{:});
|
||||||
@ -54,7 +62,4 @@ for Lx = 2:0.4:6
|
|||||||
|
|
||||||
% Run Solver
|
% Run Solver
|
||||||
[Params, Transf, psi, V, VDk] = solver.run();
|
[Params, Transf, psi, V, VDk] = solver.run();
|
||||||
|
|
||||||
idx = idx + 1;
|
|
||||||
end
|
|
||||||
end
|
end
|
||||||
|
Loading…
Reference in New Issue
Block a user