Advertisement
Guest User

Untitled

a guest
Nov 30th, 2015
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.45 KB | None | 0 0
  1. 424 # For each variable, plot all maps in parallel:
  2. 425 for t in range(wrf.nt):
  3. 426 processList.append(Process(target=createFigure, \
  4. 427 args=(olga, dom, wrf, basem, var, t, fig_width_in, fig_height_in, olga.fig_dpi, ax_left, ax_bot, ax_width, ax_height,)))
  5. 428 processList[-1].start()
  6. 429 # Join all processes:
  7. 430 for process in processList:
  8. 431 process.join()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement