2021-06-29 15:44:28 +02:00
|
|
|
function ret = calculateFreeMolecularRegimeFlux(this)
|
|
|
|
%This function calculate the total flux of atoms coming out from a tube
|
|
|
|
%See Expected atomic flux section in Barbiero
|
2021-07-03 10:19:27 +02:00
|
|
|
Dy164VapourPressure = 133.322*exp(11.4103-2.3785e+04./(-219.4821+this.OvenTemperatureinKelvin)).*100; % Vapor Pressure Dysprosium for the given oven temperature
|
|
|
|
Dy164DensityinOven = Dy164VapourPressure/(Helper.PhysicsConstants.BoltzmannConstant*this.OvenTemperatureinKelvin);
|
2021-07-14 20:04:34 +02:00
|
|
|
ret = Helper.PhysicsConstants.Dy164IsotopicAbundance * 1/4 * Dy164DensityinOven * pi * this.NozzleRadius.^2;
|
2021-07-11 06:28:50 +02:00
|
|
|
% Needs to be multiplied with the "Clausing Factor" which here would be
|
|
|
|
% the probability not for the full solid angle but the angle subtended
|
|
|
|
% by the aperture of the oven at its mouth.
|
|
|
|
end
|