From bd97ffc5d8ff4e0dbe300163c61e4521cfb3269f Mon Sep 17 00:00:00 2001 From: Karthik Chandrashekara Date: Mon, 19 Jul 2021 12:42:34 +0200 Subject: [PATCH] Changed the default values of the radius and waist of the Blue and Blue Sideband beams. --- +Simulator/@Beams/Beams.m | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/+Simulator/@Beams/Beams.m b/+Simulator/@Beams/Beams.m index d225d7a..f9ddf59 100644 --- a/+Simulator/@Beams/Beams.m +++ b/+Simulator/@Beams/Beams.m @@ -5,8 +5,8 @@ classdef Beams < handle & matlab.mixin.Copyable BlueBeamDefault = struct('Alias', 'Blue', ... 'Power', 400e-3, ... 'Detuning', -1.39*Helper.PhysicsConstants.BlueLinewidth, ... - 'Radius', 16.67e-3, ... - 'Waist', 15e-3, ... + 'Radius', 35e-3, ... + 'Waist', 16.67e-3, ... 'WaveNumber',2*pi/Helper.PhysicsConstants.BlueWavelength, ... 'Linewidth', Helper.PhysicsConstants.BlueLinewidth, ... 'SaturationIntensity', 0.1 * (2 * pi^2 / 3) * ... @@ -17,8 +17,8 @@ classdef Beams < handle & matlab.mixin.Copyable BlueSidebandBeamDefault = struct('Alias', 'BlueSideband', ... 'Power', 200e-3, ... 'Detuning', -3*Helper.PhysicsConstants.BlueLinewidth, ... - 'Radius', 16.67e-3, ... - 'Waist', 10e-3, ... + 'Radius', 35e-3, ... + 'Waist', 16.67e-3, ... 'WaveNumber',2*pi/Helper.PhysicsConstants.BlueWavelength, ... 'Linewidth', Helper.PhysicsConstants.BlueLinewidth, ... 'SaturationIntensity', 0.1 * (2 * pi^2 / 3) * ...