Workshop 2008, June 16th-20th

The 2nd Annual CompuCell3D workshop welcomes all particpants. We will post all presentation slides, videos, and exercises as the workshop progresses. Please feel free to contact us if you have additional questions and/or comments.

Presentation Slides

Excercise Files


  • All Bacterium Macrophage PIFs and XMLs Download
  • Python Exercises Download
  • Output to a file Download
    • Just the syntax:
    self.f = open('workfile', 'w')
    self.f.write("CELL ID= %s CELL TYPE= %s volume= %s\n"%(cell.id,cell.type,cell.volume))
    self.f.close()
    • Note: 'w' writes to a file 'a' or 'a+' appends to a file