-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Read parameters for VelocityBoltzmann from NQCDynamics.jl simulation. #9
Read parameters for VelocityBoltzmann from NQCDynamics.jl simulation. #9
Comments
I don't quite understand this suggestion. VelocityBoltzmann can already deal with multidimensional systems (aribtrary I am asking as I am currently working on that code. |
My idea was to make generating a Boltzmann distribution more convenient when a |
This makes sense. The solution I came up with is also not particularly nice. it works for now, but the interface could be easily improved. |
This needs to be implemented in NQCDynamics.jl unless we want to draw Simulations out into a separate package. Would also be useful to account for frozen atoms in simulations automatically → Generate guaranteed 0 velocity distributions for those atoms instead of Boltzmann. #12 makes multiple types of distributions for a UnivariateArray possible, so this can be done automatically in NQCDynamics.jl or manually by starting with a Matrix{UnivariateDistribution}. |
With Julia 1.9 enabling package extensions, it should be possible to add extra methods to initialise a
VelocityBoltzmann
distribution using an NQCD simulation, e.g.VelocityBoltzmann(300u"K", simulation)
, using it to determine the atomic masses and total degrees of freedom to sample.This would be useful in many cases where a
DynamicalDistribution
with a single Velocity Boltzmann distribution should affect all atoms in a system.The text was updated successfully, but these errors were encountered: