Hi Elizabeth,<br><br>I'm not sure this is a part of your confusion, but slice in this context is a Python native datatype taking a subset of an array.  To see what's going on, you can do something like this:<br><br>
import numpy as na<br>q = na.arange(10)<br>sl_left = slice(None, -2, None)<br>sl_right = slice(1, -1, None)<br>print q[sl_left]<br>print q[sl_right]<br><br>The differences in sl_right for the two hydro methods is correcting for cell/face-centered issue.<br>
<br>Britton<br><br><div class="gmail_quote">On Fri, Aug 5, 2011 at 9:52 AM, Elizabeth Tasker <span dir="ltr"><<a href="mailto:taskere@mcmaster.ca">taskere@mcmaster.ca</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex;">
Hi,<br>
<br>
Simple question, I think. In the definition of divV:<br>
<br>
<a href="http://yt.enzotools.org/doc/reference/field_list.html#divv" target="_blank">http://yt.enzotools.org/doc/<u></u>reference/field_list.html#divv</a><br>
<br>
How is the call for slice working:<br>
<br>
sl_left = slice(None,-2,None)<br>
sl_right = slice(2,None,None)<br>
<br>
<br>
and for Zeus:<br>
<br>
sl_left = slice(None,-2,None)<br>
sl_right = slice(1,-1,None)<br>
<br>
<br>
The documentation says the arguments should be axis & co-ordinate and then some options. <br>
<br>
I have failed to work out the syntax based on what I know the result must be!<br>
<br>
Thank you~<br>
<br>
Elizabeth<br>
______________________________<u></u>_________________<br>
yt-users mailing list<br>
<a href="mailto:yt-users@lists.spacepope.org" target="_blank">yt-users@lists.spacepope.org</a><br>
<a href="http://lists.spacepope.org/listinfo.cgi/yt-users-spacepope.org" target="_blank">http://lists.spacepope.org/<u></u>listinfo.cgi/yt-users-<u></u>spacepope.org</a><br>
</blockquote></div><br>