2021-06-29 15:44:28 +02:00
|
|
|
function ret = velocityDistributionFunction(this, velocity)
|
2021-07-11 14:44:43 +02:00
|
|
|
ret = sqrt(2 / pi) * sqrt(Helper.PhysicsConstants.Dy164Mass/(Helper.PhysicsConstants.BoltzmannConstant * this.OvenTemperatureinKelvin))^3 ...
|
2021-06-29 15:44:28 +02:00
|
|
|
* velocity^3 * exp(-velocity^2.*(Helper.PhysicsConstants.Dy164Mass / (2 * Helper.PhysicsConstants.BoltzmannConstant ...
|
|
|
|
* this.OvenTemperatureinKelvin)));
|
|
|
|
end
|