I'm using the multiprocessing module (link below) in Python 2.7.3 to simulate identical chemical reaction systems in parallel. But I need these processes to talk to each other for passing and receiving the value of a state variable needed for their individual simulation in real time. So far I've been trying unsuccessfully to do this through pipes (also link below). Does anybody know a better way? any user-defined function? or at least a not-so-techie tutorial? Thanks!

http://pymotw.com/2/multiprocessing/basics.html

http://pymotw.com/2/pipes/index.html#module-pipes

More Eder Zavala's questions See All
Similar questions and discussions