From b34078436a87e6fe4b9b723e190cfeb6076ff60f Mon Sep 17 00:00:00 2001 From: Karthik Chandrashekara Date: Wed, 14 Jul 2021 20:06:59 +0200 Subject: [PATCH] Removed normalization of the velocity distribution of atoms coming out of the oven since the average velocity multiplication in the total flux inside the oven calculation was removed as they cancel each other. --- .../@MOTSimulator/initialVelocitySampling.m | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/MOT Capture Process Simulation/@MOTSimulator/initialVelocitySampling.m b/MOT Capture Process Simulation/@MOTSimulator/initialVelocitySampling.m index a9bc6fa..7235e1f 100644 --- a/MOT Capture Process Simulation/@MOTSimulator/initialVelocitySampling.m +++ b/MOT Capture Process Simulation/@MOTSimulator/initialVelocitySampling.m @@ -16,7 +16,7 @@ function ret = initialVelocitySampling(this) * velocity.^3 .* exp(-velocity.^2 .* (Helper.PhysicsConstants.Dy164Mass / (2 * Helper.PhysicsConstants.BoltzmannConstant ... * this.OvenTemperatureinKelvin))); - c = integral(VelocityDistribution, 0, this.VelocityCutoff)/integral(VelocityDistribution,0,Inf); + c = integral(VelocityDistribution, 0, this.VelocityCutoff); this.ReducedFlux = c * this.ReducedClausingFactor * this.calculateFreeMolecularRegimeFlux();