<meta http-equiv="Content-Type" content="text/html; charset=utf-8"><div dir="ltr"><div><div><div><div><div><div><div><div><div><div>Dear users,<br><br><br></div>     This there a simple way to store multiple values at each step using parallel_objects? I'm doing:<br><br>########################################################<br></div><div>yt.enable_parallelism()<br>num_procs = 4<br></div><div>plot = glob.glob(./plot*)<br></div>my_storage = {}<br><br></div>for sto, p in yt.parallel_objects(plots, num_procs, my_storage):<br><br></div>  sto.result_id = 'energy' + p<br></div>  sto.resutl     = dd["total_energy"]<br><br></div>  sto.result_id = 'Px' + p<br></div>  sto.result     = dd["total_mom_x"]<br><br>######################################################<br><br></div>which is just overwriting my energy with the momentum. I also tried to just set to different dictionaries without passing it to yt.parallel_objects as storage, but of course each proc as only a local copy then.<br><br></div>Cordially,<br></div><div><br></div>Josh<br></div>