From de683c7d6b23129e7efd4ea90667d2d2f22a19fd Mon Sep 17 00:00:00 2001 From: Karthik Chandrashekara Date: Sun, 11 Jul 2021 21:17:49 +0200 Subject: [PATCH] Minor edits to reflect changes like the new Push beam flag. --- MOT Capture Process Simulation/test_MOTSimulator.m | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/MOT Capture Process Simulation/test_MOTSimulator.m b/MOT Capture Process Simulation/test_MOTSimulator.m index ce51070..632899c 100644 --- a/MOT Capture Process Simulation/test_MOTSimulator.m +++ b/MOT Capture Process Simulation/test_MOTSimulator.m @@ -7,7 +7,8 @@ OptionsStruct.SimulationMode = '2D'; OptionsStruct.TimeStep = 50e-06; % in s OptionsStruct.SimulationTime = 4e-03; % in s OptionsStruct.SpontaneousEmission = true; -OptionsStruct.Sideband = false; +OptionsStruct.Sideband = true; +OptionsStruct.PushBeam = true; OptionsStruct.Gravity = true; OptionsStruct.BackgroundCollision = true; OptionsStruct.SaveData = false; @@ -115,13 +116,13 @@ QuantityOfInterestArray = LoadingRateArray; OptionsStruct = struct; OptionsStruct.RescalingFactorForParameter = 1000; OptionsStruct.XLabelString = 'Cooling Beam Power (mW)'; -OptionsStruct.RescalingFactorForYQuantity = 1e-10; +OptionsStruct.RescalingFactorForYQuantity = 1e-11; OptionsStruct.ErrorsForYQuantity = true; OptionsStruct.ErrorsArray = StandardErrorArray; OptionsStruct.CIForYQuantity = true; OptionsStruct.CIArray = ConfidenceIntervalArray; OptionsStruct.RemoveOutliers = true; -OptionsStruct.YLabelString = 'Loading rate (x 10^{10} atoms/s)'; +OptionsStruct.YLabelString = 'Loading rate (x 10^{11} atoms/s)'; OptionsStruct.TitleString = sprintf('Magnetic Gradient = %.0f (G/cm)', Simulator.MagneticGradient * 100); options = Helper.convertstruct2cell(OptionsStruct);