Hi Matt,<br><br><div class="gmail_quote"><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;"><div class="im">><br>
> After using the debugger as you suggested and looking more closely it seems<br>
> that LE is still an empty list because self.bricks = None even after a call<br>
> to self.partition_grids().  The latter is not working properly because<br>
> self._brick_collection.source._grids is an empty ndarray.  For example, I<br>
> get the following DEBUG message before the fatal error:<br>
><br>
> yt         DEBUG      2010-12-30 16:40:49,932 Preloading ['Density'] from 0<br>
> grids<br>
><br>
> I now need to track down why _grids is not being filled appropriately; all<br>
> the other grid-type-lists I have found are properly filled.<br>
<br>
</div>My guess is actually the width argument -- you're setting it to 1.0,<br>
and the center to 0.5, 0.5, 0.5.  Can you try with:<br>
<br>
W = pf['unitary']<br>
c = 0.5*(pf.domain_right_edge + pf.domain_left_edge)<br>
<br>
which should grab all the bricks?<br></blockquote><div><br>Ok, that makes a bit more sense - I always thought the width and center values were relative coordinates.  Fixing c to be the physical center of the domain worked, but I had to modify W to be the physical width: <br>
<br>    W = pf.domain_right_edge - pf.domain_left_edge <br><br>to grab the bricks.  As far as I can tell with all the other frontends, <br><br>    pf['unitary'] = (1.0 / (pf.domain_right_edge - pf.domain_left_edge)).max(),<br>
<br>which is a a pretty small number.  With these fixes I'm at least getting a volume rendered image, but I'm not sure exactly what it is - it looks strange, but I'll play with the transfer functions and such to see if I can quantify what I mean by "strange."<br>
</div></div><br>Chris<br>