-
Notifications
You must be signed in to change notification settings - Fork 4
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
ClusterTimeSimulation #19
base: master
Are you sure you want to change the base?
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think it would be a good idea to run a formatter like JuliaFormatter.jl over the code and also add some tests for MSD. (You can just copy the starting conditions of MQD and then calculate the expected values by hand)
test/test_Simulation.jl
Outdated
world2 = World( | ||
v0=1.0, | ||
n_dogs=100, | ||
boxsize=50.0, | ||
motion=BrownianMotion(noise=0.5, friction=1.0), | ||
sheeps=DenseSheeps(20, n_sheeps=20), | ||
) | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
generally speaking it is not a good idea to have more collectors than items, since you might end up in the situation where all items are picked up and in the best case the simulation will just get stuck in that state
For posteriority:
|
Fix #6 closes #18
Fix #10