sot / pyger

Calculate allowed dwell times given spacecraft thermal constraints.
BSD 3-Clause "New" or "Revised" License
1 stars 0 forks source link

Use multiprocessing to parallelize constraint computations #4

Open taldcroft opened 11 years ago

taldcroft commented 11 years ago

@matthewdahmer - it might be pretty easy (and a good exercise) to try making a multiprocess task queue to run the various models. You could probably get a factor of a few speedup this way. Check out the std lib multiprocessing library for examples.

I also like your idea of separating out the simulation runs from the application of constraints.

matthewdahmer commented 11 years ago

This sounds like a great idea! I'll look into how to do this.