- #1
person123
- 328
- 52
- TL;DR Summary
- How does the random seed influence the random value?
I want to create multiple molecular dynamics simulations using LAMMPS which are different only in the initial velocity of the atoms. LAMMPS allows you to use a random seed to generate an initial velocity. I plan to just use successive numbers, so if there are 5 simulations, the seeds would be 1,2,3,4, and 5.
I just want to make sure that the random values a seed returns isn't influenced by how large the number is. For example, would the results from a random seed of 2 be any more likely to be more similar to 3 than say 548? Would just choosing successive integers for the random seed be an acceptable way to generate random values?
I just want to make sure that the random values a seed returns isn't influenced by how large the number is. For example, would the results from a random seed of 2 be any more likely to be more similar to 3 than say 548? Would just choosing successive integers for the random seed be an acceptable way to generate random values?